[
  {
    "path": ".gitattributes",
    "content": "*.ai binary\n*.eps binary\n"
  },
  {
    "path": ".github/workflows/build-app.yml",
    "content": "on:\n  - push\n\njobs:\n  petclinic-graphiql:\n    runs-on: ubuntu-latest\n    defaults:\n      run:\n        working-directory: ./petclinic-graphiql\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Install Node.js\n        uses: actions/setup-node@v3\n        with:\n          node-version: 18\n\n      - uses: pnpm/action-setup@v2.0.1\n        name: Install pnpm\n        id: pnpm-install\n        with:\n          version: 8\n          run_install: false\n\n      - name: Install dependencies\n        run: pnpm install\n      - name: Build application\n        run: pnpm build\n      - name: Archive artifacts\n        uses: actions/upload-artifact@v3\n        with:\n          name: graphiql-dist\n          path: ./petclinic-graphiql/dist/**\n          retention-days: 1\n\n  backend:\n    runs-on: ubuntu-latest\n    needs: petclinic-graphiql\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n      - name: Install Java 21\n        uses: actions/setup-java@v3\n        with:\n          java-version: \"21\"\n          distribution: \"temurin\"\n          cache: maven\n      - name: Clear embedded graphiql\n        run: rm -rf backend/src/main/resources/ui/graphiql\n      - name: Download graphiql\n        uses: actions/download-artifact@v3\n        with:\n          name: graphiql-dist\n          path: backend/src/main/resources/ui/graphiql\n      - name: show graphiql artifact\n        run: ls -lR backend/src/main/resources/ui/\n      - name: Build with maven\n        run: ./mvnw -pl backend spring-boot:build-image -Dspring-boot.build-image.imageName=spring-petclinic/petclinic-graphql-backend:0.0.1\n      - name: Export docker image\n        run:  docker save spring-petclinic/petclinic-graphql-backend:0.0.1|gzip>petclinic-graphql-backend.tar.gz\n      - name: Archive artifacts\n        uses: actions/upload-artifact@v3\n        with:\n          name: petclinic-backend-docker\n          path: petclinic-graphql-backend.tar.gz\n          retention-days: 1\n\n  frontend:\n    runs-on: ubuntu-latest\n    defaults:\n      run:\n        working-directory: ./frontend\n\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v3\n\n      - name: Install Node.js\n        uses: actions/setup-node@v3\n        with:\n          node-version: 18\n\n      - uses: pnpm/action-setup@v2.0.1\n        name: Install pnpm\n        id: pnpm-install\n        with:\n          version: 8\n          run_install: false\n\n      - name: Install dependencies\n        run: pnpm install\n      - name: Code checks\n        run: pnpm run check\n      - name: Build application\n        run: pnpm build\n      - name: Build frontend docker image\n        run: docker build . --tag spring-petclinic/petclinic-graphql-frontend:0.0.1\n      - name: Export frontend docker image\n        run:  docker save spring-petclinic/petclinic-graphql-frontend:0.0.1|gzip>../petclinic-graphql-frontend.tar.gz\n      - name: LS\n        run: ls -lR ..\n      - name: Archive artifacts\n        uses: actions/upload-artifact@v3\n        with:\n          name: petclinic-frontend-docker\n          path: petclinic-graphql-frontend.tar.gz\n          retention-days: 1\n\n  end-to-end-test:\n    timeout-minutes: 60\n    runs-on: ubuntu-latest\n    needs: [petclinic-graphiql,backend,frontend]\n    steps:\n      - name: setup playwright\n        uses: actions/checkout@v3\n      - uses: actions/setup-node@v3\n        with:\n          node-version: 18\n      - name: Download backend artifacts\n        uses: actions/download-artifact@v3\n        with:\n          name: petclinic-backend-docker\n          path: petclinic-backend-docker\n      - name: Download frontend docker image\n        uses: actions/download-artifact@v3\n        with:\n          name: petclinic-frontend-docker\n          path: petclinic-frontend-docker\n      - name: LS\n        run: ls -lR\n      - name: Import backend Docker image\n        run: gunzip -c petclinic-backend-docker/petclinic-graphql-backend.tar.gz|docker load\n      - name: Import frontend Docker image\n        run: gunzip -c petclinic-frontend-docker/petclinic-graphql-frontend.tar.gz|docker load\n      - name: run docker compose\n        run: docker-compose -f docker-compose-petclinic.yml up -d\n      - uses: pnpm/action-setup@v2.0.1\n        name: Install pnpm\n        id: pnpm-install\n        with:\n          version: 8\n          run_install: false\n      - name: Install dependencies\n        working-directory: ./e2e-tests\n        run: pnpm install\n      - name: Install Playwright Browsers\n        working-directory: ./e2e-tests\n        run: pnpm exec playwright install --with-deps\n      - name: wait for backend on port 3090\n        uses: iFaxity/wait-on-action@v1.1.0\n        with:\n          resource: http-get://localhost:3090\n      - name: wait for frontend on port 3091\n        uses: iFaxity/wait-on-action@v1.1.0\n        with:\n          resource: http-get://localhost:3091\n      - name: Run Playwright tests\n        working-directory: ./e2e-tests\n        run: pnpm test:docker-compose\n      - name: Test Report\n        uses: dorny/test-reporter@v1\n        if: success() || failure()    # run this step even if previous step failed\n        with:\n         name: PlayWright Test            # Name of the check run which will be created\n         path: e2e-tests/test-results.xml    # Path to test results\n         reporter: java-junit        # Format of test results\n      - uses: actions/upload-artifact@v3\n        if: always()\n        with:\n          name: playwright-report\n          path: ./e2e-tests/playwright-report/\n          retention-days: 2\n"
  },
  {
    "path": ".gitignore",
    "content": "target/*\n.settings/*\n.classpath\n.project\n.idea\n*.iml\n/target\n*/target/\n\ngenerated/\n\n# Easier branch switching\nspringboot-petclinic-client/\nspringboot-petclinic-server/\n\nnode_modules/\nnpm-debug.log\ndist/\n\nfrontend/.eslintcache\n"
  },
  {
    "path": ".gitpod.Dockerfile",
    "content": "FROM gitpod/workspace-full\n\nUSER gitpod\n\nRUN bash -c \". /home/gitpod/.sdkman/bin/sdkman-init.sh && \\\n sdk install java 21-tem && \\\n sdk default java 21-tem\"\n\n# Install custom tools, runtime, etc. using apt-get\n# For example, the command below would install \"bastet\" - a command line tetris clone:\n#\n# RUN sudo apt-get -q update && \\\n#     sudo apt-get install -yq bastet && \\\n#     sudo rm -rf /var/lib/apt/lists/*\n#\n# More information: https://www.gitpod.io/docs/config-docker/\n"
  },
  {
    "path": ".gitpod.yml",
    "content": "image:\n  file: .gitpod.Dockerfile\ntasks:\n  - name: Build\n    init: |\n      ./mvnw package -Dmaven.test.skip=true -pl backend\n      gp sync-done build\n  - name: \"Run Petclinic Backend\"\n    init: |\n      gp sync-await build\n    command: |\n      export SPRING_DOCKER_COMPOSE_FILE=/workspace/spring-petclinic-graphql/docker-compose.yml\n      ./mvnw spring-boot:run -pl backend\n  - name: \"Frontend\"\n    init: |\n      cd frontend\n      corepack enable\n      pnpm install\n      pnpm build\n    command: |\n      gp ports await 9977\n      cd $GITPOD_REPO_ROOT/frontend\n      pnpm dev\nports:\n  - port: 9977\n    onOpen: open-browser\n    visibility: public\n  - port: 3080\n    onOpen: open-browser\n    visibility: public\nvscode:\n  extensions:\n    - redhat.java\n    - vscjava.vscode-java-debug\n    - vscjava.vscode-java-test\n    - pivotal.vscode-spring-boot\n    - graphql.vscode-graphql\njetbrains:\n  intellij:\n    plugins:\n      - com.intellij.lang.jsgraphql\n    prebuilds:\n      version: both\n"
  },
  {
    "path": ".mvn/wrapper/MavenWrapperDownloader.java",
    "content": "/*\n * Copyright 2007-present the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nimport java.net.*;\nimport java.io.*;\nimport java.nio.channels.*;\nimport java.util.Properties;\n\npublic class MavenWrapperDownloader {\n\n    private static final String WRAPPER_VERSION = \"0.5.6\";\n    /**\n     * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.\n     */\n    private static final String DEFAULT_DOWNLOAD_URL = \"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/\"\n        + WRAPPER_VERSION + \"/maven-wrapper-\" + WRAPPER_VERSION + \".jar\";\n\n    /**\n     * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to\n     * use instead of the default one.\n     */\n    private static final String MAVEN_WRAPPER_PROPERTIES_PATH =\n            \".mvn/wrapper/maven-wrapper.properties\";\n\n    /**\n     * Path where the maven-wrapper.jar will be saved to.\n     */\n    private static final String MAVEN_WRAPPER_JAR_PATH =\n            \".mvn/wrapper/maven-wrapper.jar\";\n\n    /**\n     * Name of the property which should be used to override the default download url for the wrapper.\n     */\n    private static final String PROPERTY_NAME_WRAPPER_URL = \"wrapperUrl\";\n\n    public static void main(String args[]) {\n        System.out.println(\"- Downloader started\");\n        File baseDirectory = new File(args[0]);\n        System.out.println(\"- Using base directory: \" + baseDirectory.getAbsolutePath());\n\n        // If the maven-wrapper.properties exists, read it and check if it contains a custom\n        // wrapperUrl parameter.\n        File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);\n        String url = DEFAULT_DOWNLOAD_URL;\n        if(mavenWrapperPropertyFile.exists()) {\n            FileInputStream mavenWrapperPropertyFileInputStream = null;\n            try {\n                mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);\n                Properties mavenWrapperProperties = new Properties();\n                mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);\n                url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);\n            } catch (IOException e) {\n                System.out.println(\"- ERROR loading '\" + MAVEN_WRAPPER_PROPERTIES_PATH + \"'\");\n            } finally {\n                try {\n                    if(mavenWrapperPropertyFileInputStream != null) {\n                        mavenWrapperPropertyFileInputStream.close();\n                    }\n                } catch (IOException e) {\n                    // Ignore ...\n                }\n            }\n        }\n        System.out.println(\"- Downloading from: \" + url);\n\n        File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);\n        if(!outputFile.getParentFile().exists()) {\n            if(!outputFile.getParentFile().mkdirs()) {\n                System.out.println(\n                        \"- ERROR creating output directory '\" + outputFile.getParentFile().getAbsolutePath() + \"'\");\n            }\n        }\n        System.out.println(\"- Downloading to: \" + outputFile.getAbsolutePath());\n        try {\n            downloadFileFromURL(url, outputFile);\n            System.out.println(\"Done\");\n            System.exit(0);\n        } catch (Throwable e) {\n            System.out.println(\"- Error downloading\");\n            e.printStackTrace();\n            System.exit(1);\n        }\n    }\n\n    private static void downloadFileFromURL(String urlString, File destination) throws Exception {\n        if (System.getenv(\"MVNW_USERNAME\") != null && System.getenv(\"MVNW_PASSWORD\") != null) {\n            String username = System.getenv(\"MVNW_USERNAME\");\n            char[] password = System.getenv(\"MVNW_PASSWORD\").toCharArray();\n            Authenticator.setDefault(new Authenticator() {\n                @Override\n                protected PasswordAuthentication getPasswordAuthentication() {\n                    return new PasswordAuthentication(username, password);\n                }\n            });\n        }\n        URL website = new URL(urlString);\n        ReadableByteChannel rbc;\n        rbc = Channels.newChannel(website.openStream());\n        FileOutputStream fos = new FileOutputStream(destination);\n        fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);\n        fos.close();\n        rbc.close();\n    }\n\n}\n"
  },
  {
    "path": ".mvn/wrapper/maven-wrapper.properties",
    "content": "distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.3/apache-maven-3.6.3-bin.zip\nwrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\n"
  },
  {
    "path": ".run/Frontend.run.xml",
    "content": "<component name=\"ProjectRunConfigurationManager\">\n  <configuration default=\"false\" name=\"Frontend\" type=\"js.build_tools.npm\">\n    <package-json value=\"$PROJECT_DIR$/frontend/package.json\" />\n    <command value=\"run\" />\n    <scripts>\n      <script value=\"dev\" />\n    </scripts>\n    <node-interpreter value=\"project\" />\n    <envs />\n    <method v=\"2\" />\n  </configuration>\n</component>"
  },
  {
    "path": "LICENCE",
    "content": "Copyright 2002-2020 the original author or authors.\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n     http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "backend/.editorconfig",
    "content": "# top-most EditorConfig file\nroot = true\n\n[*]\ncharset = utf-8\nend_of_line = lf\ninsert_final_newline = true\nindent_style = space\n\n[*.{java,xml}]\nindent_size = 4\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": "backend/.gitignore",
    "content": "target/"
  },
  {
    "path": "backend/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n    <parent>\n        <groupId>org.springframework.boot</groupId>\n        <artifactId>spring-boot-starter-parent</artifactId>\n        <version>3.2.0</version>\n        <relativePath/> <!-- lookup parent from repository -->\n    </parent>\n    <groupId>org.springframework.samples.petclinic-graphql</groupId>\n    <artifactId>backend</artifactId>\n    <version>0.0.1-SNAPSHOT</version>\n    <name>backend</name>\n    <description>Backend for Spring Petclinic GraphQL Example</description>\n    <properties>\n        <java.version>21</java.version>\n    </properties>\n    <dependencies>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-data-jpa</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-graphql</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.flywaydb</groupId>\n            <artifactId>flyway-core</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-security</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-validation</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-web</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-webflux</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-websocket</artifactId>\n        </dependency>\n\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-devtools</artifactId>\n            <scope>runtime</scope>\n            <optional>true</optional>\n        </dependency>\n        <dependency>\n            <groupId>org.postgresql</groupId>\n            <artifactId>postgresql</artifactId>\n            <scope>runtime</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-test</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-testcontainers</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.testcontainers</groupId>\n            <artifactId>postgresql</artifactId>\n            <version>1.17.3</version>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>io.projectreactor</groupId>\n            <artifactId>reactor-test</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.graphql</groupId>\n            <artifactId>spring-graphql-test</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.security</groupId>\n            <artifactId>spring-security-test</artifactId>\n            <scope>test</scope>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-starter-actuator</artifactId>\n        </dependency>\n        <dependency>\n            <groupId>org.springframework.boot</groupId>\n            <artifactId>spring-boot-docker-compose</artifactId>\n            <scope>runtime</scope>\n        </dependency>\n    </dependencies>\n\n    <build>\n        <plugins>\n            <plugin>\n                <groupId>org.springframework.boot</groupId>\n                <artifactId>spring-boot-maven-plugin</artifactId>\n            </plugin>\n        </plugins>\n    </build>\n</project>\n\n"
  },
  {
    "path": "backend/sample-queries.graphql",
    "content": "query {\n    owners {\n       owners {\n           id\n       }\n    }\n}\n\n\n\n\n\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/FakeDataSqlCreator.java",
    "content": "package org.springframework.samples.petclinic;\n\nimport org.springframework.samples.petclinic.model.*;\n\nimport java.io.BufferedReader;\nimport java.io.InputStreamReader;\nimport java.time.LocalDate;\nimport java.time.format.DateTimeFormatter;\nimport java.util.LinkedList;\nimport java.util.List;\nimport java.util.concurrent.atomic.AtomicInteger;\n\n/**\n * Imports testdata into the database on application startup\n *\n * @author Nils Hartmann\n */\npublic class FakeDataSqlCreator {\n\n\n    private CycleIterator<Integer> vets;\n    private CycleIterator<Integer> petTypes;\n    private CycleIterator<Integer> owners;\n    private CycleIterator<Integer> pets;\n\n    public static void main(String[] args) throws Exception {\n        new FakeDataSqlCreator().importAll();\n    }\n\n    private void importAll() throws Exception {\n        vets = new CycleIterator<Integer>(List.of(7,8,9,10));\n        petTypes = new CycleIterator<Integer>(List.of(1,2,3,4,5,6));\n        owners = new CycleIterator<Integer>(importOwners());\n        pets = new CycleIterator<Integer>(importPets());\n        importVisits();\n    }\n\n    private List<Integer> importPets() throws Exception {\n        return readCsv(\"pets.csv\", (index, parts) -> {\n            var id = index + 13;\n\n            var sql = System.out.printf(\"\"\"\nINSERT INTO pets VALUES (%s, '%s', '%s', %s, %s);\n                \"\"\",\n                id, parts[1], asLocalDate(parts[0]), petTypes.next(), owners.next()\n                );\n\n            return id;\n        });\n    }\n//\n    private void importVisits() throws Exception {\n        pets.reset();\n        vets.reset();\n        AtomicInteger ix = new AtomicInteger();\n        readCsv(\"visits.csv\", (index, parts) -> {\n            var id = index + 4;\n            Visit visit = new Visit();\n\n            System.out.printf(\"\"\"\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (%s, %s, %s, '%s', '%s');\n                \"\"\",\n                id, pets.next(), vets.next(), asLocalDate(parts[0]), parts[1]\n                );\n            return visit;\n        });\n    }\n\n    private List<Integer> importOwners() throws Exception {\n\n        return readCsv(\"owners.csv\", (lineNo, parts) -> {\n            var ix = lineNo + 10;\n\n            System.out.printf(\"\"\"\nINSERT INTO owners VALUES (%s, '%s', '%s', '%s', '%s', '%s');\n                \"\"\", lineNo+10,parts[0], parts[1], parts[2], parts[3], parts[4] );\n            return ix;\n        });\n    }\n\n    private static LocalDate asLocalDate(String date) throws Exception {\n        var format = DateTimeFormatter.ofPattern(\"yyyy-MM-dd\");\n        return LocalDate.parse(date, format);\n    }\n\n    static class CycleIterator<E> {\n        private int index = -1;\n        private final List<E> elements;\n\n        public CycleIterator(List<E> elements) {\n            this.elements = elements;\n        }\n\n        void reset() {\n            index = -1;\n        }\n\n        public E next() {\n            index++;\n            if (index >= elements.size()) {\n                index = 0;\n            }\n            return elements.get(index);\n        }\n    }\n\n    private <E> List<E> readCsv(String name, CsvLineConsumer<E> consumer) throws Exception {\n        final List<E> result = new LinkedList<>();\n        try (BufferedReader br = new BufferedReader(new InputStreamReader(getClass().getResourceAsStream(\"/testdata/\" + name)))) {\n            String line = null;\n            int index = 0;\n            while ((line = br.readLine()) != null) {\n                if (index == 0) {\n                    // ignore first line (header)\n                    index++;\n                    continue;\n                }\n                String[] parts = line.trim().split(\"\\\\,\");\n                E e = consumer.consume(index, parts);\n                result.add(e);\n                index++;\n            }\n        }\n        return result;\n    }\n\n    @FunctionalInterface\n    interface CsvLineConsumer<E> {\n        E consume(int lineNo, String[] parts) throws Exception;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/PetClinicApplication.java",
    "content": "package org.springframework.samples.petclinic;\n\nimport org.springframework.boot.SpringApplication;\nimport org.springframework.boot.autoconfigure.SpringBootApplication;\nimport org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter;\n\n@SpringBootApplication\npublic class PetClinicApplication {\n\n\tpublic static void main(String[] args) {\n\t\tSpringApplication.run(PetClinicApplication.class, args);\n\t}\n\n    /**\n     * Keeps the session open until the end of a request. Allows us to use\n     * lazy-loading with Hibernate.\n     */\n    @Bean\n    @ConditionalOnProperty(value=\"petclinic.open-session-in-view\", havingValue=\"true\", matchIfMissing = true)\n    public OpenEntityManagerInViewFilter openEntityManagerInViewFilter() {\n        return new OpenEntityManagerInViewFilter();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/auth/Role.java",
    "content": "package org.springframework.samples.petclinic.auth;\n\nimport org.springframework.security.core.GrantedAuthority;\n\nimport jakarta.persistence.*;\n\n/**\n * Taken from https://github.com/spring-petclinic/spring-petclinic-rest\n */\n@Entity\n@Table(name = \"roles\", uniqueConstraints = @UniqueConstraint(columnNames = {\"username\", \"role\"}))\npublic class Role implements GrantedAuthority {\n\n    @Id\n    @GeneratedValue(strategy = GenerationType.IDENTITY)\n    private Integer id;\n\n    public Integer getId() {\n        return id;\n    }\n\n    public void setId(Integer id) {\n        this.id = id;\n    }\n\n    public boolean isNew() {\n        return this.id == null;\n    }\n\n    @ManyToOne\n    @JoinColumn(name = \"username\")\n    private User user;\n\n    @Column(name = \"role\")\n    private String name;\n\n    public User getUser() {\n        return user;\n    }\n\n    public void setUser(User user) {\n        this.user = user;\n    }\n\n    public String getName() {\n        return name;\n    }\n\n    public void setName(String name) {\n        this.name = name;\n    }\n\n    @Override\n    public String getAuthority() {\n        return name;\n    }\n\n    public String toString() {\n        return \"Role, name='\" + this.name + \"'\";\n    }\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/auth/User.java",
    "content": "package org.springframework.samples.petclinic.auth;\n\nimport com.fasterxml.jackson.annotation.JsonIgnore;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.security.core.GrantedAuthority;\nimport org.springframework.security.core.userdetails.UserDetails;\n\nimport jakarta.persistence.*;\nimport java.util.Collection;\nimport java.util.HashSet;\nimport java.util.Set;\n\n/**\n * Based on User class from https://github.com/spring-petclinic/spring-petclinic-rest\n */\n@Entity\n@Table(name = \"users\")\npublic class User implements UserDetails {\n\n    private static final Logger log = LoggerFactory.getLogger( User.class );\n\n    @Id\n    @Column(name = \"username\")\n    private String username;\n\n    @Column(name = \"password\")\n    private String password;\n\n    @Column(name = \"enabled\")\n    private Boolean enabled;\n\n    @OneToMany(cascade = CascadeType.ALL, mappedBy = \"user\", fetch = FetchType.EAGER)\n    private Set<Role> roles;\n\n    @Column(name = \"fullname\")\n    private String fullname;\n\n    public String getUsername() {\n        return username;\n    }\n\n    public void setUsername(String username) {\n        this.username = username;\n    }\n\n    public String getPassword() {\n        return password;\n    }\n\n    public void setPassword(String password) {\n        this.password = password;\n    }\n\n    public Boolean getEnabled() {\n        return enabled;\n    }\n\n    public void setEnabled(Boolean enabled) {\n        this.enabled = enabled;\n    }\n\n    public Set<Role> getRoles() {\n        return roles;\n    }\n\n    public void setRoles(Set<Role> roles) {\n        this.roles = roles;\n    }\n\n    @JsonIgnore\n    public void addRole(String roleName) {\n        if (this.roles == null) {\n            this.roles = new HashSet<>();\n        }\n        Role role = new Role();\n        role.setUser(this);\n        role.setName(roleName);\n        this.roles.add(role);\n    }\n\n    public String getFullname() {\n        return fullname;\n    }\n\n    public void setFullname(String fullname) {\n        this.fullname = fullname;\n    }\n\n    @Override\n    public Collection<? extends GrantedAuthority> getAuthorities() {\n        return getRoles();\n    }\n\n    @Override\n    public boolean isAccountNonExpired() {\n        return enabled;\n    }\n\n    @Override\n    public boolean isAccountNonLocked() {\n        return enabled;\n    }\n\n    @Override\n    public boolean isCredentialsNonExpired() {\n        return enabled;\n    }\n\n    @Override\n    public boolean isEnabled() {\n        return enabled;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/auth/UserRepository.java",
    "content": "package org.springframework.samples.petclinic.auth;\n\nimport org.springframework.data.repository.Repository;\n\nimport java.util.Optional;\n\npublic interface UserRepository extends Repository<User, String>  {\n    Optional<User> findByUsername(String username);\n    void save(User user);\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AbstractOwnerInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AbstractOwnerInput {\n    private String firstName;\n    private String lastName;\n    private String address;\n    private String city;\n    private String telephone;\n\n    public String getFirstName() {\n        return firstName;\n    }\n\n    public void setFirstName(String firstName) {\n        this.firstName = firstName;\n    }\n\n    public String getLastName() {\n        return lastName;\n    }\n\n    public void setLastName(String lastName) {\n        this.lastName = lastName;\n    }\n\n    public String getAddress() {\n        return address;\n    }\n\n    public void setAddress(String address) {\n        this.address = address;\n    }\n\n    public String getCity() {\n        return city;\n    }\n\n    public void setCity(String city) {\n        this.city = city;\n    }\n\n    public String getTelephone() {\n        return telephone;\n    }\n\n    public void setTelephone(String telephone) {\n        this.telephone = telephone;\n    }\n\n    @Override\n    public String toString() {\n        return \"AbstractOwnerInput{\" +\n            \"firstName='\" + firstName + '\\'' +\n            \", lastName='\" + lastName + '\\'' +\n            \", address='\" + address + '\\'' +\n            \", city='\" + city + '\\'' +\n            \", telephone='\" + telephone + '\\'' +\n            '}';\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AbstractOwnerPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Owner;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AbstractOwnerPayload {\n\n    private final Owner owner;\n\n    public Owner getOwner() {\n        return owner;\n    }\n\n    public AbstractOwnerPayload(Owner owner) {\n        this.owner = owner;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AbstractPetInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport java.time.LocalDate;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AbstractPetInput {\n\n    private Integer typeId;\n    private String name;\n    private LocalDate birthDate;\n\n    public Integer getTypeId() {\n        return typeId;\n    }\n\n    public void setTypeId(Integer typeId) {\n        this.typeId = typeId;\n    }\n\n    public LocalDate getBirthDate() {\n        return birthDate;\n    }\n\n    public void setBirthDate(LocalDate birthDate) {\n        this.birthDate = birthDate;\n    }\n\n    public String getName() {\n        return name;\n    }\n\n    public void setName(String name) {\n        this.name = name;\n    }\n\n    @Override\n    public String toString() {\n        return \"AbstractPetInput{\" +\n            \"typeId=\" + typeId +\n            \", name='\" + name + '\\'' +\n            \", birthDate=\" + birthDate +\n            '}';\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AbstractPetPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Pet;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AbstractPetPayload {\n\n    private final Pet pet;\n\n    public AbstractPetPayload(Pet pet) {\n        this.pet = pet;\n    }\n\n    public Pet getPet() {\n        return pet;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddOwnerInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AddOwnerInput extends AbstractOwnerInput {\n\n    @Override\n    public String toString() {\n        return \"AddOwnerInput{} \" + super.toString();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddOwnerPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Owner;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AddOwnerPayload extends AbstractOwnerPayload {\n\n    public AddOwnerPayload(Owner owner) {\n        super(owner);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddPetInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AddPetInput extends AbstractPetInput {\n\n    private Integer ownerId;\n\n    public Integer getOwnerId() {\n        return ownerId;\n    }\n\n    public void setOwnerId(Integer ownerId) {\n        this.ownerId = ownerId;\n    }\n\n    @Override\n    public String toString() {\n        return \"AddPetInput{\" +\n            \"ownerId=\" + ownerId +\n            \"} \" + super.toString();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddPetPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Pet;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record AddPetPayload (Pet pet) {}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddSpecialtyPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Specialty;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record AddSpecialtyPayload(Specialty specialty) {\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVetErrorPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\npublic record AddVetErrorPayload(String error) implements AddVetPayload {\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVetInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport java.util.List;\nimport java.util.Map;\n\n/**\n * @author Nils Hartmann\n */\npublic class AddVetInput {\n\n    private String firstName;\n    private String lastName;\n    private List<Integer> specialtyIds;\n\n    public static AddVetInput fromArgument(Map<String, Object> argument) {\n\n        AddVetInput addVetInput = new AddVetInput();\n        addVetInput.setFirstName((String) argument.get(\"firstName\"));\n        addVetInput.setLastName((String) argument.get(\"lastName\"));\n        addVetInput.setSpecialtyIds((List<Integer>) argument.get(\"specialtyIds\"));\n\n        return addVetInput;\n\n    }\n\n    public String getFirstName() {\n        return firstName;\n    }\n\n    public void setFirstName(String firstName) {\n        this.firstName = firstName;\n    }\n\n    public String getLastName() {\n        return lastName;\n    }\n\n    public void setLastName(String lastName) {\n        this.lastName = lastName;\n    }\n\n    public List<Integer> getSpecialtyIds() {\n        return specialtyIds;\n    }\n\n    public void setSpecialtyIds(List<Integer> specialtyIds) {\n        this.specialtyIds = specialtyIds;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVetPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann\n */\npublic interface AddVetPayload {\n\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVetSuccessPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Vet;\n\n/**\n * @author Nils Hartmann\n */\npublic record AddVetSuccessPayload(Vet vet) implements AddVetPayload {\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVisitInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport java.time.LocalDate;\nimport java.util.Map;\nimport java.util.Optional;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class AddVisitInput {\n    private int petId;\n    private Optional<Integer> vetId = Optional.empty();\n    private LocalDate date;\n    private String description;\n\n    public int getPetId() {\n        return petId;\n    }\n\n    public void setPetId(int petId) {\n        this.petId = petId;\n    }\n\n    public Optional<Integer> getVetId() {\n        return vetId;\n    }\n\n    public void setVetId(Optional<Integer> vetId) {\n        this.vetId = vetId;\n    }\n\n    public void setDate(LocalDate date) {\n        this.date = date;\n    }\n\n    public LocalDate getDate() {\n        return date;\n    }\n\n    public String getDescription() {\n        return description;\n    }\n\n    public void setDescription(String description) {\n        this.description = description;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AddVisitPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Visit;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record AddVisitPayload(Visit visit) {\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/AuthController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.samples.petclinic.auth.User;\nimport org.springframework.samples.petclinic.auth.UserRepository;\nimport org.springframework.security.access.prepost.PreAuthorize;\nimport org.springframework.security.core.annotation.AuthenticationPrincipal;\nimport org.springframework.security.oauth2.jwt.Jwt;\nimport org.springframework.stereotype.Controller;\n\nimport java.security.Principal;\n\n/**\n * EXAMPLE:\n * --------------------------\n *\n * - Access current principal in GraphQL handler functions by using the AuthenticationPrincipal annotation\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class AuthController {\n    private static final Logger log = LoggerFactory.getLogger(AuthController.class);\n\n    private final UserRepository userRepository;\n\n    public AuthController(UserRepository userRepository) {\n        this.userRepository = userRepository;\n    }\n\n    @QueryMapping\n    public User me(@AuthenticationPrincipal(errorOnInvalidType = true) Jwt jwt) {\n        String username = jwt.getSubject();\n        log.info(\"JWT subject (username): '{}'\", username);\n        return userRepository.findByUsername(username).orElseThrow();\n    }\n\n    @QueryMapping\n    public String ping() { return \"pong\"; }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/OwnerController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport graphql.schema.DataFetchingEnvironment;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.data.domain.*;\nimport org.springframework.graphql.data.method.annotation.Argument;\nimport org.springframework.graphql.data.method.annotation.MutationMapping;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.graphql.data.query.ScrollSubrange;\nimport org.springframework.samples.petclinic.model.Owner;\nimport org.springframework.samples.petclinic.model.OwnerFilter;\nimport org.springframework.samples.petclinic.model.OwnerOrder;\nimport org.springframework.samples.petclinic.model.OwnerService;\nimport org.springframework.samples.petclinic.repository.OwnerRepository;\nimport org.springframework.stereotype.Controller;\n\nimport java.util.List;\nimport java.util.Optional;\n\nimport static org.springframework.samples.petclinic.model.OwnerFilter.NO_FILTER;\n\n/**\n * GraphQL handler functions for Ower type, Query and Mutation\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class OwnerController {\n\n    private static final Logger log = LoggerFactory.getLogger(OwnerController.class);\n\n    private final OwnerService ownerService;\n    private final OwnerRepository ownerRepository;\n\n    public OwnerController(OwnerService ownerService, OwnerRepository ownerRepository) {\n        this.ownerService = ownerService;\n        this.ownerRepository = ownerRepository;\n    }\n\n    @MutationMapping\n    public AddOwnerPayload addOwner(@Argument AddOwnerInput input) {\n        Owner owner = ownerService.addOwner(\n            input.getFirstName(),\n            input.getLastName(),\n            input.getTelephone(),\n            input.getAddress(),\n            input.getCity()\n        );\n\n        return new AddOwnerPayload(owner);\n    }\n\n    @MutationMapping\n    public UpdateOwnerPayload updateOwner(@Argument UpdateOwnerInput input) {\n        Owner owner = ownerService.updateOwner(\n            input.getOwnerId(),\n            input.getFirstName(),\n            input.getLastName(),\n            input.getTelephone(),\n            input.getAddress(),\n            input.getCity()\n        );\n        return new UpdateOwnerPayload(owner);\n    }\n\n    @QueryMapping\n    public Window<Owner> owners(ScrollSubrange subrange,\n                                @Argument Optional<OwnerFilter> filter,\n                                @Argument Optional<List<OwnerOrder>> order) {\n        // Get position represented by this subrange or (if none yet)\n        //   create a default Offset-based ScrollPosition\n        var position = subrange.position().orElse(ScrollPosition.offset());\n\n        // If user does not specify a count (with first or last), throw Exception\n        //  note that it is currently not possible to express a union type-like thing\n        //  (first OR last must be present) as input parameters\n        var limit = subrange.count().orElseThrow(() -> new IllegalArgumentException(\"Please specify either 'first' or 'last'\"));\n\n        var orders = order.map(l -> l.stream().map(OwnerOrder::toSortOrder).toList()).orElse(List.of());\n        var sort = Sort.by(orders.isEmpty() ? OwnerOrder.defaultOrder() : orders);\n\n        // Note that the returned Window is automatically mapped\n        //  to the according GraphQL types by Spring for GraphQL\n        Window<Owner> owners = this.ownerRepository.findBy(filter.orElse(NO_FILTER), query -> query.\n            limit(limit)\n            .sortBy(sort)\n            .scroll(position)\n        );\n\n        return owners;\n    }\n\n    @QueryMapping\n    public Optional<Owner> owner(DataFetchingEnvironment env) {\n        int id = env.getArgument(\"id\");\n        return ownerRepository.findById(id);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/PageInfo.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.data.domain.Page;\nimport org.springframework.samples.petclinic.model.Owner;\n\npublic class PageInfo {\n    private final Page<Owner> result;\n\n    public PageInfo(Page<Owner> result) {\n        this.result = result;\n    }\n\n    public int getPageNumber() {\n        return result.getNumber();\n    }\n\n    public int getTotalPages() {\n        return result.getTotalPages();\n    }\n\n    public long getTotalCount() {\n        return result.getTotalElements();\n    }\n\n    public boolean getHasNext() {\n        return result.hasNext();\n    }\n\n    public boolean getHasPrev() {\n        return result.hasPrevious();\n    }\n\n    public Integer getNextPage() {\n        if (result.hasNext()) {\n            return result.getNumber() + 1;\n        }\n\n        return null;\n    }\n\n    public Integer getPrevPage() {\n        if (result.hasPrevious()) {\n            return result.getNumber() - 1;\n        }\n\n        return null;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/PetController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.graphql.data.method.annotation.Argument;\nimport org.springframework.graphql.data.method.annotation.MutationMapping;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.graphql.data.method.annotation.SchemaMapping;\nimport org.springframework.samples.petclinic.model.Pet;\nimport org.springframework.samples.petclinic.model.PetService;\nimport org.springframework.samples.petclinic.repository.PetRepository;\nimport org.springframework.samples.petclinic.repository.VisitRepository;\nimport org.springframework.stereotype.Controller;\n\nimport java.util.Optional;\n\n/**\n * GraphQL handler functions for Pet GraphQL type, Query and Mutation\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class PetController {\n\n    private final PetService petService;\n    private final PetRepository petRepository;\n    private final VisitRepository visitRepository;\n\n    public PetController(PetService petService, PetRepository petRepository, VisitRepository visitRepository) {\n        this.petService = petService;\n        this.petRepository = petRepository;\n        this.visitRepository = visitRepository;\n    }\n\n    @QueryMapping\n    public Iterable<Pet> pets() {\n        return petRepository.findAll();\n    }\n\n    @QueryMapping\n    public Optional<Pet> pet(@Argument Integer id) {\n        return petRepository.findById(id);\n    }\n\n    @SchemaMapping\n    public VisitConnection visits(Pet pet) {\n        var visits = visitRepository.findByPetIdOrderById(pet.getId());\n        return new VisitConnection(visits);\n    }\n\n    @MutationMapping\n    public AddPetPayload addPet(@Argument AddPetInput input) {\n        Pet pet = petService.addPet(\n            input.getOwnerId(),\n            input.getTypeId(),\n            input.getName(),\n            input.getBirthDate()\n        );\n\n        return new AddPetPayload(pet);\n    }\n\n    @MutationMapping\n    public UpdatePetPayload updatePet(@Argument UpdatePetInput input) {\n        Pet pet = petService.updatePet(\n            input.getPetId(),\n            Optional.ofNullable(input.getTypeId()),\n            input.getName(),\n            input.getBirthDate()\n        );\n\n        return new UpdatePetPayload(pet);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/PetTypeController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport graphql.schema.idl.RuntimeWiring;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.graphql.execution.RuntimeWiringConfigurer;\nimport org.springframework.samples.petclinic.model.PetType;\nimport org.springframework.samples.petclinic.repository.PetTypeRepository;\nimport org.springframework.stereotype.Component;\nimport org.springframework.stereotype.Controller;\n\nimport java.util.List;\n\n/**\n * Resolver for Pet Queries\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class PetTypeController {\n    private final PetTypeRepository petTypeRepository;\n\n    public PetTypeController(PetTypeRepository petTypeRepository) {\n        this.petTypeRepository = petTypeRepository;\n    }\n\n    @QueryMapping\n    public Iterable<PetType> pettypes() {\n        return petTypeRepository.findAll();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/RemoveSpecialtyPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Specialty;\n\nimport java.util.List;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record RemoveSpecialtyPayload(List<Specialty> specialties) {\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/SpecialtyController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport graphql.schema.DataFetchingEnvironment;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.graphql.data.method.annotation.Argument;\nimport org.springframework.graphql.data.method.annotation.MutationMapping;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.samples.petclinic.model.Specialty;\nimport org.springframework.samples.petclinic.model.SpecialtyService;\nimport org.springframework.samples.petclinic.repository.SpecialtyRepository;\nimport org.springframework.stereotype.Controller;\n\nimport java.util.List;\nimport java.util.Map;\n\n/**\n * GraphQL handler functions for \"Specialty\" GraphQL type, Query and Mutation\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class SpecialtyController {\n\n    private static final Logger log = LoggerFactory.getLogger(SpecialtyController.class);\n\n    private final SpecialtyService specialtyService;\n    private final SpecialtyRepository specialtyRepository;\n\n    public SpecialtyController(SpecialtyService specialtyService, SpecialtyRepository specialtyRepository) {\n        this.specialtyService = specialtyService;\n        this.specialtyRepository = specialtyRepository;\n    }\n\n    @QueryMapping\n    public List<Specialty> specialties() {\n      return  List.copyOf(specialtyRepository.findAll());\n    }\n\n    /**\n     * EXAMPLE:\n     * --------------------------\n     *\n     * - Annotated Controllers have access to DataFetchingEnvironment\n     *  - Receive arguments using DataFetchingEnvironment\n     */\n    @MutationMapping\n    public AddSpecialtyPayload addSpecialty(DataFetchingEnvironment env) {\n        Map<String, String> input = env.getArgument(\"input\");\n\n        Specialty specialty = specialtyService.addSpecialty(input.get(\"name\"));\n\n        return new AddSpecialtyPayload(specialty);\n    }\n\n    @MutationMapping\n    public UpdateSpecialtyPayload updateSpecialty(@Argument UpdateSpecialtyInput input) {\n        Specialty specialty = specialtyService.updateSpecialty(\n            input.getSpecialtyId(),\n            input.getName()\n        );\n\n        return new UpdateSpecialtyPayload(specialty);\n    }\n\n    @MutationMapping\n    public RemoveSpecialtyPayload removeSpecialty(DataFetchingEnvironment env) {\n        Map<String, Integer> input = env.getArgument(\"input\");\n\n        specialtyService.deleteSpecialty(input.get(\"specialtyId\"));\n\n        return new RemoveSpecialtyPayload(List.copyOf(specialtyRepository.findAll()));\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdateOwnerInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class UpdateOwnerInput extends AbstractOwnerInput {\n\n    private int ownerId;\n\n    public int getOwnerId() {\n        return ownerId;\n    }\n\n    public void setOwnerId(int ownerId) {\n        this.ownerId = ownerId;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdateOwnerPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Owner;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class UpdateOwnerPayload extends AbstractOwnerPayload {\n    public UpdateOwnerPayload(Owner owner) {\n        super(owner);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdatePetInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class UpdatePetInput extends AbstractPetInput {\n\n    private int petId;\n\n    public int getPetId() {\n        return petId;\n    }\n\n    public void setPetId(int petId) {\n        this.petId = petId;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdatePetPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Pet;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record UpdatePetPayload (Pet pet) {}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdateSpecialtyInput.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport jakarta.validation.constraints.NotNull;\n\npublic class UpdateSpecialtyInput {\n    @NotNull\n    private Integer specialtyId;\n    @NotNull\n    private String name;\n\n    public void setSpecialtyId(Integer specialtyId) {\n        this.specialtyId = specialtyId;\n    }\n\n    public void setName(String name) {\n        this.name = name;\n    }\n\n    public Integer getSpecialtyId() {\n        return specialtyId;\n    }\n\n    public String getName() {\n        return name;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/UpdateSpecialtyPayload.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Specialty;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic record UpdateSpecialtyPayload(Specialty specialty) {\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/VetController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.data.domain.Limit;\nimport org.springframework.data.domain.ScrollPosition;\nimport org.springframework.data.domain.Sort;\nimport org.springframework.data.domain.Window;\nimport org.springframework.graphql.data.method.annotation.Argument;\nimport org.springframework.graphql.data.method.annotation.MutationMapping;\nimport org.springframework.graphql.data.method.annotation.QueryMapping;\nimport org.springframework.graphql.data.method.annotation.SchemaMapping;\nimport org.springframework.graphql.data.query.ScrollSubrange;\nimport org.springframework.samples.petclinic.model.*;\nimport org.springframework.samples.petclinic.repository.VetRepository;\nimport org.springframework.samples.petclinic.repository.VisitRepository;\nimport org.springframework.stereotype.Controller;\n\nimport java.util.List;\nimport java.util.Optional;\n\nimport static org.springframework.samples.petclinic.model.OwnerFilter.NO_FILTER;\n\n/**\n * GraphQL handler functions for Vet GraphQL type, Query and Mutation\n * <p>\n * Note that the addVet mutation is secured in the domain layer, so that only\n * users with SCOPE_MANAGER are allowed to create new vets\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Controller\npublic class VetController {\n\n    private static final Logger log = LoggerFactory.getLogger(VetController.class);\n\n    private final VetService vetService;\n    private final VetRepository vetRepository;\n    private final VisitRepository visitRepository;\n\n    public VetController(VetService vetService, VetRepository vetRepository, VisitRepository visitRepository) {\n        this.vetService = vetService;\n        this.vetRepository = vetRepository;\n        this.visitRepository = visitRepository;\n    }\n\n    @QueryMapping\n    public Window<Vet> vets(ScrollSubrange subrange) {\n        var position = subrange.position().orElse(ScrollPosition.offset());\n        var sort = Sort.by(\"lastName\", \"firstName\");\n        var limit = subrange.count().isPresent() ? Limit.of(subrange.count().getAsInt()) : Limit.unlimited();\n\n        Window<Vet> vets = this.vetRepository.findBy(position, sort, limit);\n\n        return vets;\n    }\n\n    @QueryMapping\n    public Optional<Vet> vet(@Argument Integer id) {\n        return vetRepository.findById(id);\n    }\n\n    @SchemaMapping\n    public VisitConnection visits(Vet vet) {\n        List<Visit> visitList = visitRepository.findByVetId(vet.getId());\n        return new VisitConnection(visitList);\n    }\n\n    @MutationMapping\n    public AddVetPayload addVet(@Argument AddVetInput input) {\n        try {\n            Vet newVet = vetService.createVet(\n                input.getFirstName(),\n                input.getLastName(),\n                input.getSpecialtyIds());\n\n            return new AddVetSuccessPayload(newVet);\n        } catch (InvalidVetDataException ex) {\n            return new AddVetErrorPayload(ex.getLocalizedMessage());\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/VisitConnection.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.samples.petclinic.model.Visit;\n\nimport java.util.List;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class VisitConnection {\n\n    private final List<Visit> visits;\n\n    public VisitConnection(List<Visit> visits) {\n        this.visits = visits;\n    }\n\n    public int getTotalCount() {\n        return visits.size();\n    }\n\n    public List<Visit> getVisits() {\n        return visits;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/VisitController.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.graphql.data.method.annotation.Argument;\nimport org.springframework.graphql.data.method.annotation.MutationMapping;\nimport org.springframework.graphql.data.method.annotation.SchemaMapping;\nimport org.springframework.graphql.data.method.annotation.SubscriptionMapping;\nimport org.springframework.samples.petclinic.model.Vet;\nimport org.springframework.samples.petclinic.model.Visit;\nimport org.springframework.samples.petclinic.model.VisitService;\nimport org.springframework.samples.petclinic.repository.VetRepository;\nimport org.springframework.stereotype.Controller;\nimport reactor.core.publisher.Flux;\n\n/**\n * GraphQL handler functions for \"Vitis\" GraphQL type, Query, Mutation and Subscription\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n\n@Controller\npublic class VisitController {\n\n    private final VisitService visitService;\n    private final VisitPublisher visitPublisher;\n    private final VetRepository vetRepository;\n\n\n    public VisitController(VisitService visitService, VisitPublisher visitPublisher, VetRepository vetRepository) {\n        this.visitService = visitService;\n        this.visitPublisher = visitPublisher;\n        this.vetRepository = vetRepository;\n    }\n\n    @SchemaMapping\n    public Vet treatingVet(Visit visit) {\n        if (!visit.hasVetId()) {\n            return null;\n        }\n        return vetRepository.findById(visit.getVetId()).orElseThrow();\n    }\n\n    @MutationMapping\n    public AddVisitPayload addVisit(@Argument AddVisitInput input) {\n        Visit visit = visitService.addVisit(\n            input.getPetId(),\n            input.getDescription(),\n            input.getDate(),\n            input.getVetId()\n        );\n\n        return new AddVisitPayload(visit);\n    }\n\n    @SubscriptionMapping\n    public Flux<Visit> onNewVisit() {\n        return visitPublisher.getPublisher();\n    }\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/VisitPublisher.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.samples.petclinic.model.Visit;\nimport org.springframework.samples.petclinic.model.VisitCreatedEvent;\nimport org.springframework.samples.petclinic.repository.VisitRepository;\nimport org.springframework.stereotype.Component;\nimport org.springframework.transaction.annotation.Propagation;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.transaction.event.TransactionalEventListener;\nimport reactor.core.publisher.Flux;\nimport reactor.core.publisher.Sinks;\nimport reactor.util.concurrent.Queues;\n\n/**\n * \"Forwards\" VisitCreatedEvents that are fired by Spring Boot in our domain layer\n * to a reactive publisher that is used by the GraphQL layer to publish events\n * for our GraphQL Subscriptions\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n\n@Component\npublic class VisitPublisher {\n\n    private static final Logger logger = LoggerFactory.getLogger(VisitPublisher.class);\n\n    private final VisitRepository visitRepository;\n    private final Sinks.Many<Visit> sink;\n\n    public VisitPublisher(VisitRepository visitRepository) {\n        this.visitRepository = visitRepository;\n        this.sink = Sinks.many()\n            .multicast()\n            .onBackpressureBuffer(Queues.SMALL_BUFFER_SIZE, false);\n    }\n\n    @TransactionalEventListener\n    @Transactional(propagation = Propagation.REQUIRES_NEW)\n    public void onNewVisit(VisitCreatedEvent event) {\n\n        visitRepository.findById(event.getVisitId())\n            .ifPresent(visit -> {\n                this.sink.emitNext(visit, Sinks.EmitFailureHandler.FAIL_FAST);\n            });\n    }\n\n    public Flux<Visit> getPublisher() {\n        return this.sink.asFlux();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/runtime/DateCoercing.java",
    "content": "package org.springframework.samples.petclinic.graphql.runtime;\n\nimport graphql.language.StringValue;\nimport graphql.schema.Coercing;\n\nimport java.time.LocalDate;\nimport java.time.format.DateTimeFormatter;\n\nimport static java.lang.String.format;\n\n/**\n * Implements own date format (yyyy/MM/dd) for our own \"Date\" scalar type\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\npublic class DateCoercing implements Coercing<LocalDate, String> {\n    private static DateTimeFormatter createIsoDateFormat() {\n        return DateTimeFormatter.ofPattern(\"yyyy/MM/dd\");\n    }\n\n    @Override\n    public String serialize(Object input) {\n        if (input instanceof LocalDate) {\n            return createIsoDateFormat().format((LocalDate) input);\n        }\n        return null;\n    }\n\n    @Override\n    public LocalDate parseValue(Object input) {\n        if (input instanceof LocalDate) {\n            return (LocalDate) input;\n        } else if (input instanceof String) {\n            return fromString((String) input);\n        }\n        return null;\n    }\n\n    @Override\n    public LocalDate parseLiteral(Object input) {\n        if (input instanceof StringValue) {\n            String value = ((StringValue) input).getValue();\n            return fromString(value);\n        }\n        throw new UnsupportedOperationException(\"Unsupported input in DateScalarType: \" + input);\n    }\n\n    private static LocalDate fromString(String input) {\n        try {\n            LocalDate date = LocalDate.parse(input, createIsoDateFormat());\n            return date;\n        } catch (Exception e) {\n            throw new IllegalArgumentException(format(\"Could not parse date from String '%s': %s\", input, e.getLocalizedMessage()), e);\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/runtime/GraphiQlConfiguration.java",
    "content": "package org.springframework.samples.petclinic.graphql.runtime;\n\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.autoconfigure.graphql.GraphQlProperties;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.context.annotation.Configuration;\nimport org.springframework.core.annotation.Order;\nimport org.springframework.core.io.ClassPathResource;\nimport org.springframework.graphql.server.webmvc.GraphiQlHandler;\nimport org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;\nimport org.springframework.web.servlet.config.annotation.WebMvcConfigurer;\nimport org.springframework.web.servlet.function.RouterFunction;\nimport org.springframework.web.servlet.function.RouterFunctions;\nimport org.springframework.web.servlet.function.ServerResponse;\n\n@Configuration\npublic class GraphiQlConfiguration implements WebMvcConfigurer {\n\n    @Bean\n    @Order(0)\n    public RouterFunction<ServerResponse> graphiQlRouterFunction(@Autowired GraphQlProperties graphQlProperties) {\n        RouterFunctions.Builder builder = RouterFunctions.route();\n        ClassPathResource graphiQlPage = new ClassPathResource(\"/ui/graphiql/index.html\");\n        GraphiQlHandler graphiQLHandler = new GraphiQlHandler(\n            graphQlProperties.getPath(),\n            graphQlProperties.getWebsocket().getPath(),\n            graphiQlPage\n        );\n        builder = builder.GET(\"/\", graphiQLHandler::handleRequest);\n        return builder.build();\n    }\n\n    @Override\n    public void addResourceHandlers(ResourceHandlerRegistry registry) {\n        registry.addResourceHandler(\"/graphiql/**\")\n            .addResourceLocations(\"classpath:/ui/graphiql/\");\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/graphql/runtime/PetClinicRuntimeWiringConfiguration.java",
    "content": "package org.springframework.samples.petclinic.graphql.runtime;\n\nimport graphql.schema.GraphQLScalarType;\nimport graphql.schema.idl.RuntimeWiring;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.context.annotation.Configuration;\nimport org.springframework.graphql.execution.RuntimeWiringConfigurer;\nimport org.springframework.samples.petclinic.model.Vet;\n\n/**\n * GraphQL Runtime Wiring Configuration\n *\n * RunimeWiring connects the schema with behviour. Most of it is done\n * aumatically by graphql-java, spring-graphql and Spring Boot starter for spring-graphql\n * but here we do our own customizations\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Configuration\npublic class PetClinicRuntimeWiringConfiguration {\n\n    @Bean\n    RuntimeWiringConfigurer petclinicWiringConfigurer() {\n        return builder -> {\n            addDateCoercing(builder);\n            addPersonTypeResolver(builder);\n        };\n    }\n\n    private void addPersonTypeResolver(RuntimeWiring.Builder builder) {\n        builder.type(\"Person\", typeBuilder -> typeBuilder.typeResolver(env -> {\n            Object javaObject = env.getObject();\n            if (javaObject instanceof Vet) {\n                return env.getSchema().getObjectType(\"Vet\");\n            }\n            return env.getSchema().getObjectType(\"Owner\");\n        }));\n    }\n\n    private void addDateCoercing(RuntimeWiring.Builder builder) {\n        builder.scalar(GraphQLScalarType.newScalar()\n            .name(\"Date\")\n            .description(\"A Type representing a date (without time, only a day)\")\n            .coercing(new DateCoercing())\n            .build());\n    }\n\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/BaseEntity.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.GeneratedValue;\nimport jakarta.persistence.GenerationType;\nimport jakarta.persistence.Id;\nimport jakarta.persistence.MappedSuperclass;\n\nimport java.io.Serializable;\n\n/**\n * Simple JavaBean domain object with an id property. Used as a base class for objects\n * needing this property.\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n */\n@MappedSuperclass\npublic class BaseEntity implements Serializable {\n\n\t@Id\n\t@GeneratedValue(strategy = GenerationType.IDENTITY)\n\tprivate Integer id;\n\n\tpublic Integer getId() {\n\t\treturn id;\n\t}\n\n\tpublic void setId(Integer id) {\n\t\tthis.id = id;\n\t}\n\n\tpublic boolean isNew() {\n\t\treturn this.id == null;\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/InvalidVetDataException.java",
    "content": "package org.springframework.samples.petclinic.model;\n\npublic class InvalidVetDataException extends Exception {\n    public InvalidVetDataException(String msg, Object... args) {\n        super(String.format(msg, args));\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/NamedEntity.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.Column;\nimport jakarta.persistence.MappedSuperclass;\n\n/**\n * Simple JavaBean domain object adds a name property to <code>BaseEntity</code>. Used as\n * a base class for objects needing these properties.\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n */\n@MappedSuperclass\npublic class NamedEntity extends BaseEntity {\n\n\t@Column(name = \"name\")\n\tprivate String name;\n\n\tpublic String getName() {\n\t\treturn this.name;\n\t}\n\n\tpublic void setName(String name) {\n\t\tthis.name = name;\n\t}\n\n\t@Override\n\tpublic String toString() {\n\t\treturn this.getName();\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/OrderField.java",
    "content": "package org.springframework.samples.petclinic.model;\n\n\n/**\n * @author Xiangbin HAN (hanxb2001@163.com)\n *\n */\npublic enum OrderField {\n    id,\n    firstName,\n    lastName,\n    address,\n    city,\n    telephone\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Owner.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport org.springframework.beans.support.MutableSortDefinition;\nimport org.springframework.beans.support.PropertyComparator;\nimport org.springframework.core.style.ToStringCreator;\n\nimport jakarta.persistence.*;\nimport jakarta.validation.constraints.NotEmpty;\nimport java.util.*;\n\n/**\n * Simple JavaBean domain object representing an owner.\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n */\n@Entity\n@Table(name = \"owners\")\npublic class Owner extends Person {\n\n\t@Column(name = \"address\")\n\t@NotEmpty\n\tprivate String address;\n\n\t@Column(name = \"city\")\n\t@NotEmpty\n\tprivate String city;\n\n\t@Column(name = \"telephone\")\n\t@NotEmpty\n\tprivate String telephone;\n\n    @OneToMany(cascade = CascadeType.ALL, mappedBy = \"owner\", fetch = FetchType.EAGER)\n\tprivate Set<Pet> pets;\n\n\tpublic String getAddress() {\n\t\treturn this.address;\n\t}\n\n\tpublic void setAddress(String address) {\n\t\tthis.address = address;\n\t}\n\n\tpublic String getCity() {\n\t\treturn this.city;\n\t}\n\n\tpublic void setCity(String city) {\n\t\tthis.city = city;\n\t}\n\n\tpublic String getTelephone() {\n\t\treturn this.telephone;\n\t}\n\n\tpublic void setTelephone(String telephone) {\n\t\tthis.telephone = telephone;\n\t}\n\n\tprotected Set<Pet> getPetsInternal() {\n\t\tif (this.pets == null) {\n\t\t\tthis.pets = new HashSet<>();\n\t\t}\n\t\treturn this.pets;\n\t}\n\n\tprotected void setPetsInternal(Set<Pet> pets) {\n\t\tthis.pets = pets;\n\t}\n\n\tpublic List<Pet> getPets() {\n\t\tList<Pet> sortedPets = new ArrayList<>(getPetsInternal());\n\t\tPropertyComparator.sort(sortedPets, new MutableSortDefinition(\"name\", true, true));\n\t\treturn Collections.unmodifiableList(sortedPets);\n\t}\n\n\tpublic void addPet(Pet pet) {\n\t\tgetPetsInternal().add(pet);\n\t\tpet.setOwner(this);\n\t}\n\n\t/**\n\t * Return the Pet with the given name, or null if none found for this Owner.\n\t * @param name to test\n\t * @return true if pet name is already in use\n\t */\n\tpublic Pet getPet(String name) {\n\t\treturn getPet(name, false);\n\t}\n\n\t/**\n\t * Return the Pet with the given name, or null if none found for this Owner.\n\t * @param name to test\n\t * @return true if pet name is already in use\n\t */\n\tpublic Pet getPet(String name, boolean ignoreNew) {\n\t\tname = name.toLowerCase();\n\t\tfor (Pet pet : getPetsInternal()) {\n\t\t\tif (!ignoreNew || !pet.isNew()) {\n\t\t\t\tString compName = pet.getName();\n\t\t\t\tcompName = compName.toLowerCase();\n\t\t\t\tif (compName.equals(name)) {\n\t\t\t\t\treturn pet;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn null;\n\t}\n\n\t@Override\n\tpublic String toString() {\n\t\treturn new ToStringCreator(this)\n\n\t\t\t\t.append(\"id\", this.getId()).append(\"new\", this.isNew()).append(\"lastName\", this.getLastName())\n\t\t\t\t.append(\"firstName\", this.getFirstName()).append(\"address\", this.address).append(\"city\", this.city)\n\t\t\t\t.append(\"telephone\", this.telephone).toString();\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/OwnerFilter.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.data.jpa.domain.Specification;\n\nimport jakarta.persistence.Query;\nimport jakarta.persistence.criteria.CriteriaBuilder;\nimport jakarta.persistence.criteria.CriteriaQuery;\nimport jakarta.persistence.criteria.Predicate;\nimport jakarta.persistence.criteria.Root;\n\nimport java.util.LinkedList;\nimport java.util.Map;\nimport java.util.Optional;\n\n/**\n * @author Xiangbin HAN (hanxb2001@163.com)\n * @author Nils Hartmann\n */\npublic class OwnerFilter implements Specification<Owner> {\n\n    public static OwnerFilter NO_FILTER = new OwnerFilter() {\n        public Predicate toPredicate(Root<Owner> root, CriteriaQuery<?> query, CriteriaBuilder criteriaBuilder) {\n            return null;\n        }\n    };\n\n    private String firstName;\n    private String lastName;\n    private String address;\n    private String city;\n    private String telephone;\n\n    public void setFirstName(String firstName) {\n        this.firstName = firstName;\n    }\n\n    public void setLastName(String lastName) {\n        this.lastName = lastName;\n    }\n\n    public void setAddress(String address) {\n        this.address = address;\n    }\n\n    public void setCity(String city) {\n        this.city = city;\n    }\n\n    public void setTelephone(String telephone) {\n        this.telephone = telephone;\n    }\n\n    @Override\n    public Predicate toPredicate(Root<Owner> root, CriteriaQuery<?> query, CriteriaBuilder criteriaBuilder) {\n        var predicates = new LinkedList<Predicate>();\n\n        if (isSet(firstName)) {\n            predicates.add(criteriaBuilder.like(\n                criteriaBuilder.lower(\n                    root.get(\"firstName\")), firstName.toLowerCase() + \"%\"));\n        }\n\n        if (isSet(lastName)) {\n            predicates.add(criteriaBuilder.like(\n                criteriaBuilder.lower(\n                    root.get(\"lastName\")), lastName.toLowerCase() + \"%\"));\n        }\n\n        if (isSet(address)) {\n            predicates.add(criteriaBuilder.like(\n                criteriaBuilder.lower(\n                    root.get(\"address\")), address.toLowerCase() + \"%\"));\n        }\n\n        if (isSet(city)) {\n            predicates.add(criteriaBuilder.equal(root.get(\"city\"), city));\n        }\n\n        if (isSet(telephone)) {\n            predicates.add(criteriaBuilder.equal(root.get(\"telephone\"), telephone));\n        }\n\n        if (predicates.isEmpty()) {\n            return null;\n        }\n        return criteriaBuilder.and(predicates.toArray(new Predicate[0]));\n    }\n\n    private boolean isSet(String s) {\n        return s != null && !s.isBlank();\n    }\n\n    @Override\n    public String toString() {\n        return \"OwnerFilter{\" +\n               \"firstName='\" + firstName + '\\'' +\n               \", lastName='\" + lastName + '\\'' +\n               \", address='\" + address + '\\'' +\n               \", city='\" + city + '\\'' +\n               \", telephone='\" + telephone + '\\'' +\n               '}';\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/OwnerOrder.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.data.domain.Sort;\n\nimport java.util.List;\n\n/**\n * @author Xiangbin HAN (hanxb2001@163.com)\n * @author Nils Hartmann\n */\npublic record OwnerOrder(OrderField field, Sort.Direction direction) {\n\n    public static List<Sort.Order> defaultOrder() {\n        return List.of(Sort.Order.asc(\"id\"));\n    }\n\n    public Sort.Order toSortOrder() {\n//        Sort.Direction direction = order == null ? Sort.DEFAULT_DIRECTION : order == OrderDirection.ASC ? Sort.Direction.ASC : Sort.Direction.DESC;\n        return new Sort.Order(direction, field.name());\n    }\n\n    public Sort toSort() {\n        return Sort.by(direction, field.name());\n    }\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/OwnerService.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.samples.petclinic.repository.OwnerRepository;\nimport org.springframework.stereotype.Service;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.validation.annotation.Validated;\n\nimport jakarta.validation.constraints.NotEmpty;\nimport java.util.function.Consumer;\n\n@Service\n@Validated\npublic class OwnerService {\n\n    private final OwnerRepository ownerRepository;\n\n    public OwnerService(OwnerRepository ownerRepository) {\n        this.ownerRepository = ownerRepository;\n    }\n\n    @Transactional\n    public Owner addOwner(@NotEmpty String firstName, @NotEmpty String lastName, @NotEmpty String telephone, @NotEmpty String address, @NotEmpty String city) {\n        final Owner owner = new Owner();\n        owner.setAddress(address);\n        owner.setCity(city);\n        owner.setTelephone(telephone);\n        owner.setFirstName(firstName);\n        owner.setLastName(lastName);\n\n        ownerRepository.save(owner);\n\n        return owner;\n    }\n\n\n\n    @Transactional\n    public Owner updateOwner(@NotEmpty int ownerId, String firstName, String lastName, String telephone, String address, String city) {\n        Owner owner = ownerRepository.findById(ownerId).orElseThrow();\n\n        setIfGiven(address, owner::setAddress);\n        setIfGiven(firstName, owner::setFirstName);\n        setIfGiven(lastName, owner::setLastName);\n        setIfGiven(telephone, owner::setTelephone);\n        setIfGiven(address, owner::setAddress);\n        setIfGiven(city, owner::setCity);\n\n        ownerRepository.save(owner);\n\n        return owner;\n    }\n\n    private void setIfGiven(String value, Consumer<String> s) {\n        if (value != null) {\n            s.accept(value);\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Person.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.Column;\nimport jakarta.persistence.MappedSuperclass;\nimport jakarta.validation.constraints.NotEmpty;\n\n/**\n * Simple JavaBean domain object representing an person.\n *\n * @author Ken Krebs\n */\n@MappedSuperclass\npublic class Person extends BaseEntity {\n\n\t@Column(name = \"first_name\")\n\t@NotEmpty\n\tprivate String firstName;\n\n\t@Column(name = \"last_name\")\n\t@NotEmpty\n\tprivate String lastName;\n\n\tpublic String getFirstName() {\n\t\treturn this.firstName;\n\t}\n\n\tpublic void setFirstName(String firstName) {\n\t\tthis.firstName = firstName;\n\t}\n\n\tpublic String getLastName() {\n\t\treturn this.lastName;\n\t}\n\n\tpublic void setLastName(String lastName) {\n\t\tthis.lastName = lastName;\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Pet.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport com.fasterxml.jackson.annotation.JsonIgnore;\nimport org.springframework.beans.support.MutableSortDefinition;\nimport org.springframework.beans.support.PropertyComparator;\nimport org.springframework.format.annotation.DateTimeFormat;\n\nimport jakarta.persistence.*;\nimport java.time.LocalDate;\nimport java.util.*;\n\n/**\n * Simple business object representing a pet.\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n */\n@Entity\n@Table(name = \"pets\")\npublic class Pet extends NamedEntity {\n\n\t@Column(name = \"birth_date\")\n\t@DateTimeFormat(pattern = \"yyyy-MM-dd\")\n\tprivate LocalDate birthDate;\n\n\t@ManyToOne\n\t@JoinColumn(name = \"type_id\")\n\tprivate PetType type;\n\n\t@ManyToOne\n\t@JoinColumn(name = \"owner_id\")\n\tprivate Owner owner;\n\n    @OneToMany(cascade = CascadeType.ALL, mappedBy = \"pet\", fetch = FetchType.EAGER)\n    private Set<Visit> visits;\n\n\tpublic void setBirthDate(LocalDate birthDate) {\n\t\tthis.birthDate = birthDate;\n\t}\n\n\tpublic LocalDate getBirthDate() {\n\t\treturn this.birthDate;\n\t}\n\n\tpublic PetType getType() {\n\t\treturn this.type;\n\t}\n\n\tpublic void setType(PetType type) {\n\t\tthis.type = type;\n\t}\n\n\tpublic Owner getOwner() {\n\t\treturn this.owner;\n\t}\n\n\tpublic void setOwner(Owner owner) {\n\t\tthis.owner = owner;\n\t}\n    @JsonIgnore\n\tprotected Set<Visit> getVisitsInternal() {\n\t\tif (this.visits == null) {\n\t\t\tthis.visits = new HashSet<>();\n\t\t}\n\t\treturn this.visits;\n\t}\n\n    protected void setVisitsInternal(Set<Visit> visits) {\n        this.visits = visits;\n\t}\n\n\tpublic List<Visit> getVisits() {\n\t\tList<Visit> sortedVisits = new ArrayList<>(getVisitsInternal());\n\t\tPropertyComparator.sort(sortedVisits, new MutableSortDefinition(\"date\", false, false));\n\t\treturn Collections.unmodifiableList(sortedVisits);\n\t}\n\n\tpublic void addVisit(Visit visit) {\n\t\tgetVisitsInternal().add(visit);\n\t\tvisit.setPet(this);\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/PetService.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.samples.petclinic.repository.OwnerRepository;\nimport org.springframework.samples.petclinic.repository.PetRepository;\nimport org.springframework.samples.petclinic.repository.PetTypeRepository;\nimport org.springframework.stereotype.Service;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.validation.annotation.Validated;\n\nimport jakarta.validation.constraints.NotEmpty;\nimport jakarta.validation.constraints.NotNull;\nimport java.time.LocalDate;\nimport java.util.Optional;\nimport java.util.function.Consumer;\n\n@Service\n@Validated\npublic class PetService {\n    private final OwnerRepository ownerRepository;\n    private final PetRepository petRepository;\n    private final PetTypeRepository petTypeRepository;\n\n    public PetService(OwnerRepository ownerRepository, PetRepository petRepository, PetTypeRepository petTypeRepository) {\n        this.ownerRepository = ownerRepository;\n        this.petRepository = petRepository;\n        this.petTypeRepository = petTypeRepository;\n    }\n\n    @Transactional\n    public Pet addPet(int ownerId, int petTypeId, @NotEmpty String petName, @NotNull LocalDate petBirthData) {\n        final Owner owner = ownerRepository.findById(ownerId).orElseThrow();\n        final PetType type = petTypeRepository.findById(petTypeId).orElseThrow();\n\n        Pet pet = new Pet();\n        pet.setName(petName);\n        pet.setType(type);\n        pet.setBirthDate(petBirthData);\n        pet.setOwner(owner);\n\n        petRepository.save(pet);\n\n        return pet;\n    }\n\n    @Transactional\n    public Pet updatePet(int petId, Optional<Integer> petTypeId, String petName, LocalDate petBirthData) {\n        final Pet pet = petRepository.findById(petId).orElseThrow();\n\n        setIfGiven(petBirthData, pet::setBirthDate);\n        setIfGiven(petName, pet::setName);\n        setIfGiven(petTypeId.flatMap(petTypeRepository::findById).orElse(null), pet::setType);\n\n        petRepository.save(pet);\n\n        return pet;\n    }\n\n\n    private <T> void setIfGiven(T value, Consumer<T> s) {\n        if (value != null) {\n            s.accept(value);\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/PetType.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.Entity;\nimport jakarta.persistence.Table;\n\n/**\n * @author Juergen Hoeller Can be Cat, Dog, Hamster...\n */\n@Entity\n@Table(name = \"types\")\npublic class PetType extends NamedEntity {\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/PetValidator.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport org.springframework.util.StringUtils;\nimport org.springframework.validation.Errors;\nimport org.springframework.validation.Validator;\n\n/**\n * <code>Validator</code> for <code>Pet</code> forms.\n * <p>\n * We're not using Bean Validation annotations here because it is easier to define such\n * validation rule in Java.\n * </p>\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n */\npublic class PetValidator implements Validator {\n\n\tprivate static final String REQUIRED = \"required\";\n\n\t@Override\n\tpublic void validate(Object obj, Errors errors) {\n\t\tPet pet = (Pet) obj;\n\t\tString name = pet.getName();\n\t\t// name validation\n\t\tif (!StringUtils.hasLength(name)) {\n\t\t\terrors.rejectValue(\"name\", REQUIRED, REQUIRED);\n\t\t}\n\n\t\t// type validation\n\t\tif (pet.isNew() && pet.getType() == null) {\n\t\t\terrors.rejectValue(\"type\", REQUIRED, REQUIRED);\n\t\t}\n\n\t\t// birth date validation\n\t\tif (pet.getBirthDate() == null) {\n\t\t\terrors.rejectValue(\"birthDate\", REQUIRED, REQUIRED);\n\t\t}\n\t}\n\n\t/**\n\t * This Validator validates *just* Pet instances\n\t */\n\t@Override\n\tpublic boolean supports(Class<?> clazz) {\n\t\treturn Pet.class.isAssignableFrom(clazz);\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Specialty.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.Entity;\nimport jakarta.persistence.Table;\nimport java.io.Serializable;\n\n/**\n * Models a {@link Vet Vet's} specialty (for example, dentistry).\n *\n * @author Juergen Hoeller\n */\n@Entity\n@Table(name = \"specialties\")\npublic class Specialty extends NamedEntity implements Serializable {\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/SpecialtyService.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.samples.petclinic.repository.SpecialtyRepository;\nimport org.springframework.stereotype.Service;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.validation.annotation.Validated;\n\nimport jakarta.validation.constraints.NotEmpty;\n\n@Service\n@Validated\npublic class SpecialtyService {\n\n    private final SpecialtyRepository specialtyRepository;\n\n\n    public SpecialtyService(SpecialtyRepository specialtyRepository) {\n        this.specialtyRepository = specialtyRepository;\n    }\n\n    @Transactional\n    public Specialty addSpecialty(@NotEmpty  String name) {\n        Specialty specialty = new Specialty();\n        specialty.setName(name);\n        specialtyRepository.save(specialty);\n        return specialty;\n    }\n\n    @Transactional\n    public Specialty updateSpecialty(int specialtyId, @NotEmpty String newName) {\n        Specialty specialty = specialtyRepository.findById(specialtyId).orElseThrow();\n        specialty.setName(newName);\n        specialtyRepository.save(specialty);\n        return specialty;\n    }\n\n    @Transactional\n    public void deleteSpecialty(int specialtyId) {\n        Specialty specialty = specialtyRepository.findById(specialtyId).orElseThrow();\n        specialtyRepository.delete(specialty);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Vet.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport org.springframework.beans.support.MutableSortDefinition;\nimport org.springframework.beans.support.PropertyComparator;\n\nimport jakarta.persistence.*;\nimport java.util.*;\n\n/**\n * Simple JavaBean domain object representing a veterinarian.\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Arjen Poutsma\n */\n@Entity\n@Table(name = \"vets\")\npublic class Vet extends Person {\n\n\t@ManyToMany(fetch = FetchType.EAGER)\n\t@JoinTable(name = \"vet_specialties\", joinColumns = @JoinColumn(name = \"vet_id\"),\n\t\t\tinverseJoinColumns = @JoinColumn(name = \"specialty_id\"))\n\tprivate Set<Specialty> specialties;\n\n\tprotected Set<Specialty> getSpecialtiesInternal() {\n\t\tif (this.specialties == null) {\n\t\t\tthis.specialties = new HashSet<>();\n\t\t}\n\t\treturn this.specialties;\n\t}\n\n\tprotected void setSpecialtiesInternal(Set<Specialty> specialties) {\n\t\tthis.specialties = specialties;\n\t}\n\n\tpublic List<Specialty> getSpecialties() {\n\t\tList<Specialty> sortedSpecs = new ArrayList<>(getSpecialtiesInternal());\n\t\tPropertyComparator.sort(sortedSpecs, new MutableSortDefinition(\"name\", true, true));\n\t\treturn Collections.unmodifiableList(sortedSpecs);\n\t}\n\n\tpublic int getNrOfSpecialties() {\n\t\treturn getSpecialtiesInternal().size();\n\t}\n\n\tpublic void addSpecialty(Specialty specialty) {\n\t\tgetSpecialtiesInternal().add(specialty);\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/VetService.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.samples.petclinic.repository.SpecialtyRepository;\nimport org.springframework.samples.petclinic.repository.VetRepository;\nimport org.springframework.security.access.prepost.PreAuthorize;\nimport org.springframework.stereotype.Service;\nimport org.springframework.transaction.annotation.Transactional;\n\nimport java.util.List;\n\n@Service\npublic class VetService {\n    private static final Logger log = LoggerFactory.getLogger(VetService.class);\n\n    private final VetRepository vetRepository;\n    private final SpecialtyRepository specialtyRepository;\n\n    public VetService(VetRepository vetRepository, SpecialtyRepository specialtyRepository) {\n        this.vetRepository = vetRepository;\n        this.specialtyRepository = specialtyRepository;\n    }\n\n    @Transactional\n    @PreAuthorize(\"hasAuthority('SCOPE_MANAGER')\")\n    public Vet createVet(String firstName, String lastName, List<Integer> specialtyIds) throws InvalidVetDataException {\n        Vet vet = new Vet();\n        vet.setFirstName(firstName);\n        vet.setLastName(lastName);\n        for (Integer specialtyId : specialtyIds) {\n            log.info(\"Specialty Id '{}'\", specialtyId);\n            Specialty specialty = specialtyRepository.findById(specialtyId)\n                    .orElseThrow( () -> new InvalidVetDataException(\"Specialty with Id '%s' not found\", specialtyId));\n            log.info(\"Specialty '{}'\", specialty);\n            vet.addSpecialty(specialty);\n        }\n\n        vetRepository.save(vet);\n\n        log.info(\"VET {}\", vet);\n\n        return vet;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Vets.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\n/**\n * Simple domain object representing a list of veterinarians. Mostly here to be used for\n * the 'vets' {@link org.springframework.web.servlet.view.xml.MarshallingView}.\n *\n * @author Arjen Poutsma\n */\npublic class Vets {\n\n\tprivate List<Vet> vets;\n\n\tpublic List<Vet> getVetList() {\n\t\tif (vets == null) {\n\t\t\tvets = new ArrayList<>();\n\t\t}\n\t\treturn vets;\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/Visit.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.model;\n\nimport jakarta.persistence.*;\nimport jakarta.validation.constraints.NotEmpty;\nimport org.springframework.format.annotation.DateTimeFormat;\n\nimport java.time.LocalDate;\n\n/**\n * Simple JavaBean domain object representing a visit.\n *\n * @author Ken Krebs\n * @author Dave Syer\n */\n@Entity\n@Table(name = \"visits\")\npublic class Visit extends BaseEntity {\n\n\t@Column(name = \"visit_date\")\n\t@DateTimeFormat(pattern = \"yyyy-MM-dd\")\n\tprivate LocalDate date;\n\n\t@NotEmpty\n\t@Column(name = \"description\")\n\tprivate String description;\n\n    /**\n     * Holds value of property pet.\n     */\n    @ManyToOne\n    @JoinColumn(name = \"pet_id\")\n    private Pet pet;\n\n    @Column(name = \"vet_id\")\n    private Integer vetId;\n\n\t/**\n\t * Creates a new instance of Visit for the current date\n\t */\n\tpublic Visit() {\n\t\tthis.date = LocalDate.now();\n\t}\n\n\tpublic LocalDate getDate() {\n\t\treturn this.date;\n\t}\n\n\tpublic void setDate(LocalDate date) {\n\t\tthis.date = date;\n\t}\n\n\tpublic String getDescription() {\n\t\treturn this.description;\n\t}\n\n\tpublic void setDescription(String description) {\n\t\tthis.description = description;\n\t}\n\n    public Pet getPet() {\n        return pet;\n    }\n\n    public void setPet(Pet pet) {\n        this.pet = pet;\n    }\n\n    public Integer getVetId() {\n        return vetId;\n    }\n\n\n    public void setVetId(Integer vetId) {\n        this.vetId = vetId;\n    }\n\n    public boolean hasVetId() {\n\t    return this.vetId != null;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/VisitCreatedEvent.java",
    "content": "package org.springframework.samples.petclinic.model;\n\npublic class VisitCreatedEvent {\n\n    private final Integer visitId;\n\n    public VisitCreatedEvent(Integer visitId) {\n        this.visitId = visitId;\n    }\n\n    public Integer getVisitId() {\n        return visitId;\n    }\n\n    @Override\n    public String toString() {\n        return \"VisitCreatedEvent{\" +\n            \"visitId=\" + visitId +\n            '}';\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/VisitService.java",
    "content": "package org.springframework.samples.petclinic.model;\n\nimport org.springframework.context.ApplicationEventPublisher;\nimport org.springframework.samples.petclinic.repository.PetRepository;\nimport org.springframework.samples.petclinic.repository.VisitRepository;\nimport org.springframework.stereotype.Service;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.validation.annotation.Validated;\n\nimport jakarta.validation.constraints.NotEmpty;\nimport jakarta.validation.constraints.NotNull;\nimport java.time.LocalDate;\nimport java.util.Optional;\n\n@Service\n@Validated\npublic class VisitService {\n    private final ApplicationEventPublisher applicationEventPublisher;\n    private final PetRepository petRepository;\n    private final VisitRepository visitRepository;\n\n    public VisitService(ApplicationEventPublisher applicationEventPublisher, PetRepository petRepository, VisitRepository visitRepository) {\n        this.applicationEventPublisher = applicationEventPublisher;\n        this.petRepository = petRepository;\n        this.visitRepository = visitRepository;\n    }\n\n    @Transactional\n    public Visit addVisit(int petId, @NotEmpty String description, @NotNull LocalDate date, Optional<Integer> vetId) {\n        Pet pet = petRepository.findById(petId).orElseThrow();\n\n        Visit visit = new Visit();\n        visit.setDescription(description);\n        visit.setPet(pet);\n        visit.setDate(date);\n        vetId.ifPresent(visit::setVetId);\n\n        visitRepository.save(visit);\n        applicationEventPublisher.publishEvent(new VisitCreatedEvent(visit.getId()));\n\n        return visit;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/model/package-info.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/**\n * The classes in this package represent utilities used by the domain.\n */\npackage org.springframework.samples.petclinic.model;\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/OwnerRepository.java",
    "content": "/*\n * Copyright 2002-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.Optional;\n\nimport org.springframework.data.domain.*;\nimport org.springframework.data.jpa.domain.Specification;\nimport org.springframework.data.jpa.repository.JpaSpecificationExecutor;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.lang.Nullable;\nimport org.springframework.samples.petclinic.model.BaseEntity;\nimport org.springframework.samples.petclinic.model.Owner;\n\n/**\n * Repository class for <code>Owner</code> domain objects\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n */\npublic interface OwnerRepository extends Repository<Owner, Integer>, JpaSpecificationExecutor<Owner> {\n\n    /**\n     * Retrieve an <code>Owner</code> from the data store by id.\n     *\n     * @param id the id to search for\n     * @return the <code>Owner</code> if found\n     */\n    Optional<Owner> findById(Integer id);\n\n\n    /**\n     * Save an <code>Owner</code> to the data store, either inserting or updating it.\n     *\n     * @param owner the <code>Owner</code> to save\n     * @see BaseEntity#isNew\n     */\n    void save(Owner owner);\n\n    /**\n     * Retrieve <code>Owner</code>s from the data store, returning all owners\n     *\n     * @return a <code>Collection</code> of <code>Owner</code>s (or an empty <code>Collection</code> if none\n     * found)\n     */\n\tCollection<Owner> findAll();\n\n    /**\n     * Delete an <code>Owner</code> to the data store by <code>Owner</code>.\n     *\n     * @param owner the <code>Owner</code> to delete\n     *\n     */\n\tvoid delete(Owner owner);\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/PetRepository.java",
    "content": "/*\n * Copyright 2002-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Optional;\n\nimport org.springframework.dao.DataAccessException;\nimport org.springframework.data.jpa.repository.Query;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.samples.petclinic.model.BaseEntity;\nimport org.springframework.samples.petclinic.model.Pet;\nimport org.springframework.samples.petclinic.model.PetType;\n\n/**\n * Repository class for <code>Pet</code> domain objects\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n */\npublic interface PetRepository extends Repository<Pet, Integer> {\n\n    /**\n     * Retrieve all <code>PetType</code>s from the data store.\n     *\n     * @return a <code>Collection</code> of <code>PetType</code>s\n     */\n    @Query(\"SELECT ptype FROM PetType ptype ORDER BY ptype.name\")\n    List<PetType> findPetTypes();\n\n    /**\n     * Retrieve a <code>Pet</code> from the data store by id.\n     *\n     * @param id the id to search for\n     * @return the <code>Pet</code> if found\n     * @throws org.springframework.dao.DataRetrievalFailureException if not found\n     */\n    Optional<Pet> findById(Integer id);\n\n    /**\n     * Save a <code>Pet</code> to the data store, either inserting or updating it.\n     *\n     * @param pet the <code>Pet</code> to save\n     * @see BaseEntity#isNew\n     */\n    void save(Pet pet);\n\n    /**\n     * Retrieve <code>Pet</code>s from the data store, returning all owners\n     *\n     * @return a <code>Collection</code> of <code>Pet</code>s (or an empty <code>Collection</code> if none\n     * found)\n     */\n\tCollection<Pet> findAll();\n\n    /**\n     * Delete an <code>Pet</code> to the data store by <code>Pet</code>.\n     *\n     * @param pet the <code>Pet</code> to delete\n     *\n     */\n\tvoid delete(Pet pet);\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/PetTypeRepository.java",
    "content": "/*\n * Copyright 2016-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.Optional;\n\nimport org.springframework.dao.DataAccessException;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.samples.petclinic.model.PetType;\n\n/**\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n *\n */\n\npublic interface PetTypeRepository extends Repository<PetType, Integer> {\n\n\tOptional<PetType> findById(Integer id) ;\n\n\tCollection<PetType> findAll();\n\n\tvoid save(PetType petType);\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/SpecialtyRepository.java",
    "content": "/*\n * Copyright 2016-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.Optional;\n\nimport org.springframework.dao.DataAccessException;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.samples.petclinic.model.Specialty;\n\n/**\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n *\n */\n\npublic interface SpecialtyRepository extends Repository<Specialty, Integer> {\n\n\tOptional<Specialty> findById(Integer id);\n\n\tCollection<Specialty> findAll();\n\n\tvoid save(Specialty specialty);\n\n\tvoid delete(Specialty specialty);\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/VetRepository.java",
    "content": "/*\n * Copyright 2002-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.Optional;\n\nimport org.springframework.dao.DataAccessException;\nimport org.springframework.data.domain.Limit;\nimport org.springframework.data.domain.ScrollPosition;\nimport org.springframework.data.domain.Sort;\nimport org.springframework.data.domain.Window;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.samples.petclinic.model.Vet;\n\n/**\n * Repository class for <code>Vet</code> domain objects\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n */\npublic interface VetRepository extends Repository<Vet, Integer> {\n\n\tOptional<Vet> findById(Integer id);\n\n\tVet save(Vet vet);\n\n\tvoid delete(Vet vet);\n\n    Window<Vet> findBy(ScrollPosition position, Sort sort, Limit limit);\n\n\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/repository/VisitRepository.java",
    "content": "/*\n * Copyright 2002-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.repository;\n\nimport java.util.Collection;\nimport java.util.List;\nimport java.util.Optional;\n\nimport org.springframework.dao.DataAccessException;\nimport org.springframework.data.repository.Repository;\nimport org.springframework.samples.petclinic.model.BaseEntity;\nimport org.springframework.samples.petclinic.model.Visit;\n\n/**\n * Repository class for <code>Visit</code> domain objects\n *\n * @author Ken Krebs\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n * @author Vitaliy Fedoriv\n * @author Nils Hartmann\n */\npublic interface VisitRepository extends Repository<Visit, Integer> {\n\n    /**\n     * Save a <code>Visit</code> to the data store, either inserting or updating it.\n     *\n     * @param visit the <code>Visit</code> to save\n     * @see BaseEntity#isNew\n     */\n    void save(Visit visit);\n\n    List<Visit> findByPetIdOrderById(Integer petId);\n\n\tOptional<Visit> findById(Integer id);\n\n\tCollection<Visit> findAll();\n\n\tvoid delete(Visit visit);\n\n    List<Visit> findByVetId(Integer id);\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/JwtTokenService.java",
    "content": "package org.springframework.samples.petclinic.security;\n\nimport org.springframework.security.core.Authentication;\nimport org.springframework.security.core.GrantedAuthority;\nimport org.springframework.security.oauth2.jwt.JwtClaimsSet;\nimport org.springframework.security.oauth2.jwt.JwtEncoder;\nimport org.springframework.security.oauth2.jwt.JwtEncoderParameters;\nimport org.springframework.stereotype.Service;\n\nimport java.time.Instant;\nimport java.time.temporal.ChronoUnit;\nimport java.util.Collection;\nimport java.util.stream.Collectors;\n\n/**\n * Based con code taken from Dan Vega https://github.com/danvega/jwt-username-password/blob/master/src/main/java/dev/danvega/jwt/service/TokenService.java\n */\n@Service\npublic class JwtTokenService {\n\n    private final JwtEncoder encoder;\n\n    public JwtTokenService(JwtEncoder encoder) {\n        this.encoder = encoder;\n    }\n\n    public String generateToken(Authentication authentication) {\n        return generateToken(authentication.getName(),\n            authentication.getAuthorities(),\n            Instant.now().plus(1, ChronoUnit.HOURS)\n        );\n    }\n\n    public String generateToken(String name, Collection<? extends GrantedAuthority> authorities, Instant expiresAt) {\n        String scope = authorities.stream()\n            .map(GrantedAuthority::getAuthority)\n            .collect(Collectors.joining(\" \"));\n\n        JwtClaimsSet claims = JwtClaimsSet.builder()\n            .issuer(\"self\")\n            .issuedAt(Instant.now())\n            .expiresAt(expiresAt)\n            .subject(name)\n            .claim(\"scope\", scope)\n            .build();\n\n        return this.encoder.encode(JwtEncoderParameters.from(claims)).getTokenValue();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/LoginController.java",
    "content": "package org.springframework.samples.petclinic.security;\n\nimport jakarta.validation.Valid;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.http.HttpStatus;\nimport org.springframework.http.ResponseEntity;\nimport org.springframework.security.authentication.AuthenticationManager;\nimport org.springframework.security.authentication.UsernamePasswordAuthenticationToken;\nimport org.springframework.security.core.Authentication;\nimport org.springframework.web.bind.annotation.GetMapping;\nimport org.springframework.web.bind.annotation.PostMapping;\nimport org.springframework.web.bind.annotation.RequestBody;\nimport org.springframework.web.bind.annotation.RestController;\n\n/**\n * Login via Username/Password via HTTP POST endpoint.\n * <p>\n * - The /graphql endpoints requires a valid token. This token can be requests by invoking\n * HTTP \"POST /api/login with\" sending username and password.\n * <p>\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@RestController\npublic class LoginController {\n\n    private static final Logger log = LoggerFactory.getLogger(LoginController.class);\n\n    private final JwtTokenService tokenService;\n    private final AuthenticationManager authenticationManager;\n\n    public LoginController(JwtTokenService tokenService, AuthenticationManager authenticationManager) {\n        this.tokenService = tokenService;\n        this.authenticationManager = authenticationManager;\n    }\n\n    @PostMapping(\"/api/login\")\n    public ResponseEntity<LoginResponse> login(@RequestBody @Valid LoginRequest request) {\n        log.info(\"Authorizing '{}'\", request.getUsername());\n        try {\n            Authentication authentication = authenticationManager.authenticate(\n                new UsernamePasswordAuthenticationToken(request.getUsername(), request.getPassword())\n            );\n\n            String token = tokenService.generateToken(authentication);\n\n            return ResponseEntity.ok(new LoginResponse(token));\n\n        } catch (Exception ex) {\n            log.error(\"could not authenticate: \" + ex, ex);\n            return ResponseEntity.status(HttpStatus.UNAUTHORIZED).build();\n        }\n    }\n\n    @GetMapping(\"/ping\")\n    public String ping() {\n        return \"pong\";\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/LoginRequest.java",
    "content": "package org.springframework.samples.petclinic.security;\n\npublic class LoginRequest {\n\n    private String username;\n    private String password;\n\n    public String getUsername() {\n        return username;\n    }\n\n    public void setUsername(String username) {\n        this.username = username;\n    }\n\n    public String getPassword() {\n        return password;\n    }\n\n    public void setPassword(String password) {\n        this.password = password;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/LoginResponse.java",
    "content": "package org.springframework.samples.petclinic.security;\n\npublic class LoginResponse {\n    private final String token;\n\n    public LoginResponse(String token) {\n        this.token = token;\n    }\n\n    public String getToken() {\n        return token;\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/NeverExpiringTokenGenerator.java",
    "content": "package org.springframework.samples.petclinic.security;\n\nimport jakarta.annotation.PostConstruct;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.samples.petclinic.auth.UserRepository;\nimport org.springframework.stereotype.Component;\n\nimport java.time.Instant;\nimport java.time.temporal.ChronoUnit;\n\n\n/**\n * Generates a non-expiring token for testing.\n *\n * 👮  👮  👮 YOU SHOULD NEVER DO THIS IN PRODUCTION 👮  👮  👮\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Component\nclass NeverExpiringTokenGenerator {\n\n    private static final Logger log = LoggerFactory.getLogger(NeverExpiringTokenGenerator.class);\n\n    private final UserRepository userRepository;\n    private final JwtTokenService tokenService;\n\n    NeverExpiringTokenGenerator(UserRepository userRepository, JwtTokenService tokenService) {\n        this.userRepository = userRepository;\n        this.tokenService = tokenService;\n    }\n\n    /**\n     * Creates a token that will never expire and will be stable accross re-starts\n     * as longs as the RSAKey does not change (keys from publicKey and privateKey application properties)\n     * <p>\n     * This token can be used for easier testing using command line tools etc.\n     * 👮  👮  👮 YOU SHOULD NEVER DO THIS IN 'REAL' PRODUCTION APPS 👮  👮  👮\n     */\n    @PostConstruct\n    void createNonExpiringTokens() {\n        var somewhen = Instant.now().plus(10 * 365, ChronoUnit.DAYS);\n\n        var susi = userRepository.findByUsername(\"susi\").orElseThrow();\n        var neverExpiringManagerToken = tokenService.generateToken(susi.getUsername(), susi.getRoles(), somewhen);\n\n        var joe = userRepository.findByUsername(\"joe\").orElseThrow();\n        var neverExpiringUserToken = tokenService.generateToken(joe.getUsername(), joe.getRoles(), somewhen);\n        log.info(\"\"\"\n\n                ===============================================================\n                🚨 🚨 🚨 NEVER EXPIRING JWT TOKENS 🚨 🚨 🚨\n                ===============================================================\n                SCOPE_MANAGER\n                login: '{}'\n\n                {\"Authorization\": \"Bearer {}\"}\n\n                SCOPE_USER\n                login: '{}'\n\n                {\"Authorization\": \"Bearer {}\"}\n\n                ===============================================================\n                \"\"\",\n            susi.getUsername(),\n            neverExpiringManagerToken,\n            joe.getUsername(),\n            neverExpiringUserToken);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/RSAKeyProvider.java",
    "content": "package org.springframework.samples.petclinic.security;\n\nimport com.nimbusds.jose.jwk.RSAKey;\nimport jakarta.annotation.PostConstruct;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.beans.factory.annotation.Value;\nimport org.springframework.core.io.Resource;\nimport org.springframework.stereotype.Component;\n\nimport java.nio.file.Files;\nimport java.nio.file.Paths;\nimport java.security.KeyFactory;\nimport java.security.PrivateKey;\nimport java.security.PublicKey;\nimport java.security.interfaces.RSAPrivateKey;\nimport java.security.interfaces.RSAPublicKey;\nimport java.security.spec.PKCS8EncodedKeySpec;\nimport java.security.spec.X509EncodedKeySpec;\nimport java.util.Base64;\nimport java.util.UUID;\n\n/**\n * @author Nils Hartmann (nils@nilshartmann.net)\n * <p>\n * Based on Code from Dan Vega: https://github.com/danvega/jwt-username-password/blob/master/src/main/java/dev/danvega/jwt/security/Jwks.java\n * <p>\n * GENERATE KEYS WITH OPENSSL:\n * <p>\n * Private Key:  openssl genpkey -out private_key.pem -algorithm RSA -pkeyopt rsa_keygen_bits:4096\n * Public Key :  openssl rsa -pubout -outform pem -in private_key.pem -out public_key.pem\n */\n@Component\npublic class RSAKeyProvider {\n    private static final Logger log = LoggerFactory.getLogger(RSAKeyProvider.class);\n\n    private final Resource publicKeyResource;\n    private final Resource privateKeyResource;\n\n    private RSAKey rsaKey;\n\n    public RSAKeyProvider(@Value(\"${publicKey}\") Resource publicKeyResource, @Value(\"${privateKey}\") Resource privateKeyResource) {\n        this.publicKeyResource = publicKeyResource;\n        this.privateKeyResource = privateKeyResource;\n    }\n\n    public RSAKey getRsaKey() {\n        return rsaKey;\n    }\n\n    @PostConstruct\n    private void generateRsaKey() throws Exception {\n\n        var publicKeyString = publicKeyResource.getInputStream().readAllBytes();\n        var privateKeyString = privateKeyResource.getInputStream().readAllBytes();\n\n        log.info(\"Creating RSA KEY......\");\n        KeyFactory kf = KeyFactory.getInstance(\"RSA\");\n\n        RSAPublicKey publicKey = getPublicKey();\n        RSAPrivateKey privateKey = getPrivateKey();\n\n        this.rsaKey = new RSAKey.Builder(publicKey)\n            .privateKey(privateKey)\n            .keyID(UUID.randomUUID().toString())\n            .build();\n    }\n\n    private RSAPublicKey getPublicKey() throws Exception {\n        log.debug(\"Public key {}\", publicKeyResource.getURI());\n        byte[] keyBytes = publicKeyResource.getInputStream().readAllBytes();\n        String publicKeyPem = new String(keyBytes)\n            .replace(\"-----BEGIN PUBLIC KEY-----\", \"\")\n            .replace(\"-----END PUBLIC KEY-----\", \"\")\n            .replaceAll(\"\\\\s+\", \"\");\n        byte[] decoded = Base64.getDecoder().decode(publicKeyPem.trim());\n\n        X509EncodedKeySpec spec = new X509EncodedKeySpec(decoded);\n        KeyFactory keyFactory = KeyFactory.getInstance(\"RSA\");\n        return (RSAPublicKey) keyFactory.generatePublic(spec);\n    }\n\n    private RSAPrivateKey getPrivateKey() throws Exception {\n        log.debug(\"Private key {}\", privateKeyResource.getURI());\n        byte[] keyBytes = privateKeyResource.getInputStream().readAllBytes();\n        String privateKeyPEM = new String(keyBytes)\n            .replace(\"-----BEGIN PRIVATE KEY-----\", \"\")\n            .replace(\"-----END PRIVATE KEY-----\", \"\")\n            .replaceAll(\"\\\\s+\", \"\");\n\n        byte[] decoded = Base64.getDecoder().decode(privateKeyPEM);\n        PKCS8EncodedKeySpec spec = new PKCS8EncodedKeySpec(decoded);\n        KeyFactory keyFactory = KeyFactory.getInstance(\"RSA\");\n        return (RSAPrivateKey) keyFactory.generatePrivate(spec);\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/security/SecurityConfig.java",
    "content": "package org.springframework.samples.petclinic.security;\n\nimport com.nimbusds.jose.JOSEException;\nimport com.nimbusds.jose.jwk.JWKSet;\nimport com.nimbusds.jose.jwk.RSAKey;\nimport com.nimbusds.jose.jwk.source.JWKSource;\nimport com.nimbusds.jose.proc.SecurityContext;\nimport jakarta.servlet.DispatcherType;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.context.annotation.Bean;\nimport org.springframework.context.annotation.Configuration;\nimport org.springframework.core.env.Environment;\nimport org.springframework.http.HttpHeaders;\nimport org.springframework.samples.petclinic.auth.UserRepository;\nimport org.springframework.security.authentication.AuthenticationManager;\nimport org.springframework.security.authentication.ProviderManager;\nimport org.springframework.security.authentication.dao.DaoAuthenticationProvider;\nimport org.springframework.security.config.Customizer;\nimport org.springframework.security.config.annotation.method.configuration.EnableMethodSecurity;\nimport org.springframework.security.config.annotation.web.builders.HttpSecurity;\nimport org.springframework.security.config.annotation.web.configurers.AbstractHttpConfigurer;\nimport org.springframework.security.config.annotation.web.configurers.CsrfConfigurer;\nimport org.springframework.security.config.annotation.web.configurers.oauth2.server.resource.OAuth2ResourceServerConfigurer;\nimport org.springframework.security.config.http.SessionCreationPolicy;\nimport org.springframework.security.core.userdetails.UserDetailsService;\nimport org.springframework.security.core.userdetails.UsernameNotFoundException;\nimport org.springframework.security.oauth2.jwt.JwtDecoder;\nimport org.springframework.security.oauth2.jwt.JwtEncoder;\nimport org.springframework.security.oauth2.jwt.NimbusJwtDecoder;\nimport org.springframework.security.oauth2.jwt.NimbusJwtEncoder;\nimport org.springframework.security.oauth2.server.resource.web.BearerTokenResolver;\nimport org.springframework.security.oauth2.server.resource.web.DefaultBearerTokenResolver;\nimport org.springframework.security.web.SecurityFilterChain;\nimport org.springframework.web.cors.CorsConfiguration;\nimport org.springframework.web.cors.CorsConfigurationSource;\nimport org.springframework.web.cors.UrlBasedCorsConfigurationSource;\n\nimport java.util.Arrays;\n\n/**\n * Configures security for PetClinic. Ensures that all requests to /graphql are secured.\n *\n * @author Nils Hartmann (nils@nilshartmann.net)\n */\n@Configuration\n@EnableMethodSecurity(prePostEnabled = true, securedEnabled = true)\npublic class SecurityConfig {\n    private static final Logger log = LoggerFactory.getLogger(SecurityConfig.class);\n\n    private final RSAKey rsaKey;\n\n    public SecurityConfig(RSAKeyProvider RSAKeyProvider) {\n        this.rsaKey = RSAKeyProvider.getRsaKey();\n    }\n\n    @Bean\n    public AuthenticationManager authManager(UserDetailsService userDetailsService) {\n        var authProvider = new DaoAuthenticationProvider();\n        authProvider.setUserDetailsService(userDetailsService);\n        return new ProviderManager(authProvider);\n    }\n\n    @Bean\n    public UserDetailsService userDetailsService(UserRepository userRepository) {\n        return username -> userRepository\n            .findByUsername(username)\n            .orElseThrow(\n                () -> new UsernameNotFoundException(\n                    username\n                )\n            );\n    }\n\n    @Bean\n    public SecurityFilterChain filterChain(HttpSecurity http) throws Exception {\n        http.csrf(AbstractHttpConfigurer::disable);\n\n        http.sessionManagement(c -> c.sessionCreationPolicy(SessionCreationPolicy.STATELESS));\n\n        http.authorizeHttpRequests(authorizeHttpRequests ->\n            authorizeHttpRequests\n                .dispatcherTypeMatchers(DispatcherType.ERROR).permitAll()\n                // allow login\n                .requestMatchers(\"/api/login/**\").permitAll()\n//                // allow access to graphiql\n                .requestMatchers(\"/\").permitAll()\n                .requestMatchers(\"/favicon.ico\").permitAll()\n                .requestMatchers(\"/index.html\").permitAll()\n                .requestMatchers(\"/graphiql/**\").permitAll()\n                // ...while all other endpoints (INCLUDING /graphql !) should be authenticated\n                //    fine granular, Role-based, access checks are done in the resolver\n                .anyRequest().authenticated()\n        );\n\n        http.oauth2ResourceServer(c -> c.jwt(Customizer.withDefaults()));\n\n        return http.build();\n    }\n\n    @Bean\n    BearerTokenResolver bearerTokenResolver() {\n        DefaultBearerTokenResolver bearerTokenResolver = new DefaultBearerTokenResolver();\n        bearerTokenResolver.setAllowUriQueryParameter(true);\n        return bearerTokenResolver;\n    }\n\n    @Bean\n    public JWKSource<SecurityContext> jwkSource(RSAKeyProvider RSAKeyProvider) {\n        JWKSet jwkSet = new JWKSet(rsaKey);\n        return (jwkSelector, securityContext) -> jwkSelector.select(jwkSet);\n    }\n\n    @Bean\n    JwtEncoder jwtEncoder(JWKSource<SecurityContext> jwks) {\n        return new NimbusJwtEncoder(jwks);\n    }\n\n    @Bean\n    JwtDecoder jwtDecoder() throws JOSEException {\n        return NimbusJwtDecoder.withPublicKey(rsaKey.toRSAPublicKey()).build();\n    }\n}\n"
  },
  {
    "path": "backend/src/main/java/org/springframework/samples/petclinic/util/EntityUtils.java",
    "content": "/*\n * Copyright 2002-2013 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.springframework.samples.petclinic.util;\n\nimport java.time.LocalDate;\nimport java.time.ZoneId;\nimport java.util.Collection;\nimport java.util.Date;\n\nimport org.springframework.orm.ObjectRetrievalFailureException;\nimport org.springframework.samples.petclinic.model.BaseEntity;\n\n/**\n * Utility methods for handling entities. Separate from the BaseEntity class mainly because of dependency on the\n * ORM-associated ObjectRetrievalFailureException.\n *\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @see BaseEntity\n * @since 29.10.2003\n */\npublic abstract class EntityUtils {\n\n    /**\n     * Look up the entity of the given class with the given id in the given collection.\n     *\n     * @param entities    the collection to search\n     * @param entityClass the entity class to look up\n     * @param entityId    the entity id to look up\n     * @return the found entity\n     * @throws ObjectRetrievalFailureException if the entity was not found\n     */\n    public static <T extends BaseEntity> T getById(Collection<T> entities, Class<T> entityClass, int entityId)\n        throws ObjectRetrievalFailureException {\n        for (T entity : entities) {\n            if (entity.getId() == entityId && entityClass.isInstance(entity)) {\n                return entity;\n            }\n        }\n        throw new ObjectRetrievalFailureException(entityClass, entityId);\n    }\n\n    public static LocalDate asDateTime(Date date) {\n        return LocalDate.ofInstant(new Date(date.getTime()).toInstant(), ZoneId.systemDefault());\n\n    }\n\n}\n"
  },
  {
    "path": "backend/src/main/resources/application.properties",
    "content": "# DataSource configuration omitted,\n# as Spring Boot 3.1+ uses configuration from\n# docker-compose/TestContainer automatically\nspring.jpa.hibernate.ddl-auto=validate\n\nlogging.level.org.springframework.security=TRACE\nlogging.level.org.springframework.graphql=TRACE\nlogging.level.graphql=INFO\n\n\n\n#----------------------------------------------------------------\n# Server Configuration\n#----------------------------------------------------------------\nserver.port=9977\n\n#----------------------------------------------------------------\n# Logging\n#----------------------------------------------------------------\nlogging.level.org.springframework=INFO\n\n#----------------------------------------------------------------\n# Spring Security\n#----------------------------------------------------------------\nspring.security.filter.dispatcher-types=request,error\n# Note that in real life:\n# your would NEVER CHECK IN KEYS TO GIT (esp. no private keys)\n# This is only to make the demo easier:\n#  - no need to generate the keys yourself\n#  - ability to provide stable, long living tokens for easier (live) demos\n# NEVER check in your keys\n\npublicKey=classpath:keys/public_key.pem\nprivateKey=classpath:keys/private_key.pem\n\n#----------------------------------------------------------------\n# spring-graphql config\n#----------------------------------------------------------------\n# Note that we DO NOT use the embedded GraphiQL UI from\n# spring-graphql yet, because we use our own version\n# that contains a login form\n# Maybe we can switch to cookie-based authentication\n# later\nspring.graphql.graphiql.enabled=true\n\n# !!! For CORS configuration see SecurityConfig class !!!\n\n# GraphQL endpoints for Web and WebSocket requests\n# Note that this endpoints are accessible only with a\n# valid JWT token.\n# You can find a valid token after login with GraphiQL\n# or in the server log file after starting the server\n# (search for \"Never Expiring JWT Token\")\nspring.graphql.path=/graphql\nspring.graphql.websocket.path=/graphqlws\n\n"
  },
  {
    "path": "backend/src/main/resources/db/migration/V100_1__create_schema.sql",
    "content": "DROP TABLE IF EXISTS visits CASCADE;\nDROP TABLE IF EXISTS specialties CASCADE;\nDROP TABLE IF EXISTS vet_specialties CASCADE;\nDROP TABLE IF EXISTS vets CASCADE;\nDROP TABLE IF EXISTS pets CASCADE;\nDROP TABLE IF EXISTS types CASCADE;\nDROP TABLE IF EXISTS owners CASCADE;\nDROP TABLE IF EXISTS roles CASCADE;\nDROP TABLE IF EXISTS users CASCADE;\n\nCREATE TABLE users\n(\n    username VARCHAR(20)          NOT NULL,\n    password VARCHAR(20)          NOT NULL,\n    enabled  BOOLEAN DEFAULT TRUE NOT NULL,\n    fullname VARCHAR(256)         NOT NULL,\n    PRIMARY KEY (username)\n);\n\nCREATE TABLE roles\n(\n    id       integer generated by default as identity,\n    username VARCHAR(20) NOT NULL REFERENCES users (username),\n    role     VARCHAR(20) NOT NULL,\n    primary key (id)\n);\nCREATE INDEX fk_username_idx ON roles (username);\n\n\nCREATE TABLE vets\n(\n    id       integer generated by default as identity,\n    first_name VARCHAR(30),\n    last_name  VARCHAR(30),\n    primary key (id)\n);\nCREATE INDEX vets_last_name ON vets (last_name);\n\nCREATE TABLE specialties\n(\n    id       integer generated by default as identity,\n    name VARCHAR(80),\n    primary key (id)\n);\nCREATE INDEX specialties_name ON specialties (name);\n\nCREATE TABLE vet_specialties\n(\n    vet_id       INTEGER NOT NULL,\n    specialty_id INTEGER NOT NULL\n);\n\nalter table vet_specialties\n    add constraint vet_specialties_to_vet_fk\n        foreign key (vet_id)\n            references vets;\n\nalter table vet_specialties\n    add constraint vet_specialties_to_specialties_fk\n        foreign key (specialty_id)\n            references specialties;\n\nCREATE TABLE types\n(\n    id       integer generated by default as identity,\n    name VARCHAR(80),\n    primary key (id)\n);\nCREATE INDEX types_name ON types (name);\n\nCREATE TABLE owners\n(\n    id       integer generated by default as identity,\n    first_name VARCHAR(30),\n    last_name  VARCHAR(30),\n    address    VARCHAR(255),\n    city       VARCHAR(255),\n    telephone  VARCHAR(128),\n    primary key (id)\n);\nCREATE INDEX owners_last_name ON owners (lower(last_name));\n\nCREATE TABLE pets\n(\n    id       integer generated by default as identity,\n    name       VARCHAR(30),\n    birth_date DATE,\n    type_id    INTEGER NOT NULL REFERENCES types (id),\n    owner_id   INTEGER NOT NULL REFERENCES owners (id),\n    primary key (id)\n);\nCREATE INDEX pets_name ON pets (name);\n\nCREATE TABLE visits\n(\n    id       integer generated by default as identity,\n    pet_id      INTEGER NOT NULL REFERENCES pets (id),\n    vet_id      INTEGER REFERENCES vets (id),\n    visit_date  DATE,\n    description VARCHAR(255),\n    primary key (id)\n);\nCREATE INDEX visits_pet_id ON visits (pet_id);\n"
  },
  {
    "path": "backend/src/main/resources/db/migration/V100_2__fill_db.sql",
    "content": "INSERT INTO users (USERNAME, PASSWORD, ENABLED, FULLNAME) VALUES ('joe', '{noop}joe', true, 'Joe Hill');\nINSERT INTO users (USERNAME, PASSWORD, ENABLED, FULLNAME) VALUES ('susi', '{noop}susi', true, 'Susi Smith');\n\nINSERT INTO roles (ID, USERNAME, ROLE) VALUES (0, 'susi', 'MANAGER');\nINSERT INTO roles (ID, USERNAME, ROLE) VALUES (1, 'joe', 'USER');\n\nINSERT INTO vets VALUES (1, 'James', 'Carter');\nINSERT INTO vets VALUES (2, 'Helen', 'Leary');\nINSERT INTO vets VALUES (3, 'Linda', 'Douglas');\nINSERT INTO vets VALUES (4, 'Rafael', 'Ortega');\nINSERT INTO vets VALUES (5, 'Henry', 'Stevens');\nINSERT INTO vets VALUES (6, 'Sharon', 'Jenkins');\nINSERT INTO vets VALUES (7, 'John', 'Smith');\nINSERT INTO vets VALUES (8, 'Sophie', 'Dubois');\nINSERT INTO vets VALUES (9, 'Akira', 'Tanaka');\nINSERT INTO vets VALUES (10, 'Elena', 'Petrova');\n\nINSERT INTO specialties VALUES (1, 'radiology');\nINSERT INTO specialties VALUES (2, 'surgery');\nINSERT INTO specialties VALUES (3, 'dentistry');\n\nINSERT INTO vet_specialties VALUES (2, 1);\nINSERT INTO vet_specialties VALUES (3, 2);\nINSERT INTO vet_specialties VALUES (3, 3);\nINSERT INTO vet_specialties VALUES (4, 2);\nINSERT INTO vet_specialties VALUES (5, 1);\n\nINSERT INTO types VALUES (1, 'Cat');\nINSERT INTO types VALUES (2, 'Dog');\nINSERT INTO types VALUES (3, 'Lizard');\nINSERT INTO types VALUES (4, 'Snake');\nINSERT INTO types VALUES (5, 'Bird');\nINSERT INTO types VALUES (6, 'Hamster');\n\nINSERT INTO owners VALUES (1, 'George', 'Franklin', '110 W. Liberty St.', 'Madison', '6085551023');\nINSERT INTO owners VALUES (2, 'Betty', 'Davis', '638 Cardinal Ave.', 'Sun Prairie', '6085551749');\nINSERT INTO owners VALUES (3, 'Eduardo', 'Rodriquez', '2693 Commerce St.', 'McFarland', '6085558763');\nINSERT INTO owners VALUES (4, 'Harold', 'Davis', '563 Friendly St.', 'Windsor', '6085553198');\nINSERT INTO owners VALUES (5, 'Peter', 'McTavish', '2387 S. Fair Way', 'Madison', '6085552765');\nINSERT INTO owners VALUES (6, 'Jean', 'Coleman', '105 N. Lake St.', 'Monona', '6085552654');\nINSERT INTO owners VALUES (7, 'Jeff', 'Black', '1450 Oak Blvd.', 'Monona', '6085555387');\nINSERT INTO owners VALUES (8, 'Maria', 'Escobito', '345 Maple St.', 'Madison', '6085557683');\nINSERT INTO owners VALUES (9, 'David', 'Schroeder', '2749 Blackhawk Trail', 'Madison', '6085559435');\nINSERT INTO owners VALUES (10, 'Carlos', 'Estaban', '2335 Independence La.', 'Waunakee', '6085555487');\nINSERT INTO owners VALUES (11, 'John', 'Smith', '123 Main Street', 'New York', '+1 (555) 123-4567');\nINSERT INTO owners VALUES (12, 'Sophie', 'Dubois', '456 Rue de la Paix', 'Paris', '+33 6 12 34 56 78');\nINSERT INTO owners VALUES (13, 'Akira', 'Tanaka', '789 Sakura Avenue', 'Tokyo', '+81 90 1234 5678');\nINSERT INTO owners VALUES (14, 'Carlos', 'Rodriguez', '202 Avenida de Mayo', 'Buenos Aires', '+54 9 11 2345-6789');\nINSERT INTO owners VALUES (15, 'Anita', 'Müller', '303 Hauptstraße', 'Berlin', '+49 30 12345678');\nINSERT INTO owners VALUES (16, 'Ravi', 'Patel', '404 MG Road', 'Mumbai', '+91 98765 43210');\nINSERT INTO owners VALUES (17, 'Maria', 'da Silva', '505 Rua Augusta', 'São Paulo', '+55 11 98765-4321');\nINSERT INTO owners VALUES (18, 'Hans', 'Johansson', '606 Drottninggatan', 'Stockholm', '+46 70 123 45 67');\nINSERT INTO owners VALUES (19, 'Xi', 'Chen', '707 Nanjing Road', 'Shanghai', '+86 136 1234 5678');\nINSERT INTO owners VALUES (20, 'Alice', 'Johnson', '808 Park Avenue', 'Los Angeles', '+1 (555) 234-5678');\nINSERT INTO owners VALUES (21, 'François', 'Dupont', '909 Champs-Élysées', 'Paris', '+33 6 23 45 67 89');\nINSERT INTO owners VALUES (22, 'Yuki', 'Kato', '101 Ueno Park', 'Tokyo', '+81 90 2345 6789');\nINSERT INTO owners VALUES (23, 'Isabella', 'Gomez', '303 Tango Street', 'Buenos Aires', '+54 9 11 3456-7890');\nINSERT INTO owners VALUES (24, 'Lukas', 'Schmidt', '404 Brandenburger Tor', 'Berlin', '+49 30 23456789');\nINSERT INTO owners VALUES (25, 'Aarav', 'Sharma', '505 Bollywood Lane', 'Mumbai', '+91 98765 54321');\nINSERT INTO owners VALUES (26, 'Camila', 'Santos', '606 Copacabana Beach', 'Rio de Janeiro', '+55 21 98765-4321');\nINSERT INTO owners VALUES (27, 'Elsa', 'Larsson', '707 Abba Street', 'Stockholm', '+46 70 234 56 78');\nINSERT INTO owners VALUES (28, 'Lei', 'Wang', '808 Forbidden City', 'Beijing', '+86 136 2345 6789');\nINSERT INTO owners VALUES (29, 'Olivia', 'Miller', '909 Ocean Drive', 'Miami', '+1 (555) 345-6789');\nINSERT INTO owners VALUES (30, 'Antoine', 'Dufresne', '101 Montmartre Avenue', 'Paris', '+33 6 34 56 78 90');\nINSERT INTO owners VALUES (31, 'Takashi', 'Yamamoto', '202 Ginza Street', 'Tokyo', '+81 90 3456 7890');\nINSERT INTO owners VALUES (32, 'Sofia', 'Ivanova', '303 Nevsky Prospect', 'St. Petersburg', '+7 495 345-67-89');\nINSERT INTO owners VALUES (33, 'Diego', 'Lopez', '404 Tango Avenue', 'Buenos Aires', '+54 9 11 4567-8901');\nINSERT INTO owners VALUES (34, 'Lena', 'Müller', '505 Oktoberfest Platz', 'Munich', '+49 30 34567890');\nINSERT INTO owners VALUES (35, 'Amit', 'Kumar', '606 Bollywood Boulevard', 'Mumbai', '+91 98765 65432');\nINSERT INTO owners VALUES (36, 'Giovanna', 'Silva', '707 Samba Street', 'Rio de Janeiro', '+55 21 98765-5432');\nINSERT INTO owners VALUES (37, 'Emil', 'Eriksson', '808 Viking Road', 'Gothenburg', '+46 70 345 67 89');\nINSERT INTO owners VALUES (38, 'Wei', 'Zhang', '909 Great Wall Street', 'Beijing', '+86 136 3456 7890');\nINSERT INTO owners VALUES (39, 'Emma', 'Williams', '101 Broadway', 'New York', '+1 (555) 456-7890');\nINSERT INTO owners VALUES (40, 'Lucien', 'Martin', '202 Louvre Lane', 'Paris', '+33 6 45 67 89 01');\nINSERT INTO owners VALUES (41, 'Aiko', 'Takahashi', '303 Mt. Fuji View', 'Tokyo', '+81 90 4567 8901');\nINSERT INTO owners VALUES (42, 'Mateo', 'Garcia', '505 Tango Terrace', 'Buenos Aires', '+54 9 11 5678-9012');\nINSERT INTO owners VALUES (43, 'Lotte', 'Schneider', '606 Black Forest Street', 'Freiburg', '+49 30 45678901');\nINSERT INTO owners VALUES (44, 'Arjun', 'Singh', '707 Bollywood Drive', 'Mumbai', '+91 98765 76543');\nINSERT INTO owners VALUES (45, 'Juliana', 'Rodrigues', '808 Ipanema Beach', 'Rio de Janeiro', '+55 21 98765-6543');\nINSERT INTO owners VALUES (46, 'Oskar', 'Lindgren', '909 Fika Lane', 'Stockholm', '+46 70 456 78 90');\nINSERT INTO owners VALUES (47, 'Jing', 'Li', '101 Forbidden Palace Avenue', 'Beijing', '+86 136 4567 8901');\nINSERT INTO owners VALUES (48, 'Liam', 'Anderson', '202 Golden Gate Street', 'San Francisco', '+1 (555) 567-8901');\nINSERT INTO owners VALUES (49, 'Isabelle', 'Leclerc', '303 Seine River View', 'Paris', '+33 6 56 78 90 12');\nINSERT INTO owners VALUES (50, 'Yoshiro', 'Suzuki', '404 Asakusa Street', 'Tokyo', '+81 90 5678 9012');\nINSERT INTO owners VALUES (51, 'Polina', 'Petrovich', '505 Hermitage Plaza', 'St. Petersburg', '+7 495 567-89-01');\nINSERT INTO owners VALUES (52, 'Mariana', 'Fernandez', '606 Tango Square', 'Buenos Aires', '+54 9 11 6789-0123');\nINSERT INTO owners VALUES (53, 'Matteo', 'Weber', '707 Alpine Avenue', 'Munich', '+49 30 56789012');\nINSERT INTO owners VALUES (54, 'Anaya', 'Singh', '808 Gateway Street', 'Mumbai', '+91 98765 87654');\nINSERT INTO owners VALUES (55, 'Luca', 'Carvalho', '909 Carnival Road', 'Rio de Janeiro', '+55 21 98765-7654');\nINSERT INTO owners VALUES (56, 'Hugo', 'Nordström', '101 Ice Hotel Lane', 'Kiruna', '+46 70 567 89 01');\nINSERT INTO owners VALUES (57, 'Mei', 'Liu', '202 Great Wall Lane', 'Beijing', '+86 136 5678 9012');\n\nINSERT INTO pets VALUES (1, 'Leo', '2010-09-07', 1, 1);\nINSERT INTO pets VALUES (2, 'Basil', '2012-08-06', 6, 2);\nINSERT INTO pets VALUES (3, 'Rosy', '2011-04-17', 2, 3);\nINSERT INTO pets VALUES (4, 'Jewel', '2010-03-07', 2, 3);\nINSERT INTO pets VALUES (5, 'Iggy', '2010-11-30', 3, 4);\nINSERT INTO pets VALUES (6, 'George', '2010-01-20', 4, 5);\nINSERT INTO pets VALUES (7, 'Samantha', '2012-09-04', 1, 6);\nINSERT INTO pets VALUES (8, 'Max', '2012-09-04', 1, 6);\nINSERT INTO pets VALUES (9, 'Lucky', '2011-08-06', 5, 7);\nINSERT INTO pets VALUES (10, 'Mulligan', '2007-02-24', 2, 8);\nINSERT INTO pets VALUES (11, 'Freddy', '2010-03-09', 5, 9);\nINSERT INTO pets VALUES (12, 'Lucky', '2010-06-24', 2, 10);\nINSERT INTO pets VALUES (13, 'Sly', '2012-06-08', 1, 10);\nINSERT INTO pets VALUES (14, 'Bella', '1992-06-20', 1, 11);\nINSERT INTO pets VALUES (15, 'Luna', '2002-10-29', 2, 12);\nINSERT INTO pets VALUES (16, 'Charlie', '2017-08-13', 3, 13);\nINSERT INTO pets VALUES (17, 'Lucy', '2016-09-29', 4, 14);\nINSERT INTO pets VALUES (18, 'Cooper', '1984-02-27', 5, 15);\nINSERT INTO pets VALUES (19, 'Max', '1975-01-25', 6, 16);\nINSERT INTO pets VALUES (20, 'Bailey', '2007-10-03', 1, 17);\nINSERT INTO pets VALUES (21, 'Daisy', '1993-01-16', 2, 18);\nINSERT INTO pets VALUES (22, 'Sadie', '2020-08-05', 3, 19);\nINSERT INTO pets VALUES (23, 'Lola', '2017-08-03', 4, 20);\nINSERT INTO pets VALUES (24, 'Buddy', '2015-06-21', 5, 21);\nINSERT INTO pets VALUES (25, 'Molly', '2001-03-10', 6, 22);\nINSERT INTO pets VALUES (26, 'Stella', '2008-03-27', 1, 23);\nINSERT INTO pets VALUES (27, 'Tucker', '2009-11-22', 2, 24);\nINSERT INTO pets VALUES (28, 'Bear', '1973-01-02', 3, 25);\nINSERT INTO pets VALUES (29, 'Zoey', '2015-10-04', 4, 26);\nINSERT INTO pets VALUES (30, 'Duke', '1993-06-25', 5, 27);\nINSERT INTO pets VALUES (31, 'Harley', '1991-09-28', 6, 28);\nINSERT INTO pets VALUES (32, 'Maggie', '2001-09-25', 1, 29);\nINSERT INTO pets VALUES (33, 'Jax', '1980-08-18', 2, 30);\nINSERT INTO pets VALUES (34, 'Bentley', '1993-02-01', 3, 31);\nINSERT INTO pets VALUES (35, 'Milo', '1990-07-21', 4, 32);\nINSERT INTO pets VALUES (36, 'Oliver', '1992-11-21', 5, 33);\nINSERT INTO pets VALUES (37, 'Riley', '2013-03-09', 6, 34);\nINSERT INTO pets VALUES (38, 'Rocky', '1978-07-27', 1, 35);\nINSERT INTO pets VALUES (39, 'Penny', '1998-02-05', 2, 36);\nINSERT INTO pets VALUES (40, 'Sophie', '1995-03-15', 3, 37);\nINSERT INTO pets VALUES (41, 'Chloe', '2003-07-11', 4, 38);\nINSERT INTO pets VALUES (42, 'Jack', '2006-03-22', 5, 39);\nINSERT INTO pets VALUES (43, 'Lily', '2002-01-30', 6, 40);\nINSERT INTO pets VALUES (44, 'Nala', '1983-02-13', 1, 41);\nINSERT INTO pets VALUES (45, 'Piper', '2017-09-04', 2, 42);\nINSERT INTO pets VALUES (46, 'Zeus', '1974-03-01', 3, 43);\nINSERT INTO pets VALUES (47, 'Ellie', '2000-04-21', 4, 44);\nINSERT INTO pets VALUES (48, 'Winston', '2007-02-06', 5, 45);\nINSERT INTO pets VALUES (49, 'Toby', '2008-12-11', 6, 46);\nINSERT INTO pets VALUES (50, 'Loki', '2011-01-22', 1, 47);\nINSERT INTO pets VALUES (51, 'Murphy', '1992-06-12', 2, 48);\nINSERT INTO pets VALUES (52, 'Roxy', '1985-01-15', 3, 49);\nINSERT INTO pets VALUES (53, 'Coco', '1977-06-20', 4, 50);\nINSERT INTO pets VALUES (54, 'Rosie', '2004-09-30', 5, 51);\nINSERT INTO pets VALUES (55, 'Teddy', '2017-03-11', 6, 52);\nINSERT INTO pets VALUES (56, 'Ruby', '2001-02-14', 1, 53);\nINSERT INTO pets VALUES (57, 'Gracie', '1993-02-20', 2, 54);\nINSERT INTO pets VALUES (58, 'Leo', '1987-02-03', 3, 55);\nINSERT INTO pets VALUES (59, 'Finn', '2005-03-07', 4, 56);\nINSERT INTO pets VALUES (60, 'Scout', '1975-10-19', 5, 57);\nINSERT INTO pets VALUES (61, 'Dexter', '1983-04-25', 6, 11);\nINSERT INTO pets VALUES (62, 'Ollie', '1997-10-20', 1, 12);\nINSERT INTO pets VALUES (63, 'Koda', '1993-01-24', 2, 13);\nINSERT INTO pets VALUES (64, 'Diesel', '1993-04-19', 3, 14);\nINSERT INTO pets VALUES (65, 'Moose', '2012-10-14', 4, 15);\nINSERT INTO pets VALUES (66, 'Mia', '2016-11-24', 5, 16);\nINSERT INTO pets VALUES (67, 'Marley', '1978-02-18', 6, 17);\nINSERT INTO pets VALUES (68, 'Gus', '2001-06-30', 1, 18);\nINSERT INTO pets VALUES (69, 'Hank', '2015-10-14', 2, 19);\nINSERT INTO pets VALUES (70, 'Willow', '2006-09-02', 3, 20);\n\n\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (1, 7, 4, '2013-01-01', 'rabies shot');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (2, 8, NULL, '2013-01-02', 'rabies shot');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (3, 8, 4, '2013-01-03', 'neutered');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (4, 7, NULL, '2013-01-04', 'spayed');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (5, 14, 7, '2022-01-15', 'Vaccination Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (6, 15, 8, '2022-03-27', 'Teeth Cleaning');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (7, 16, 9, '2022-05-10', 'Orthopedic X-rays');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (8, 17, 10, '2022-07-18', 'Blood Tests');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (9, 18, 7, '2022-09-05', 'Abdominal Ultrasound');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (10, 19, 8, '2022-11-11', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (11, 20, 9, '2023-01-02', 'Dental Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (12, 21, 10, '2023-03-14', 'Eye Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (13, 22, 7, '2023-05-26', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (14, 23, 8, '2023-08-01', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (15, 24, 9, '2023-10-09', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (16, 25, 10, '2023-12-20', 'Microchipping');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (17, 26, 7, '2024-02-01', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (18, 27, 8, '2024-04-12', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (19, 28, 9, '2024-06-25', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (20, 29, 10, '2024-08-08', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (21, 30, 7, '2024-10-19', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (22, 31, 8, '2024-12-03', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (23, 32, 9, '2022-02-18', 'Flea and Tick Prevention');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (24, 33, 10, '2022-04-30', 'Deworming');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (25, 34, 7, '2022-06-15', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (26, 35, 8, '2022-08-23', 'MRI');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (27, 36, 9, '2022-10-05', 'EKG');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (28, 37, 10, '2022-12-11', 'Nutritional Counseling');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (29, 38, 7, '2023-02-22', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (30, 39, 8, '2023-04-06', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (31, 40, 9, '2023-06-18', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (32, 41, 10, '2023-08-30', 'Blood Clotting Profile');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (33, 42, 7, '2023-11-06', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (34, 43, 8, '2024-01-19', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (35, 44, 9, '2024-03-02', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (36, 45, 10, '2024-05-15', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (37, 46, 7, '2024-07-27', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (38, 47, 8, '2024-10-02', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (39, 48, 9, '2024-12-14', 'Dental Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (40, 49, 10, '2022-01-27', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (41, 50, 7, '2022-04-09', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (42, 51, 8, '2022-06-22', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (43, 52, 9, '2022-08-05', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (44, 53, 10, '2022-10-17', 'MRI');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (45, 54, 7, '2022-12-28', 'EKG');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (46, 55, 8, '2023-03-10', 'Nutritional Counseling');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (47, 56, 9, '2023-05-23', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (48, 57, 10, '2023-08-01', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (49, 58, 7, '2023-10-13', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (50, 59, 8, '2023-12-24', 'Blood Clotting Profile');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (51, 60, 9, '2024-02-03', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (52, 61, 10, '2024-04-16', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (53, 62, 7, '2024-06-29', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (54, 63, 8, '2024-09-11', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (55, 64, 9, '2024-11-23', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (56, 65, 10, '2022-02-21', 'Microchipping');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (57, 66, 7, '2022-05-06', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (58, 67, 8, '2022-07-18', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (59, 68, 9, '2022-09-29', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (60, 69, 10, '2022-12-11', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (61, 70, 7, '2023-02-01', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (62, 14, 8, '2023-04-15', 'MRI');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (63, 15, 9, '2023-06-27', 'EKG');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (64, 16, 10, '2023-09-10', 'Nutritional Counseling');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (65, 17, 7, '2023-11-22', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (66, 18, 8, '2024-02-06', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (67, 19, 9, '2024-05-19', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (68, 20, 10, '2024-07-31', 'Blood Clotting Profile');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (69, 21, 7, '2024-10-11', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (70, 22, 8, '2022-02-27', 'Dental Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (71, 23, 9, '2022-05-11', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (72, 24, 10, '2022-07-24', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (73, 25, 7, '2022-10-05', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (74, 26, 8, '2022-12-16', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (75, 27, 9, '2023-02-26', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (76, 28, 10, '2023-05-09', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (77, 29, 7, '2023-07-22', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (78, 30, 8, '2023-10-03', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (79, 31, 9, '2023-12-15', 'MRI');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (80, 32, 10, '2024-02-26', 'EKG');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (81, 33, 7, '2024-05-09', 'Nutritional Counseling');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (82, 34, 8, '2024-07-22', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (83, 35, 9, '2024-10-03', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (84, 36, 10, '2024-12-15', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (85, 37, 7, '2022-04-02', 'Blood Clotting Profile');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (86, 38, 8, '2022-06-15', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (87, 39, 9, '2022-08-28', 'Dental Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (88, 40, 10, '2022-11-09', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (89, 41, 7, '2023-01-21', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (90, 42, 8, '2023-04-05', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (91, 43, 9, '2023-06-17', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (92, 44, 10, '2023-08-30', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (93, 45, 7, '2023-11-11', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (94, 46, 8, '2024-02-03', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (95, 47, 9, '2024-04-18', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (96, 48, 10, '2024-07-01', 'MRI');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (97, 49, 7, '2024-09-14', 'EKG');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (98, 50, 8, '2024-11-26', 'Nutritional Counseling');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (99, 51, 9, '2022-01-30', 'Joint Aspiration');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (100, 52, 10, '2022-04-14', 'Cancer Screening');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (101, 53, 7, '2022-06-26', 'Glaucoma Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (102, 54, 8, '2022-09-08', 'Blood Clotting Profile');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (103, 55, 9, '2022-11-21', 'Orthopedic Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (104, 56, 10, '2023-02-02', 'Dental Checkup');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (105, 57, 7, '2023-04-16', 'Fecal Analysis');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (106, 58, 8, '2023-06-29', 'Heartworm Test');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (107, 59, 9, '2023-09-10', 'Skin Biopsy');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (108, 60, 10, '2023-11-23', 'Spaying/Neutering');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (109, 61, 7, '2024-02-05', 'Ear Examination');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (110, 62, 8, '2024-04-18', 'Blood Pressure Measurement');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (111, 63, 9, '2024-06-29', 'Allergy Testing');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (112, 64, 10, '2024-09-11', 'CT Scan');\nINSERT INTO visits (id, pet_id, vet_id, visit_date, description) VALUES (113, 65, 7, '2024-11-23', 'MRI');\n\n\nALTER SEQUENCE roles_id_seq RESTART WITH 200;\nALTER SEQUENCE vets_id_seq RESTART WITH 200;\nALTER SEQUENCE specialties_id_seq RESTART WITH 200;\nALTER SEQUENCE types_id_seq RESTART WITH 200;\nALTER SEQUENCE owners_id_seq RESTART WITH 200;\nALTER SEQUENCE pets_id_seq RESTART WITH 200;\nALTER SEQUENCE visits_id_seq RESTART WITH 200;\n"
  },
  {
    "path": "backend/src/main/resources/graphql/petclinic.graphqls",
    "content": "# This file was generated. Do not edit manually.\n\nschema {\n    query: Query\n    mutation: Mutation\n    subscription: Subscription\n}\n\n\"Interface that describes a Person, i.e. a Vet or an Owner\"\ninterface Person {\n    firstName: String!\n    id: Int!\n    lastName: String!\n}\n\nunion AddVetPayload = AddVetErrorPayload | AddVetSuccessPayload\n\ntype AddOwnerPayload {\n    owner: Owner!\n}\n\ntype AddPetPayload {\n    pet: Pet!\n}\n\n\"Return Value of the addSpecialty Mutation\"\ntype AddSpecialtyPayload {\n    \"The new Specialty including the assigned Id\"\n    specialty: Specialty!\n}\n\ntype AddVetErrorPayload {\n    error: String!\n}\n\ntype AddVetSuccessPayload {\n    vet: Vet\n}\n\ntype AddVisitPayload {\n    visit: Visit!\n}\n\n\"\"\"\nFor motivation of how the Mutation look see:\nhttps://dev-blog.apollodata.com/designing-graphql-mutations-e09de826ed97\n\"\"\"\ntype Mutation {\n    \" Add a new Owner\"\n    addOwner(input: AddOwnerInput!): AddOwnerPayload!\n    \" Add a new Pet\"\n    addPet(input: AddPetInput!): AddPetPayload!\n    \" Add a Specialty\"\n    addSpecialty(input: AddSpecialtyInput!): AddSpecialtyPayload!\n    \" Add a new Veterinary (only allowed for users having Role ROLE_MANAGER)\"\n    addVet(input: AddVetInput!): AddVetPayload!\n    \" Add a Visit\"\n    addVisit(input: AddVisitInput!): AddVisitPayload!\n    removeSpecialty(input: RemoveSpecialtyInput!): RemoveSpecialtyPayload!\n    \" Change an existing owner\"\n    updateOwner(input: UpdateOwnerInput!): UpdateOwnerPayload!\n    updatePet(input: UpdatePetInput!): UpdatePetPayload!\n    \" Update (rename) a Specialty\"\n    updateSpecialty(input: UpdateSpecialtyInput!): UpdateSpecialtyPayload!\n}\n\n\" An Owner is someone who owns a Pet\"\ntype Owner implements Person {\n    address: String!\n    city: String!\n    firstName: String!\n    id: Int!\n    lastName: String!\n    \" A list of Pets this Owner owns\"\n    pets: [Pet!]!\n    telephone: String!\n}\n\n\"\"\"\nA pet that might or might not have been seen in this petclinic for\none or more visits\n\"\"\"\ntype Pet {\n    birthDate: Date!\n    id: Int!\n    name: String!\n    owner: Owner!\n    type: PetType!\n    \" All visits to our PetClinic of this Pet\"\n    visits: VisitConnection!\n}\n\n\" The type (species) of a Pet\"\ntype PetType {\n    id: Int!\n    name: String!\n}\n\ntype OwnerConnection {\n    edges: [OwnerEdge]!\n    pageInfo: PageInfo!\n}\n\ntype OwnerEdge {\n    node: Owner!\n    cursor: String!\n}\n\ntype VetConnection {\n    edges: [VetEdge]!\n    pageInfo: PageInfo!\n}\n\ntype VetEdge {\n    node: Vet!\n    cursor: String!\n}\n\ntype PageInfo {\n    hasPreviousPage: Boolean!\n    hasNextPage: Boolean!\n    startCursor: String\n    endCursor: String\n}\n\n\" The Query type provides all entry points to the PetClinic GraphQL schema\"\ntype Query {\n    me: User!\n    \" Return the Owner with the specified id\"\n    owner(id: Int!): Owner!\n\n    # Note: OwnerConnection and all required types (Edge and PageInfo) could be\n    #       added by Spring for GraphQL at runtime to the schema.\n    #       Disadvantage is, that tooling has problems (Code Generator, IntelliJ plug-in)\n    #       so I deceided to hand code the types instead.\n    #       Nevertheless there is no need forJava classes for the Connection and dependent types,\n    #       because Spring for GraphQL does the mapping for us.\n    #\n    # Note: first, after, last and before are automatically processed by Spring for GraphQL\n    #       and are passed with a ScrollSubrange object to the QueryMapping function\n    #\n    #\n    \"\"\"\n    Find a list of owners according to the specified position, filter and order\n\n    Note that you either have to specify first _or_ last\n    \"\"\"\n    owners(first:Int, after:String, last:Int, before:String,\n        \"Use a filter to narrow your search results\"\n        filter: OwnerFilter,\n        order: [OwnerOrder!]): OwnerConnection!\n\n    # owners(filter: OwnerFilter, orders: [OwnerOrder!], page: Int, size: Int): OwnerSearchResult!\n    \" Return the Pet with the specified id\"\n    pet(id: Int!): Pet\n    \" Return a List of all pets that have been registered in the PetClinic\"\n    pets: [Pet!]!\n    \" Return all known PetTypes\"\n    pettypes: [PetType!]!\n    \" Returns 'pong', can be used to verify GraphQL API is working\"\n    ping: String!\n    specialties: [Specialty!]!\n    \" Return the specified Vet or null if undefined\"\n    vet(id: Int!): Vet\n    \" Return all known veterinaries\"\n    vets(first:Int, after:String, last:Int, before:String): VetConnection!\n}\n\ntype RemoveSpecialtyPayload {\n    specialties: [Specialty!]!\n}\n\n\" Specialty of a Vetenarian\"\ntype Specialty {\n    id: Int!\n    name: String!\n}\n\ntype Subscription {\n    onNewVisit: Visit!\n}\n\ntype UpdateOwnerPayload {\n    owner: Owner!\n}\n\ntype UpdatePetPayload {\n    pet: Pet!\n}\n\n\" Return value of the UpdateSpecialty Mutation\"\ntype UpdateSpecialtyPayload {\n    \" The updated Specialty\"\n    specialty: Specialty!\n}\n\ntype User {\n    fullname: String!\n    username: String!\n}\n\n\" A Vetenerian\"\ntype Vet implements Person {\n    \" The Vetenarian's first name\"\n    firstName: String!\n    id: Int!\n    \" The Vetenarian's last name\"\n    lastName: String!\n    \" What is this Vet specialized in?\"\n    specialties: [Specialty!]!\n    \" All of this Vet's visits\"\n    visits: VisitConnection!\n}\n\n\" A Visit of a Pet in our PetClinic\"\ntype Visit {\n    \" When did this Visit happen?\"\n    date: Date!\n    \" What did the Vet do during the Visit?\"\n    description: String!\n    id: Int!\n    pet: Pet!\n    \" Optional: which veterinary has done this treatment?\"\n    treatingVet: Vet\n}\n\ntype VisitConnection {\n    \" total number of visits this VisitConnection represents\"\n    totalCount: Int!\n    \" the actual visits (might be an empty list)\"\n    visits: [Visit!]!\n}\n\n\" The input for types of query orders\"\nenum OrderField {\n    address\n    city\n    firstName\n    id\n    lastName\n    telephone\n}\n\n\" The input for types of query orders\"\nenum OrderDirection {\n    ASC\n    DESC\n}\n\n\"A Type representing a date (without time, only a day)\"\nscalar Date\n\ninput AddOwnerInput {\n    address: String!\n    city: String!\n    firstName: String!\n    lastName: String!\n    telephone: String!\n}\n\n\" The Input for AddPet mutation\"\ninput AddPetInput {\n    birthDate: Date!\n    name: String!\n    ownerId: Int!\n    typeId: Int!\n}\n\n\" The input value for the addSpecialty Mutation\"\ninput AddSpecialtyInput {\n    name: String!\n}\n\ninput AddVetInput {\n    firstName: String!\n    lastName: String!\n    specialtyIds: [Int!]!\n}\n\ninput AddVisitInput {\n    date: Date!\n    description: String!\n    petId: Int!\n    \" Optional: specifiy the vet that should lead this visit\"\n    vetId: Int\n}\n\n\" The input for owners query by a filter\"\ninput OwnerFilter {\n    address: String\n    city: String\n    firstName: String\n    lastName: String\n    telephone: String\n}\n\n\" The input for owners query by order\"\ninput OwnerOrder {\n    field: OrderField!\n    direction: OrderDirection = ASC\n}\n\ninput RemoveSpecialtyInput {\n    specialtyId: Int!\n}\n\ninput UpdateOwnerInput {\n    address: String\n    city: String\n    firstName: String\n    lastName: String\n    ownerId: Int!\n    telephone: String\n}\n\ninput UpdatePetInput {\n    birthDate: Date\n    name: String\n    petId: Int!\n    typeId: Int\n}\n\n\"\"\"\n\nThe input value for the updateSpecialty Mutation\nTakes the id of the specialty that should be updated and it's new Name\n\"\"\"\ninput UpdateSpecialtyInput {\n    \" The new name of the Specialty\"\n    name: String!\n    \" The id of the specialty that should be updated\"\n    specialtyId: Int!\n}\n"
  },
  {
    "path": "backend/src/main/resources/keys/private_key.pem",
    "content": "-----BEGIN PRIVATE KEY-----\n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\nKyiIFYXpGT1XeTyWb9yDdzUUc0gXsQ==\n-----END PRIVATE KEY-----\n"
  },
  {
    "path": "backend/src/main/resources/keys/public_key.pem",
    "content": "-----BEGIN PUBLIC KEY-----\nMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAppdvfgBrZTIOMDJeHoLU\nt5ZmKTZ/ApSuIBHUz0+VJBKikwsMT3UIvgMMFNDVm5rpna9KyXPZMvk0V8Je9wTn\nrAw5ITjj1WUeu7YSnKGAAzXagpH/Y9D2FAN9oZK6xFGKLBGUsJs3JkeS0RpR2zwk\nZdawwooevWHxoTiT3QKSC8pluaJQmQfi93hJ3CXgmSHAqsREVvSUxhJyWWa6GNIm\naYSV7y4xrOpfbV2ibxEXK0+2Z7SkLJYnrqB64Pc4CNtBirWLN79cL/y43NS6DO+a\nkJ+ihc+tRGub6zrsxt0Inpqr6mXrzZYSZirVst9fUZF3V4BT06c8Q0lVIb83LXH5\nKF7UUA9ruhOZ+dzrDiSp6BM6HZXuMpg1w3J9OsljoFO2p948YjqgPh72toW+FN4F\n9jgLAdueu88MKNtpcd0UvRaLLlAsld+Q9wCR48ul1/apLnaleS8v4CYNH9N7kLwc\nyz0LviUQmH1WNMhscTN+V5k0oExCoOVu0Eg6869FA6Gz6dBK9ssBUN8+ZW5PGeEM\nOZ1yewlJmWmV8/nMj8Cch3mxqgcFxfjwXXAA9daIZFEuf+qJuyfonJo77n/3UHTs\nuDEx7BPNXZoffw+f6OuM14y2pvjrVkZKERa27HFqHJW2M2dD29Cd5XL1LdeJUDQw\nbXDm/A+pxsunoA/2EHXvXAMCAwEAAQ==\n-----END PUBLIC KEY-----\n"
  },
  {
    "path": "backend/src/main/resources/readme-graphiql.md",
    "content": "# Custom GraphiQL build\n\nInside `graphiql` is a custom graphiql build that is built from `petclinic-graphiql` and then copied\ninto `graphiql/`.\n\nIn a real project you maybe would not add the built version to source control but to add it to `classes/...` during\nthe build process.\n\nHere I added the built graphiql code to Git because I don't want to force every to setup the JavaScript-based build for the\nGraphiQL frontend. If you don't care about the JavaScript-parts of this example project (frontend/graphiql) you can just\nrun the backend and use(the customized) GraphiQL anyway.\n"
  },
  {
    "path": "backend/src/main/resources/testdata/owners.csv",
    "content": "FirstName,LastName,Street,City,PhoneNumber\nJohn,Smith,123 Main Street,New York,+1 (555) 123-4567\nSophie,Dubois,456 Rue de la Paix,Paris,+33 6 12 34 56 78\nAkira,Tanaka,789 Sakura Avenue,Tokyo,+81 90 1234 5678\nCarlos,Rodriguez,202 Avenida de Mayo,Buenos Aires,+54 9 11 2345-6789\nAnita,Müller,303 Hauptstraße,Berlin,+49 30 12345678\nRavi,Patel,404 MG Road,Mumbai,+91 98765 43210\nMaria,da Silva,505 Rua Augusta,São Paulo,+55 11 98765-4321\nHans,Johansson,606 Drottninggatan,Stockholm,+46 70 123 45 67\nXi,Chen,707 Nanjing Road,Shanghai,+86 136 1234 5678\nAlice,Johnson,808 Park Avenue,Los Angeles,+1 (555) 234-5678\nFrançois,Dupont,909 Champs-Élysées,Paris,+33 6 23 45 67 89\nYuki,Kato,101 Ueno Park,Tokyo,+81 90 2345 6789\nIsabella,Gomez,303 Tango Street,Buenos Aires,+54 9 11 3456-7890\nLukas,Schmidt,404 Brandenburger Tor,Berlin,+49 30 23456789\nAarav,Sharma,505 Bollywood Lane,Mumbai,+91 98765 54321\nCamila,Santos,606 Copacabana Beach,Rio de Janeiro,+55 21 98765-4321\nElsa,Larsson,707 Abba Street,Stockholm,+46 70 234 56 78\nLei,Wang,808 Forbidden City,Beijing,+86 136 2345 6789\nOlivia,Miller,909 Ocean Drive,Miami,+1 (555) 345-6789\nAntoine,Dufresne,101 Montmartre Avenue,Paris,+33 6 34 56 78 90\nTakashi,Yamamoto,202 Ginza Street,Tokyo,+81 90 3456 7890\nSofia,Ivanova,303 Nevsky Prospect,St. Petersburg,+7 495 345-67-89\nDiego,Lopez,404 Tango Avenue,Buenos Aires,+54 9 11 4567-8901\nLena,Müller,505 Oktoberfest Platz,Munich,+49 30 34567890\nAmit,Kumar,606 Bollywood Boulevard,Mumbai,+91 98765 65432\nGiovanna,Silva,707 Samba Street,Rio de Janeiro,+55 21 98765-5432\nEmil,Eriksson,808 Viking Road,Gothenburg,+46 70 345 67 89\nWei,Zhang,909 Great Wall Street,Beijing,+86 136 3456 7890\nEmma,Williams,101 Broadway,New York,+1 (555) 456-7890\nLucien,Martin,202 Louvre Lane,Paris,+33 6 45 67 89 01\nAiko,Takahashi,303 Mt. Fuji View,Tokyo,+81 90 4567 8901\nMateo,Garcia,505 Tango Terrace,Buenos Aires,+54 9 11 5678-9012\nLotte,Schneider,606 Black Forest Street,Freiburg,+49 30 45678901\nArjun,Singh,707 Bollywood Drive,Mumbai,+91 98765 76543\nJuliana,Rodrigues,808 Ipanema Beach,Rio de Janeiro,+55 21 98765-6543\nOskar,Lindgren,909 Fika Lane,Stockholm,+46 70 456 78 90\nJing,Li,101 Forbidden Palace Avenue,Beijing,+86 136 4567 8901\nLiam,Anderson,202 Golden Gate Street,San Francisco,+1 (555) 567-8901\nIsabelle,Leclerc,303 Seine River View,Paris,+33 6 56 78 90 12\nYoshiro,Suzuki,404 Asakusa Street,Tokyo,+81 90 5678 9012\nPolina,Petrovich,505 Hermitage Plaza,St. Petersburg,+7 495 567-89-01\nMariana,Fernandez,606 Tango Square,Buenos Aires,+54 9 11 6789-0123\nMatteo,Weber,707 Alpine Avenue,Munich,+49 30 56789012\nAnaya,Singh,808 Gateway Street,Mumbai,+91 98765 87654\nLuca,Carvalho,909 Carnival Road,Rio de Janeiro,+55 21 98765-7654\nHugo,Nordström,101 Ice Hotel Lane,Kiruna,+46 70 567 89 01\nMei,Liu,202 Great Wall Lane,Beijing,+86 136 5678 9012\n"
  },
  {
    "path": "backend/src/main/resources/testdata/pets.csv",
    "content": "birthdate,name\n1992-06-20,Bella\n2002-10-29,Luna\n2017-08-13,Charlie\n2016-09-29,Lucy\n1984-02-27,Cooper\n1975-01-25,Max\n2007-10-03,Bailey\n1993-01-16,Daisy\n2020-08-05,Sadie\n2017-08-03,Lola\n2015-06-21,Buddy\n2001-03-10,Molly\n2008-03-27,Stella\n2009-11-22,Tucker\n1973-01-02,Bear\n2015-10-04,Zoey\n1993-06-25,Duke\n1991-09-28,Harley\n2001-09-25,Maggie\n1980-08-18,Jax\n1993-02-01,Bentley\n1990-07-21,Milo\n1992-11-21,Oliver\n2013-03-09,Riley\n1978-07-27,Rocky\n1998-02-05,Penny\n1995-03-15,Sophie\n2003-07-11,Chloe\n2006-03-22,Jack\n2002-01-30,Lily\n1983-02-13,Nala\n2017-09-04,Piper\n1974-03-01,Zeus\n2000-04-21,Ellie\n2007-02-06,Winston\n2008-12-11,Toby\n2011-01-22,Loki\n1992-06-12,Murphy\n1985-01-15,Roxy\n1977-06-20,Coco\n2004-09-30,Rosie\n2017-03-11,Teddy\n2001-02-14,Ruby\n1993-02-20,Gracie\n1987-02-03,Leo\n2005-03-07,Finn\n1975-10-19,Scout\n1983-04-25,Dexter\n1997-10-20,Ollie\n1993-01-24,Koda\n1993-04-19,Diesel\n2012-10-14,Moose\n2016-11-24,Mia\n1978-02-18,Marley\n2001-06-30,Gus\n2015-10-14,Hank\n2006-09-02,Willow\n"
  },
  {
    "path": "backend/src/main/resources/testdata/visits.csv",
    "content": "Date,Treatment\n2022-01-15,Vaccination Checkup\n2022-03-27,Teeth Cleaning\n2022-05-10,Orthopedic X-rays\n2022-07-18,Blood Tests\n2022-09-05,Abdominal Ultrasound\n2022-11-11,Heartworm Test\n2023-01-02,Dental Checkup\n2023-03-14,Eye Examination\n2023-05-26,Fecal Analysis\n2023-08-01,Skin Biopsy\n2023-10-09,Spaying/Neutering\n2023-12-20,Microchipping\n2024-02-01,Allergy Testing\n2024-04-12,Joint Aspiration\n2024-06-25,Ear Examination\n2024-08-08,Blood Pressure Measurement\n2024-10-19,Cancer Screening\n2024-12-03,Glaucoma Testing\n2022-02-18,Flea and Tick Prevention\n2022-04-30,Deworming\n2022-06-15,CT Scan\n2022-08-23,MRI\n2022-10-05,EKG\n2022-12-11,Nutritional Counseling\n2023-02-22,Joint Aspiration\n2023-04-06,Cancer Screening\n2023-06-18,Glaucoma Testing\n2023-08-30,Blood Clotting Profile\n2023-11-06,Orthopedic Examination\n2024-01-19,Fecal Analysis\n2024-03-02,Heartworm Test\n2024-05-15,Skin Biopsy\n2024-07-27,Spaying/Neutering\n2024-10-02,Orthopedic Examination\n2024-12-14,Dental Checkup\n2022-01-27,Ear Examination\n2022-04-09,Blood Pressure Measurement\n2022-06-22,Allergy Testing\n2022-08-05,CT Scan\n2022-10-17,MRI\n2022-12-28,EKG\n2023-03-10,Nutritional Counseling\n2023-05-23,Joint Aspiration\n2023-08-01,Cancer Screening\n2023-10-13,Glaucoma Testing\n2023-12-24,Blood Clotting Profile\n2024-02-03,Orthopedic Examination\n2024-04-16,Fecal Analysis\n2024-06-29,Heartworm Test\n2024-09-11,Skin Biopsy\n2024-11-23,Spaying/Neutering\n2022-02-21,Microchipping\n2022-05-06,Allergy Testing\n2022-07-18,Joint Aspiration\n2022-09-29,Ear Examination\n2022-12-11,Blood Pressure Measurement\n2023-02-01,CT Scan\n2023-04-15,MRI\n2023-06-27,EKG\n2023-09-10,Nutritional Counseling\n2023-11-22,Joint Aspiration\n2024-02-06,Cancer Screening\n2024-05-19,Glaucoma Testing\n2024-07-31,Blood Clotting Profile\n2024-10-11,Orthopedic Examination\n2022-02-27,Dental Checkup\n2022-05-11,Fecal Analysis\n2022-07-24,Heartworm Test\n2022-10-05,Skin Biopsy\n2022-12-16,Spaying/Neutering\n2023-02-26,Ear Examination\n2023-05-09,Blood Pressure Measurement\n2023-07-22,Allergy Testing\n2023-10-03,CT Scan\n2023-12-15,MRI\n2024-02-26,EKG\n2024-05-09,Nutritional Counseling\n2024-07-22,Joint Aspiration\n2024-10-03,Cancer Screening\n2024-12-15,Glaucoma Testing\n2022-04-02,Blood Clotting Profile\n2022-06-15,Orthopedic Examination\n2022-08-28,Dental Checkup\n2022-11-09,Fecal Analysis\n2023-01-21,Heartworm Test\n2023-04-05,Skin Biopsy\n2023-06-17,Spaying/Neutering\n2023-08-30,Ear Examination\n2023-11-11,Blood Pressure Measurement\n2024-02-03,Allergy Testing\n2024-04-18,CT Scan\n2024-07-01,MRI\n2024-09-14,EKG\n2024-11-26,Nutritional Counseling\n2022-01-30,Joint Aspiration\n2022-04-14,Cancer Screening\n2022-06-26,Glaucoma Testing\n2022-09-08,Blood Clotting Profile\n2022-11-21,Orthopedic Examination\n2023-02-02,Dental Checkup\n2023-04-16,Fecal Analysis\n2023-06-29,Heartworm Test\n2023-09-10,Skin Biopsy\n2023-11-23,Spaying/Neutering\n2024-02-05,Ear Examination\n2024-04-18,Blood Pressure Measurement\n2024-06-29,Allergy Testing\n2024-09-11,CT Scan\n2024-11-23,MRI\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/Range-52ddcb6a.js",
    "content": "class h{constructor(t,r){this.containsPosition=e=>this.start.line===e.line?this.start.character<=e.character:this.end.line===e.line?this.end.character>=e.character:this.start.line<=e.line&&this.end.line>=e.line,this.start=t,this.end=r}setStart(t,r){this.start=new s(t,r)}setEnd(t,r){this.end=new s(t,r)}}class s{constructor(t,r){this.lessThanOrEqualTo=e=>this.line<e.line||this.line===e.line&&this.character<=e.character,this.line=t,this.character=r}setLine(t){this.line=t}setCharacter(t){this.character=t}}export{s as P,h as R};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/SchemaReference.es-0ccab37b.js",
    "content": "import{s as b}from\"./forEachState.es-b2033c2b.js\";import{l,X as k,F,W as h,Y as S,Z as g,_ as D,$ as T,c as Q}from\"./index-27dc12ba.js\";var j=Object.defineProperty,r=(t,n)=>j(t,\"name\",{value:n,configurable:!0});function V(t,n){const e={schema:t,type:null,parentType:null,inputType:null,directiveDef:null,fieldDef:null,argDef:null,argDefs:null,objectFieldDefs:null};return b(n,a=>{var u,p;switch(a.kind){case\"Query\":case\"ShortQuery\":e.type=t.getQueryType();break;case\"Mutation\":e.type=t.getMutationType();break;case\"Subscription\":e.type=t.getSubscriptionType();break;case\"InlineFragment\":case\"FragmentDefinition\":a.type&&(e.type=t.getType(a.type));break;case\"Field\":case\"AliasedField\":e.fieldDef=e.type&&a.name?c(t,e.parentType,a.name):null,e.type=(u=e.fieldDef)===null||u===void 0?void 0:u.type;break;case\"SelectionSet\":e.parentType=e.type?l(e.type):null;break;case\"Directive\":e.directiveDef=a.name?t.getDirective(a.name):null;break;case\"Arguments\":const s=a.prevState?a.prevState.kind===\"Field\"?e.fieldDef:a.prevState.kind===\"Directive\"?e.directiveDef:a.prevState.kind===\"AliasedField\"?a.prevState.name&&c(t,e.parentType,a.prevState.name):null:null;e.argDefs=s?s.args:null;break;case\"Argument\":if(e.argDef=null,e.argDefs){for(let i=0;i<e.argDefs.length;i++)if(e.argDefs[i].name===a.name){e.argDef=e.argDefs[i];break}}e.inputType=(p=e.argDef)===null||p===void 0?void 0:p.type;break;case\"EnumValue\":const y=e.inputType?l(e.inputType):null;e.enumValue=y instanceof S?v(y.getValues(),i=>i.value===a.name):null;break;case\"ListValue\":const d=e.inputType?F(e.inputType):null;e.inputType=d instanceof h?d.ofType:null;break;case\"ObjectValue\":const m=e.inputType?l(e.inputType):null;e.objectFieldDefs=m instanceof k?m.getFields():null;break;case\"ObjectField\":const o=a.name&&e.objectFieldDefs?e.objectFieldDefs[a.name]:null;e.inputType=o==null?void 0:o.type;break;case\"NamedType\":e.type=a.name?t.getType(a.name):null;break}}),e}r(V,\"getTypeInfo\");function c(t,n,e){if(e===g.name&&t.getQueryType()===n)return g;if(e===D.name&&t.getQueryType()===n)return D;if(e===T.name&&Q(n))return T;if(n&&n.getFields)return n.getFields()[e]}r(c,\"getFieldDef\");function v(t,n){for(let e=0;e<t.length;e++)if(n(t[e]))return t[e]}r(v,\"find\");function A(t){return{kind:\"Field\",schema:t.schema,field:t.fieldDef,type:f(t.fieldDef)?null:t.parentType}}r(A,\"getFieldReference\");function L(t){return{kind:\"Directive\",schema:t.schema,directive:t.directiveDef}}r(L,\"getDirectiveReference\");function M(t){return t.directiveDef?{kind:\"Argument\",schema:t.schema,argument:t.argDef,directive:t.directiveDef}:{kind:\"Argument\",schema:t.schema,argument:t.argDef,field:t.fieldDef,type:f(t.fieldDef)?null:t.parentType}}r(M,\"getArgumentReference\");function R(t){return{kind:\"EnumValue\",value:t.enumValue||void 0,type:t.inputType?l(t.inputType):void 0}}r(R,\"getEnumValueReference\");function E(t,n){return{kind:\"Type\",schema:t.schema,type:n||t.type}}r(E,\"getTypeReference\");function f(t){return t.name.slice(0,2)===\"__\"}r(f,\"isMetaField\");export{V as E,R as G,A as L,E as O,L as R,M as _};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/brace-fold.es-f2e3735d.js",
    "content": "import{c as I,h as L}from\"./codemirror.es2-5884f31a.js\";var S=Object.defineProperty,b=(k,T)=>S(k,\"name\",{value:T,configurable:!0});function A(k,T){for(var r=0;r<T.length;r++){const s=T[r];if(typeof s!=\"string\"&&!Array.isArray(s)){for(const e in s)if(e!==\"default\"&&!(e in k)){const i=Object.getOwnPropertyDescriptor(s,e);i&&Object.defineProperty(k,e,i.get?i:{enumerable:!0,get:()=>s[e]})}}}return Object.freeze(Object.defineProperty(k,Symbol.toStringTag,{value:\"Module\"}))}b(A,\"_mergeNamespaces\");var w={exports:{}};(function(k,T){(function(r){r(I())})(function(r){function s(e){return function(i,o){var t=o.line,u=i.getLine(t);function c(a){for(var l,p=o.ch,v=0;;){var h=p<=0?-1:u.lastIndexOf(a[0],p-1);if(h==-1){if(v==1)break;v=1,p=u.length;continue}if(v==1&&h<o.ch)break;if(l=i.getTokenTypeAt(r.Pos(t,h+1)),!/^(comment|string)/.test(l))return{ch:h+1,tokenType:l,pair:a};p=h-1}}b(c,\"findOpening\");function d(a){var l=1,p=i.lastLine(),v,h=a.ch,_;r:for(var P=t;P<=p;++P)for(var O=i.getLine(P),m=P==t?h:0;;){var x=O.indexOf(a.pair[0],m),j=O.indexOf(a.pair[1],m);if(x<0&&(x=O.length),j<0&&(j=O.length),m=Math.min(x,j),m==O.length)break;if(i.getTokenTypeAt(r.Pos(P,m+1))==a.tokenType){if(m==x)++l;else if(!--l){v=P,_=m;break r}}++m}return v==null||t==v?null:{from:r.Pos(t,h),to:r.Pos(v,_)}}b(d,\"findRange\");for(var f=[],n=0;n<e.length;n++){var g=c(e[n]);g&&f.push(g)}f.sort(function(a,l){return a.ch-l.ch});for(var n=0;n<f.length;n++){var y=d(f[n]);if(y)return y}return null}}b(s,\"bracketFolding\"),r.registerHelper(\"fold\",\"brace\",s([[\"{\",\"}\"],[\"[\",\"]\"]])),r.registerHelper(\"fold\",\"brace-paren\",s([[\"{\",\"}\"],[\"[\",\"]\"],[\"(\",\")\"]])),r.registerHelper(\"fold\",\"import\",function(e,i){function o(n){if(n<e.firstLine()||n>e.lastLine())return null;var g=e.getTokenAt(r.Pos(n,1));if(/\\S/.test(g.string)||(g=e.getTokenAt(r.Pos(n,g.end+1))),g.type!=\"keyword\"||g.string!=\"import\")return null;for(var y=n,a=Math.min(e.lastLine(),n+10);y<=a;++y){var l=e.getLine(y),p=l.indexOf(\";\");if(p!=-1)return{startCh:g.end,end:r.Pos(y,p)}}}b(o,\"hasImport\");var t=i.line,u=o(t),c;if(!u||o(t-1)||(c=o(t-2))&&c.end.line==t-1)return null;for(var d=u.end;;){var f=o(d.line+1);if(f==null)break;d=f.end}return{from:e.clipPos(r.Pos(t,u.startCh+1)),to:d}}),r.registerHelper(\"fold\",\"include\",function(e,i){function o(f){if(f<e.firstLine()||f>e.lastLine())return null;var n=e.getTokenAt(r.Pos(f,1));if(/\\S/.test(n.string)||(n=e.getTokenAt(r.Pos(f,n.end+1))),n.type==\"meta\"&&n.string.slice(0,8)==\"#include\")return n.start+8}b(o,\"hasInclude\");var t=i.line,u=o(t);if(u==null||o(t-1)!=null)return null;for(var c=t;;){var d=o(c+1);if(d==null)break;++c}return{from:r.Pos(t,u+1),to:e.clipPos(r.Pos(c))}})})})();var H=w.exports;const M=L(H),D=A({__proto__:null,default:M},[H]);export{D as b};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/closebrackets.es-e969742b.js",
    "content": "import{c as N,h as q}from\"./codemirror.es2-5884f31a.js\";var F=Object.defineProperty,f=(P,k)=>F(P,\"name\",{value:k,configurable:!0});function z(P,k){for(var t=0;t<k.length;t++){const v=k[t];if(typeof v!=\"string\"&&!Array.isArray(v)){for(const o in v)if(o!==\"default\"&&!(o in P)){const h=Object.getOwnPropertyDescriptor(v,o);h&&Object.defineProperty(P,o,h.get?h:{enumerable:!0,get:()=>v[o]})}}}return Object.freeze(Object.defineProperty(P,Symbol.toStringTag,{value:\"Module\"}))}f(z,\"_mergeNamespaces\");var J={exports:{}};(function(P,k){(function(t){t(N())})(function(t){var v={pairs:`()[]{}''\"\"`,closeBefore:`)]}'\":;>`,triples:\"\",explode:\"[]{}\"},o=t.Pos;t.defineOption(\"autoCloseBrackets\",!1,function(e,n,r){r&&r!=t.Init&&(e.removeKeyMap(B),e.state.closeBrackets=null),n&&(T(h(n,\"pairs\")),e.state.closeBrackets=n,e.addKeyMap(B))});function h(e,n){return n==\"pairs\"&&typeof e==\"string\"?e:typeof e==\"object\"&&e[n]!=null?e[n]:v[n]}f(h,\"getOption\");var B={Backspace:E,Enter:M};function T(e){for(var n=0;n<e.length;n++){var r=e.charAt(n),a=\"'\"+r+\"'\";B[a]||(B[a]=w(r))}}f(T,\"ensureBound\"),T(v.pairs+\"`\");function w(e){return function(n){return I(n,e)}}f(w,\"handler\");function A(e){var n=e.state.closeBrackets;if(!n||n.override)return n;var r=e.getModeAt(e.getCursor());return r.closeBrackets||n}f(A,\"getConfig\");function E(e){var n=A(e);if(!n||e.getOption(\"disableInput\"))return t.Pass;for(var r=h(n,\"pairs\"),a=e.listSelections(),i=0;i<a.length;i++){if(!a[i].empty())return t.Pass;var l=x(e,a[i].head);if(!l||r.indexOf(l)%2!=0)return t.Pass}for(var i=a.length-1;i>=0;i--){var c=a[i].head;e.replaceRange(\"\",o(c.line,c.ch-1),o(c.line,c.ch+1),\"+delete\")}}f(E,\"handleBackspace\");function M(e){var n=A(e),r=n&&h(n,\"explode\");if(!r||e.getOption(\"disableInput\"))return t.Pass;for(var a=e.listSelections(),i=0;i<a.length;i++){if(!a[i].empty())return t.Pass;var l=x(e,a[i].head);if(!l||r.indexOf(l)%2!=0)return t.Pass}e.operation(function(){var c=e.lineSeparator()||`\n`;e.replaceSelection(c+c,null),S(e,-1),a=e.listSelections();for(var u=0;u<a.length;u++){var b=a[u].head.line;e.indentLine(b,null,!0),e.indentLine(b+1,null,!0)}})}f(M,\"handleEnter\");function S(e,n){for(var r=[],a=e.listSelections(),i=0,l=0;l<a.length;l++){var c=a[l];c.head==e.getCursor()&&(i=l);var u=c.head.ch||n>0?{line:c.head.line,ch:c.head.ch+n}:{line:c.head.line-1};r.push({anchor:u,head:u})}e.setSelections(r,i)}f(S,\"moveSel\");function R(e){var n=t.cmpPos(e.anchor,e.head)>0;return{anchor:new o(e.anchor.line,e.anchor.ch+(n?-1:1)),head:new o(e.head.line,e.head.ch+(n?1:-1))}}f(R,\"contractSelection\");function I(e,n){var r=A(e);if(!r||e.getOption(\"disableInput\"))return t.Pass;var a=h(r,\"pairs\"),i=a.indexOf(n);if(i==-1)return t.Pass;for(var l=h(r,\"closeBefore\"),c=h(r,\"triples\"),u=a.charAt(i+1)==n,b=e.listSelections(),C=i%2==0,y,_=0;_<b.length;_++){var L=b[_],s=L.head,d,m=e.getRange(s,o(s.line,s.ch+1));if(C&&!L.empty())d=\"surround\";else if((u||!C)&&m==n)u&&K(e,s)?d=\"both\":c.indexOf(n)>=0&&e.getRange(s,o(s.line,s.ch+3))==n+n+n?d=\"skipThree\":d=\"skip\";else if(u&&s.ch>1&&c.indexOf(n)>=0&&e.getRange(o(s.line,s.ch-2),s)==n+n){if(s.ch>2&&/\\bstring/.test(e.getTokenTypeAt(o(s.line,s.ch-2))))return t.Pass;d=\"addFour\"}else if(u){var W=s.ch==0?\" \":e.getRange(o(s.line,s.ch-1),s);if(!t.isWordChar(m)&&W!=n&&!t.isWordChar(W))d=\"both\";else return t.Pass}else if(C&&(m.length===0||/\\s/.test(m)||l.indexOf(m)>-1))d=\"both\";else return t.Pass;if(!y)y=d;else if(y!=d)return t.Pass}var O=i%2?a.charAt(i-1):n,j=i%2?n:a.charAt(i+1);e.operation(function(){if(y==\"skip\")S(e,1);else if(y==\"skipThree\")S(e,3);else if(y==\"surround\"){for(var p=e.getSelections(),g=0;g<p.length;g++)p[g]=O+p[g]+j;e.replaceSelections(p,\"around\"),p=e.listSelections().slice();for(var g=0;g<p.length;g++)p[g]=R(p[g]);e.setSelections(p)}else y==\"both\"?(e.replaceSelection(O+j,null),e.triggerElectric(O+j),S(e,-1)):y==\"addFour\"&&(e.replaceSelection(O+O+O+O,\"before\"),S(e,1))})}f(I,\"handleChar\");function x(e,n){var r=e.getRange(o(n.line,n.ch-1),o(n.line,n.ch+1));return r.length==2?r:null}f(x,\"charsAround\");function K(e,n){var r=e.getTokenAt(o(n.line,n.ch+1));return/\\bstring/.test(r.type)&&r.start==n.ch&&(n.ch==0||!/\\bstring/.test(e.getTokenTypeAt(n)))}f(K,\"stringStartsAfter\")})})();var D=J.exports;const Q=q(D),$=z({__proto__:null,default:Q},[D]);export{$ as c};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/codemirror.es-52e8b92d.js",
    "content": "import{c as f,h as s}from\"./codemirror.es2-5884f31a.js\";var u=Object.defineProperty,l=(e,n)=>u(e,\"name\",{value:n,configurable:!0});function c(e,n){for(var o=0;o<n.length;o++){const r=n[o];if(typeof r!=\"string\"&&!Array.isArray(r)){for(const t in r)if(t!==\"default\"&&!(t in e)){const a=Object.getOwnPropertyDescriptor(r,t);a&&Object.defineProperty(e,t,a.get?a:{enumerable:!0,get:()=>r[t]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}))}l(c,\"_mergeNamespaces\");var i=f();const p=s(i),b=c({__proto__:null,default:p},[i]);export{p as C,b as c};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/codemirror.es2-5884f31a.js",
    "content": "var su=Object.defineProperty,u=(Et,Nl)=>su(Et,\"name\",{value:Nl,configurable:!0}),uu=typeof globalThis<\"u\"?globalThis:typeof window<\"u\"?window:typeof global<\"u\"?global:typeof self<\"u\"?self:{};function cu(Et){return Et&&Et.__esModule&&Object.prototype.hasOwnProperty.call(Et,\"default\")?Et.default:Et}u(cu,\"getDefaultExportFromCjs\");var Gs={exports:{}},Ks;function hu(){return Ks||(Ks=1,function(Et,Nl){(function(it,tr){Et.exports=tr()})(uu,function(){var it=navigator.userAgent,tr=navigator.platform,It=/gecko\\/\\d/i.test(it),Ol=/MSIE \\d/.test(it),Dl=/Trident\\/(?:[7-9]|\\d{2,})\\..*rv:(\\d+)/.exec(it),er=/Edge\\/(\\d+)/.exec(it),A=Ol||Dl||er,I=A&&(Ol?document.documentMode||6:+(er||Dl)[1]),ot=!er&&/WebKit\\//.test(it),Vs=ot&&/Qt\\/\\d+\\.\\d+/.test(it),nr=!er&&/Chrome\\//.test(it),kt=/Opera\\//.test(it),rr=/Apple Computer/.test(navigator.vendor),js=/Mac OS X 1\\d\\D([8-9]|\\d\\d)\\D/.test(it),Xs=/PhantomJS/.test(it),hn=rr&&(/Mobile\\/\\w+/.test(it)||navigator.maxTouchPoints>2),ir=/Android/.test(it),dn=hn||ir||/webOS|BlackBerry|Opera Mini|Opera Mobi|IEMobile/i.test(it),xt=hn||/Mac/.test(tr),_s=/\\bCrOS\\b/.test(it),qs=/win/i.test(tr),he=kt&&it.match(/Version\\/(\\d*\\.\\d*)/);he&&(he=Number(he[1])),he&&he>=15&&(kt=!1,ot=!0);var Al=xt&&(Vs||kt&&(he==null||he<12.11)),gi=It||A&&I>=9;function de(t){return new RegExp(\"(^|\\\\s)\"+t+\"(?:$|\\\\s)\\\\s*\")}u(de,\"classTest\");var fe=u(function(t,e){var r=t.className,n=de(e).exec(r);if(n){var i=r.slice(n.index+n[0].length);t.className=r.slice(0,n.index)+(i?n[1]+i:\"\")}},\"rmClass\");function Rt(t){for(var e=t.childNodes.length;e>0;--e)t.removeChild(t.firstChild);return t}u(Rt,\"removeChildren\");function gt(t,e){return Rt(t).appendChild(e)}u(gt,\"removeChildrenAndAdd\");function k(t,e,r,n){var i=document.createElement(t);if(r&&(i.className=r),n&&(i.style.cssText=n),typeof e==\"string\")i.appendChild(document.createTextNode(e));else if(e)for(var o=0;o<e.length;++o)i.appendChild(e[o]);return i}u(k,\"elt\");function pe(t,e,r,n){var i=k(t,e,r,n);return i.setAttribute(\"role\",\"presentation\"),i}u(pe,\"eltP\");var ge;document.createRange?ge=u(function(t,e,r,n){var i=document.createRange();return i.setEnd(n||t,r),i.setStart(t,e),i},\"range\"):ge=u(function(t,e,r){var n=document.body.createTextRange();try{n.moveToElementText(t.parentNode)}catch{return n}return n.collapse(!0),n.moveEnd(\"character\",r),n.moveStart(\"character\",e),n},\"range\");function zt(t,e){if(e.nodeType==3&&(e=e.parentNode),t.contains)return t.contains(e);do if(e.nodeType==11&&(e=e.host),e==t)return!0;while(e=e.parentNode)}u(zt,\"contains\");function vt(){var t;try{t=document.activeElement}catch{t=document.body||null}for(;t&&t.shadowRoot&&t.shadowRoot.activeElement;)t=t.shadowRoot.activeElement;return t}u(vt,\"activeElt\");function Zt(t,e){var r=t.className;de(e).test(r)||(t.className+=(r?\" \":\"\")+e)}u(Zt,\"addClass\");function or(t,e){for(var r=t.split(\" \"),n=0;n<r.length;n++)r[n]&&!de(r[n]).test(e)&&(e+=\" \"+r[n]);return e}u(or,\"joinClasses\");var fn=u(function(t){t.select()},\"selectInput\");hn?fn=u(function(t){t.selectionStart=0,t.selectionEnd=t.value.length},\"selectInput\"):A&&(fn=u(function(t){try{t.select()}catch{}},\"selectInput\"));function lr(t){var e=Array.prototype.slice.call(arguments,1);return function(){return t.apply(null,e)}}u(lr,\"bind\");function $t(t,e,r){e||(e={});for(var n in t)t.hasOwnProperty(n)&&(r!==!1||!e.hasOwnProperty(n))&&(e[n]=t[n]);return e}u($t,\"copyObj\");function yt(t,e,r,n,i){e==null&&(e=t.search(/[^\\s\\u00a0]/),e==-1&&(e=t.length));for(var o=n||0,l=i||0;;){var a=t.indexOf(\"\t\",o);if(a<0||a>=e)return l+(e-o);l+=a-o,l+=r-l%r,o=a+1}}u(yt,\"countColumn\");var Qt=u(function(){this.id=null,this.f=null,this.time=0,this.handler=lr(this.onTimeout,this)},\"Delayed\");Qt.prototype.onTimeout=function(t){t.id=0,t.time<=+new Date?t.f():setTimeout(t.handler,t.time-+new Date)},Qt.prototype.set=function(t,e){this.f=e;var r=+new Date+t;(!this.id||r<this.time)&&(clearTimeout(this.id),this.id=setTimeout(this.handler,t),this.time=r)};function J(t,e){for(var r=0;r<t.length;++r)if(t[r]==e)return r;return-1}u(J,\"indexOf\");var Wl=50,ar={toString:function(){return\"CodeMirror.Pass\"}},Dt={scroll:!1},mi={origin:\"*mouse\"},pn={origin:\"+move\"};function sr(t,e,r){for(var n=0,i=0;;){var o=t.indexOf(\"\t\",n);o==-1&&(o=t.length);var l=o-n;if(o==t.length||i+l>=e)return n+Math.min(l,e-i);if(i+=o-n,i+=r-i%r,n=o+1,i>=e)return n}}u(sr,\"findColumn\");var ur=[\"\"];function cr(t){for(;ur.length<=t;)ur.push(W(ur)+\" \");return ur[t]}u(cr,\"spaceStr\");function W(t){return t[t.length-1]}u(W,\"lst\");function gn(t,e){for(var r=[],n=0;n<t.length;n++)r[n]=e(t[n],n);return r}u(gn,\"map\");function Hl(t,e,r){for(var n=0,i=r(e);n<t.length&&r(t[n])<=i;)n++;t.splice(n,0,e)}u(Hl,\"insertSorted\");function vi(){}u(vi,\"nothing\");function yi(t,e){var r;return Object.create?r=Object.create(t):(vi.prototype=t,r=new vi),e&&$t(e,r),r}u(yi,\"createObj\");var Ys=/[\\u00df\\u0587\\u0590-\\u05f4\\u0600-\\u06ff\\u3040-\\u309f\\u30a0-\\u30ff\\u3400-\\u4db5\\u4e00-\\u9fcc\\uac00-\\ud7af]/;function hr(t){return/\\w/.test(t)||t>\"\"&&(t.toUpperCase()!=t.toLowerCase()||Ys.test(t))}u(hr,\"isWordCharBasic\");function mn(t,e){return e?e.source.indexOf(\"\\\\w\")>-1&&hr(t)?!0:e.test(t):hr(t)}u(mn,\"isWordChar\");function bi(t){for(var e in t)if(t.hasOwnProperty(e)&&t[e])return!1;return!0}u(bi,\"isEmpty\");var Zs=/[\\u0300-\\u036f\\u0483-\\u0489\\u0591-\\u05bd\\u05bf\\u05c1\\u05c2\\u05c4\\u05c5\\u05c7\\u0610-\\u061a\\u064b-\\u065e\\u0670\\u06d6-\\u06dc\\u06de-\\u06e4\\u06e7\\u06e8\\u06ea-\\u06ed\\u0711\\u0730-\\u074a\\u07a6-\\u07b0\\u07eb-\\u07f3\\u0816-\\u0819\\u081b-\\u0823\\u0825-\\u0827\\u0829-\\u082d\\u0900-\\u0902\\u093c\\u0941-\\u0948\\u094d\\u0951-\\u0955\\u0962\\u0963\\u0981\\u09bc\\u09be\\u09c1-\\u09c4\\u09cd\\u09d7\\u09e2\\u09e3\\u0a01\\u0a02\\u0a3c\\u0a41\\u0a42\\u0a47\\u0a48\\u0a4b-\\u0a4d\\u0a51\\u0a70\\u0a71\\u0a75\\u0a81\\u0a82\\u0abc\\u0ac1-\\u0ac5\\u0ac7\\u0ac8\\u0acd\\u0ae2\\u0ae3\\u0b01\\u0b3c\\u0b3e\\u0b3f\\u0b41-\\u0b44\\u0b4d\\u0b56\\u0b57\\u0b62\\u0b63\\u0b82\\u0bbe\\u0bc0\\u0bcd\\u0bd7\\u0c3e-\\u0c40\\u0c46-\\u0c48\\u0c4a-\\u0c4d\\u0c55\\u0c56\\u0c62\\u0c63\\u0cbc\\u0cbf\\u0cc2\\u0cc6\\u0ccc\\u0ccd\\u0cd5\\u0cd6\\u0ce2\\u0ce3\\u0d3e\\u0d41-\\u0d44\\u0d4d\\u0d57\\u0d62\\u0d63\\u0dca\\u0dcf\\u0dd2-\\u0dd4\\u0dd6\\u0ddf\\u0e31\\u0e34-\\u0e3a\\u0e47-\\u0e4e\\u0eb1\\u0eb4-\\u0eb9\\u0ebb\\u0ebc\\u0ec8-\\u0ecd\\u0f18\\u0f19\\u0f35\\u0f37\\u0f39\\u0f71-\\u0f7e\\u0f80-\\u0f84\\u0f86\\u0f87\\u0f90-\\u0f97\\u0f99-\\u0fbc\\u0fc6\\u102d-\\u1030\\u1032-\\u1037\\u1039\\u103a\\u103d\\u103e\\u1058\\u1059\\u105e-\\u1060\\u1071-\\u1074\\u1082\\u1085\\u1086\\u108d\\u109d\\u135f\\u1712-\\u1714\\u1732-\\u1734\\u1752\\u1753\\u1772\\u1773\\u17b7-\\u17bd\\u17c6\\u17c9-\\u17d3\\u17dd\\u180b-\\u180d\\u18a9\\u1920-\\u1922\\u1927\\u1928\\u1932\\u1939-\\u193b\\u1a17\\u1a18\\u1a56\\u1a58-\\u1a5e\\u1a60\\u1a62\\u1a65-\\u1a6c\\u1a73-\\u1a7c\\u1a7f\\u1b00-\\u1b03\\u1b34\\u1b36-\\u1b3a\\u1b3c\\u1b42\\u1b6b-\\u1b73\\u1b80\\u1b81\\u1ba2-\\u1ba5\\u1ba8\\u1ba9\\u1c2c-\\u1c33\\u1c36\\u1c37\\u1cd0-\\u1cd2\\u1cd4-\\u1ce0\\u1ce2-\\u1ce8\\u1ced\\u1dc0-\\u1de6\\u1dfd-\\u1dff\\u200c\\u200d\\u20d0-\\u20f0\\u2cef-\\u2cf1\\u2de0-\\u2dff\\u302a-\\u302f\\u3099\\u309a\\ua66f-\\ua672\\ua67c\\ua67d\\ua6f0\\ua6f1\\ua802\\ua806\\ua80b\\ua825\\ua826\\ua8c4\\ua8e0-\\ua8f1\\ua926-\\ua92d\\ua947-\\ua951\\ua980-\\ua982\\ua9b3\\ua9b6-\\ua9b9\\ua9bc\\uaa29-\\uaa2e\\uaa31\\uaa32\\uaa35\\uaa36\\uaa43\\uaa4c\\uaab0\\uaab2-\\uaab4\\uaab7\\uaab8\\uaabe\\uaabf\\uaac1\\uabe5\\uabe8\\uabed\\udc00-\\udfff\\ufb1e\\ufe00-\\ufe0f\\ufe20-\\ufe26\\uff9e\\uff9f]/;function dr(t){return t.charCodeAt(0)>=768&&Zs.test(t)}u(dr,\"isExtendingChar\");function wi(t,e,r){for(;(r<0?e>0:e<t.length)&&dr(t.charAt(e));)e+=r;return e}u(wi,\"skipExtendingChars\");function Pe(t,e,r){for(var n=e>r?-1:1;;){if(e==r)return e;var i=(e+r)/2,o=n<0?Math.ceil(i):Math.floor(i);if(o==e)return t(o)?e:r;t(o)?r=o:e=o+n}}u(Pe,\"findFirst\");function Fl(t,e,r,n){if(!t)return n(e,r,\"ltr\",0);for(var i=!1,o=0;o<t.length;++o){var l=t[o];(l.from<r&&l.to>e||e==r&&l.to==e)&&(n(Math.max(l.from,e),Math.min(l.to,r),l.level==1?\"rtl\":\"ltr\",o),i=!0)}i||n(e,r,\"ltr\")}u(Fl,\"iterateBidiSections\");var vn=null;function Ee(t,e,r){var n;vn=null;for(var i=0;i<t.length;++i){var o=t[i];if(o.from<e&&o.to>e)return i;o.to==e&&(o.from!=o.to&&r==\"before\"?n=i:vn=i),o.from==e&&(o.from!=o.to&&r!=\"before\"?n=i:vn=i)}return n??vn}u(Ee,\"getBidiPartAt\");var $s=function(){var t=\"bbbbbbbbbtstwsbbbbbbbbbbbbbbssstwNN%%%NNNNNN,N,N1111111111NNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNNNLLLLLLLLLLLLLLLLLLLLLLLLLLNNNNbbbbbbsbbbbbbbbbbbbbbbbbbbbbbbbbb,N%%%%NNNNLNNNNN%%11NLNNN1LNNNNNLLLLLLLLLLLLLLLLLLLLLLLNLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLN\",e=\"nnnnnnNNr%%r,rNNmmmmmmmmmmmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmmmmmmmmmmmmmmmnnnnnnnnnn%nnrrrmrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrmmmmmmmnNmmmmmmrrmmNmmmmrr1111111111\";function r(c){return c<=247?t.charAt(c):1424<=c&&c<=1524?\"R\":1536<=c&&c<=1785?e.charAt(c-1536):1774<=c&&c<=2220?\"r\":8192<=c&&c<=8203?\"w\":c==8204?\"b\":\"L\"}u(r,\"charType\");var n=/[\\u0590-\\u05f4\\u0600-\\u06ff\\u0700-\\u08ac]/,i=/[stwN]/,o=/[LRr]/,l=/[Lb1n]/,a=/[1n]/;function s(c,h,d){this.level=c,this.from=h,this.to=d}return u(s,\"BidiSpan\"),function(c,h){var d=h==\"ltr\"?\"L\":\"R\";if(c.length==0||h==\"ltr\"&&!n.test(c))return!1;for(var p=c.length,f=[],g=0;g<p;++g)f.push(r(c.charCodeAt(g)));for(var m=0,y=d;m<p;++m){var b=f[m];b==\"m\"?f[m]=y:y=b}for(var x=0,w=d;x<p;++x){var C=f[x];C==\"1\"&&w==\"r\"?f[x]=\"n\":o.test(C)&&(w=C,C==\"r\"&&(f[x]=\"R\"))}for(var T=1,L=f[0];T<p-1;++T){var D=f[T];D==\"+\"&&L==\"1\"&&f[T+1]==\"1\"?f[T]=\"1\":D==\",\"&&L==f[T+1]&&(L==\"1\"||L==\"n\")&&(f[T]=L),L=D}for(var E=0;E<p;++E){var $=f[E];if($==\",\")f[E]=\"N\";else if($==\"%\"){var z=void 0;for(z=E+1;z<p&&f[z]==\"%\";++z);for(var ht=E&&f[E-1]==\"!\"||z<p&&f[z]==\"1\"?\"1\":\"N\",dt=E;dt<z;++dt)f[dt]=ht;E=z-1}}for(var V=0,ft=d;V<p;++V){var et=f[V];ft==\"L\"&&et==\"1\"?f[V]=\"L\":o.test(et)&&(ft=et)}for(var Z=0;Z<p;++Z)if(i.test(f[Z])){var j=void 0;for(j=Z+1;j<p&&i.test(f[j]);++j);for(var B=(Z?f[Z-1]:d)==\"L\",pt=(j<p?f[j]:d)==\"L\",un=B==pt?B?\"L\":\"R\":d,ce=Z;ce<j;++ce)f[ce]=un;Z=j-1}for(var rt=[],Pt,Q=0;Q<p;)if(l.test(f[Q])){var Tl=Q;for(++Q;Q<p&&l.test(f[Q]);++Q);rt.push(new s(0,Tl,Q))}else{var Yt=Q,He=rt.length,Fe=h==\"rtl\"?1:0;for(++Q;Q<p&&f[Q]!=\"L\";++Q);for(var st=Yt;st<Q;)if(a.test(f[st])){Yt<st&&(rt.splice(He,0,new s(1,Yt,st)),He+=Fe);var cn=st;for(++st;st<Q&&a.test(f[st]);++st);rt.splice(He,0,new s(2,cn,st)),He+=Fe,Yt=st}else++st;Yt<Q&&rt.splice(He,0,new s(1,Yt,Q))}return h==\"ltr\"&&(rt[0].level==1&&(Pt=c.match(/^\\s+/))&&(rt[0].from=Pt[0].length,rt.unshift(new s(0,0,Pt[0].length))),W(rt).level==1&&(Pt=c.match(/\\s+$/))&&(W(rt).to-=Pt[0].length,rt.push(new s(0,p-Pt[0].length,p)))),h==\"rtl\"?rt.reverse():rt}}();function At(t,e){var r=t.order;return r==null&&(r=t.order=$s(t.text,e)),r}u(At,\"getOrder\");var Pl=[],M=u(function(t,e,r){if(t.addEventListener)t.addEventListener(e,r,!1);else if(t.attachEvent)t.attachEvent(\"on\"+e,r);else{var n=t._handlers||(t._handlers={});n[e]=(n[e]||Pl).concat(r)}},\"on\");function fr(t,e){return t._handlers&&t._handlers[e]||Pl}u(fr,\"getHandlers\");function mt(t,e,r){if(t.removeEventListener)t.removeEventListener(e,r,!1);else if(t.detachEvent)t.detachEvent(\"on\"+e,r);else{var n=t._handlers,i=n&&n[e];if(i){var o=J(i,r);o>-1&&(n[e]=i.slice(0,o).concat(i.slice(o+1)))}}}u(mt,\"off\");function U(t,e){var r=fr(t,e);if(r.length)for(var n=Array.prototype.slice.call(arguments,2),i=0;i<r.length;++i)r[i].apply(null,n)}u(U,\"signal\");function X(t,e,r){return typeof e==\"string\"&&(e={type:e,preventDefault:function(){this.defaultPrevented=!0}}),U(t,r||e.type,t,e),pr(e)||e.codemirrorIgnore}u(X,\"signalDOMEvent\");function xi(t){var e=t._handlers&&t._handlers.cursorActivity;if(e)for(var r=t.curOp.cursorActivityHandlers||(t.curOp.cursorActivityHandlers=[]),n=0;n<e.length;++n)J(r,e[n])==-1&&r.push(e[n])}u(xi,\"signalCursorActivity\");function bt(t,e){return fr(t,e).length>0}u(bt,\"hasHandler\");function me(t){t.prototype.on=function(e,r){M(this,e,r)},t.prototype.off=function(e,r){mt(this,e,r)}}u(me,\"eventMixin\");function lt(t){t.preventDefault?t.preventDefault():t.returnValue=!1}u(lt,\"e_preventDefault\");function Ci(t){t.stopPropagation?t.stopPropagation():t.cancelBubble=!0}u(Ci,\"e_stopPropagation\");function pr(t){return t.defaultPrevented!=null?t.defaultPrevented:t.returnValue==!1}u(pr,\"e_defaultPrevented\");function Ie(t){lt(t),Ci(t)}u(Ie,\"e_stop\");function gr(t){return t.target||t.srcElement}u(gr,\"e_target\");function Si(t){var e=t.which;return e==null&&(t.button&1?e=1:t.button&2?e=3:t.button&4&&(e=2)),xt&&t.ctrlKey&&e==1&&(e=3),e}u(Si,\"e_button\");var Qs=function(){if(A&&I<9)return!1;var t=k(\"div\");return\"draggable\"in t||\"dragDrop\"in t}(),Li;function El(t){if(Li==null){var e=k(\"span\",\"​\");gt(t,k(\"span\",[e,document.createTextNode(\"x\")])),t.firstChild.offsetHeight!=0&&(Li=e.offsetWidth<=1&&e.offsetHeight>2&&!(A&&I<8))}var r=Li?k(\"span\",\"​\"):k(\"span\",\" \",null,\"display: inline-block; width: 1px; margin-right: -1px\");return r.setAttribute(\"cm-text\",\"\"),r}u(El,\"zeroWidthElement\");var ki;function Il(t){if(ki!=null)return ki;var e=gt(t,document.createTextNode(\"AخA\")),r=ge(e,0,1).getBoundingClientRect(),n=ge(e,1,2).getBoundingClientRect();return Rt(t),!r||r.left==r.right?!1:ki=n.right-r.right<3}u(Il,\"hasBadBidiRects\");var Ti=`\n\nb`.split(/\\n/).length!=3?function(t){for(var e=0,r=[],n=t.length;e<=n;){var i=t.indexOf(`\n`,e);i==-1&&(i=t.length);var o=t.slice(e,t.charAt(i-1)==\"\\r\"?i-1:i),l=o.indexOf(\"\\r\");l!=-1?(r.push(o.slice(0,l)),e+=l+1):(r.push(o),e=i+1)}return r}:function(t){return t.split(/\\r\\n?|\\n/)},Js=window.getSelection?function(t){try{return t.selectionStart!=t.selectionEnd}catch{return!1}}:function(t){var e;try{e=t.ownerDocument.selection.createRange()}catch{}return!e||e.parentElement()!=t?!1:e.compareEndPoints(\"StartToEnd\",e)!=0},tu=function(){var t=k(\"div\");return\"oncopy\"in t?!0:(t.setAttribute(\"oncopy\",\"return;\"),typeof t.oncopy==\"function\")}(),Mi=null;function Rl(t){if(Mi!=null)return Mi;var e=gt(t,k(\"span\",\"x\")),r=e.getBoundingClientRect(),n=ge(e,0,1).getBoundingClientRect();return Mi=Math.abs(r.left-n.left)>1}u(Rl,\"hasBadZoomedRects\");var Ni={},Re={};function zl(t,e){arguments.length>2&&(e.dependencies=Array.prototype.slice.call(arguments,2)),Ni[t]=e}u(zl,\"defineMode\");function Bl(t,e){Re[t]=e}u(Bl,\"defineMIME\");function yn(t){if(typeof t==\"string\"&&Re.hasOwnProperty(t))t=Re[t];else if(t&&typeof t.name==\"string\"&&Re.hasOwnProperty(t.name)){var e=Re[t.name];typeof e==\"string\"&&(e={name:e}),t=yi(e,t),t.name=e.name}else{if(typeof t==\"string\"&&/^[\\w\\-]+\\/[\\w\\-]+\\+xml$/.test(t))return yn(\"application/xml\");if(typeof t==\"string\"&&/^[\\w\\-]+\\/[\\w\\-]+\\+json$/.test(t))return yn(\"application/json\")}return typeof t==\"string\"?{name:t}:t||{name:\"null\"}}u(yn,\"resolveMode\");function mr(t,e){e=yn(e);var r=Ni[e.name];if(!r)return mr(t,\"text/plain\");var n=r(t,e);if(ze.hasOwnProperty(e.name)){var i=ze[e.name];for(var o in i)i.hasOwnProperty(o)&&(n.hasOwnProperty(o)&&(n[\"_\"+o]=n[o]),n[o]=i[o])}if(n.name=e.name,e.helperType&&(n.helperType=e.helperType),e.modeProps)for(var l in e.modeProps)n[l]=e.modeProps[l];return n}u(mr,\"getMode\");var ze={};function Ul(t,e){var r=ze.hasOwnProperty(t)?ze[t]:ze[t]={};$t(e,r)}u(Ul,\"extendMode\");function Jt(t,e){if(e===!0)return e;if(t.copyState)return t.copyState(e);var r={};for(var n in e){var i=e[n];i instanceof Array&&(i=i.concat([])),r[n]=i}return r}u(Jt,\"copyState\");function vr(t,e){for(var r;t.innerMode&&(r=t.innerMode(e),!(!r||r.mode==t));)e=r.state,t=r.mode;return r||{mode:t,state:e}}u(vr,\"innerMode\");function Oi(t,e,r){return t.startState?t.startState(e,r):!0}u(Oi,\"startState\");var K=u(function(t,e,r){this.pos=this.start=0,this.string=t,this.tabSize=e||8,this.lastColumnPos=this.lastColumnValue=0,this.lineStart=0,this.lineOracle=r},\"StringStream\");K.prototype.eol=function(){return this.pos>=this.string.length},K.prototype.sol=function(){return this.pos==this.lineStart},K.prototype.peek=function(){return this.string.charAt(this.pos)||void 0},K.prototype.next=function(){if(this.pos<this.string.length)return this.string.charAt(this.pos++)},K.prototype.eat=function(t){var e=this.string.charAt(this.pos),r;if(typeof t==\"string\"?r=e==t:r=e&&(t.test?t.test(e):t(e)),r)return++this.pos,e},K.prototype.eatWhile=function(t){for(var e=this.pos;this.eat(t););return this.pos>e},K.prototype.eatSpace=function(){for(var t=this.pos;/[\\s\\u00a0]/.test(this.string.charAt(this.pos));)++this.pos;return this.pos>t},K.prototype.skipToEnd=function(){this.pos=this.string.length},K.prototype.skipTo=function(t){var e=this.string.indexOf(t,this.pos);if(e>-1)return this.pos=e,!0},K.prototype.backUp=function(t){this.pos-=t},K.prototype.column=function(){return this.lastColumnPos<this.start&&(this.lastColumnValue=yt(this.string,this.start,this.tabSize,this.lastColumnPos,this.lastColumnValue),this.lastColumnPos=this.start),this.lastColumnValue-(this.lineStart?yt(this.string,this.lineStart,this.tabSize):0)},K.prototype.indentation=function(){return yt(this.string,null,this.tabSize)-(this.lineStart?yt(this.string,this.lineStart,this.tabSize):0)},K.prototype.match=function(t,e,r){if(typeof t==\"string\"){var n=u(function(l){return r?l.toLowerCase():l},\"cased\"),i=this.string.substr(this.pos,t.length);if(n(i)==n(t))return e!==!1&&(this.pos+=t.length),!0}else{var o=this.string.slice(this.pos).match(t);return o&&o.index>0?null:(o&&e!==!1&&(this.pos+=o[0].length),o)}},K.prototype.current=function(){return this.string.slice(this.start,this.pos)},K.prototype.hideFirstChars=function(t,e){this.lineStart+=t;try{return e()}finally{this.lineStart-=t}},K.prototype.lookAhead=function(t){var e=this.lineOracle;return e&&e.lookAhead(t)},K.prototype.baseToken=function(){var t=this.lineOracle;return t&&t.baseToken(this.pos)};function S(t,e){if(e-=t.first,e<0||e>=t.size)throw new Error(\"There is no line \"+(e+t.first)+\" in the document.\");for(var r=t;!r.lines;)for(var n=0;;++n){var i=r.children[n],o=i.chunkSize();if(e<o){r=i;break}e-=o}return r.lines[e]}u(S,\"getLine\");function te(t,e,r){var n=[],i=e.line;return t.iter(e.line,r.line+1,function(o){var l=o.text;i==r.line&&(l=l.slice(0,r.ch)),i==e.line&&(l=l.slice(e.ch)),n.push(l),++i}),n}u(te,\"getBetween\");function yr(t,e,r){var n=[];return t.iter(e,r,function(i){n.push(i.text)}),n}u(yr,\"getLines\");function Tt(t,e){var r=e-t.height;if(r)for(var n=t;n;n=n.parent)n.height+=r}u(Tt,\"updateLineHeight\");function F(t){if(t.parent==null)return null;for(var e=t.parent,r=J(e.lines,t),n=e.parent;n;e=n,n=n.parent)for(var i=0;n.children[i]!=e;++i)r+=n.children[i].chunkSize();return r+e.first}u(F,\"lineNo\");function ee(t,e){var r=t.first;t:do{for(var n=0;n<t.children.length;++n){var i=t.children[n],o=i.height;if(e<o){t=i;continue t}e-=o,r+=i.chunkSize()}return r}while(!t.lines);for(var l=0;l<t.lines.length;++l){var a=t.lines[l],s=a.height;if(e<s)break;e-=s}return r+l}u(ee,\"lineAtHeight\");function Be(t,e){return e>=t.first&&e<t.first+t.size}u(Be,\"isLine\");function br(t,e){return String(t.lineNumberFormatter(e+t.firstLineNumber))}u(br,\"lineNumberFor\");function v(t,e,r){if(r===void 0&&(r=null),!(this instanceof v))return new v(t,e,r);this.line=t,this.ch=e,this.sticky=r}u(v,\"Pos\");function N(t,e){return t.line-e.line||t.ch-e.ch}u(N,\"cmp\");function wr(t,e){return t.sticky==e.sticky&&N(t,e)==0}u(wr,\"equalCursorPos\");function xr(t){return v(t.line,t.ch)}u(xr,\"copyPos\");function bn(t,e){return N(t,e)<0?e:t}u(bn,\"maxPos\");function wn(t,e){return N(t,e)<0?t:e}u(wn,\"minPos\");function Di(t,e){return Math.max(t.first,Math.min(e,t.first+t.size-1))}u(Di,\"clipLine\");function O(t,e){if(e.line<t.first)return v(t.first,0);var r=t.first+t.size-1;return e.line>r?v(r,S(t,r).text.length):Gl(e,S(t,e.line).text.length)}u(O,\"clipPos\");function Gl(t,e){var r=t.ch;return r==null||r>e?v(t.line,e):r<0?v(t.line,0):t}u(Gl,\"clipToLen\");function Ai(t,e){for(var r=[],n=0;n<e.length;n++)r[n]=O(t,e[n]);return r}u(Ai,\"clipPosArray\");var Cr=u(function(t,e){this.state=t,this.lookAhead=e},\"SavedContext\"),Wt=u(function(t,e,r,n){this.state=e,this.doc=t,this.line=r,this.maxLookAhead=n||0,this.baseTokens=null,this.baseTokenPos=1},\"Context\");Wt.prototype.lookAhead=function(t){var e=this.doc.getLine(this.line+t);return e!=null&&t>this.maxLookAhead&&(this.maxLookAhead=t),e},Wt.prototype.baseToken=function(t){if(!this.baseTokens)return null;for(;this.baseTokens[this.baseTokenPos]<=t;)this.baseTokenPos+=2;var e=this.baseTokens[this.baseTokenPos+1];return{type:e&&e.replace(/( |^)overlay .*/,\"\"),size:this.baseTokens[this.baseTokenPos]-t}},Wt.prototype.nextLine=function(){this.line++,this.maxLookAhead>0&&this.maxLookAhead--},Wt.fromSaved=function(t,e,r){return e instanceof Cr?new Wt(t,Jt(t.mode,e.state),r,e.lookAhead):new Wt(t,Jt(t.mode,e),r)},Wt.prototype.save=function(t){var e=t!==!1?Jt(this.doc.mode,this.state):this.state;return this.maxLookAhead>0?new Cr(e,this.maxLookAhead):e};function Wi(t,e,r,n){var i=[t.state.modeGen],o={};Ii(t,e.text,t.doc.mode,r,function(c,h){return i.push(c,h)},o,n);for(var l=r.state,a=u(function(c){r.baseTokens=i;var h=t.state.overlays[c],d=1,p=0;r.state=!0,Ii(t,e.text,h.mode,r,function(f,g){for(var m=d;p<f;){var y=i[d];y>f&&i.splice(d,1,f,i[d+1],y),d+=2,p=Math.min(f,y)}if(g)if(h.opaque)i.splice(m,d-m,f,\"overlay \"+g),d=m+2;else for(;m<d;m+=2){var b=i[m+1];i[m+1]=(b?b+\" \":\"\")+\"overlay \"+g}},o),r.state=l,r.baseTokens=null,r.baseTokenPos=1},\"loop\"),s=0;s<t.state.overlays.length;++s)a(s);return{styles:i,classes:o.bgClass||o.textClass?o:null}}u(Wi,\"highlightLine\");function Hi(t,e,r){if(!e.styles||e.styles[0]!=t.state.modeGen){var n=Ue(t,F(e)),i=e.text.length>t.options.maxHighlightLength&&Jt(t.doc.mode,n.state),o=Wi(t,e,n);i&&(n.state=i),e.stateAfter=n.save(!i),e.styles=o.styles,o.classes?e.styleClasses=o.classes:e.styleClasses&&(e.styleClasses=null),r===t.doc.highlightFrontier&&(t.doc.modeFrontier=Math.max(t.doc.modeFrontier,++t.doc.highlightFrontier))}return e.styles}u(Hi,\"getLineStyles\");function Ue(t,e,r){var n=t.doc,i=t.display;if(!n.mode.startState)return new Wt(n,!0,e);var o=Vl(t,e,r),l=o>n.first&&S(n,o-1).stateAfter,a=l?Wt.fromSaved(n,l,o):new Wt(n,Oi(n.mode),o);return n.iter(o,e,function(s){Sr(t,s.text,a);var c=a.line;s.stateAfter=c==e-1||c%5==0||c>=i.viewFrom&&c<i.viewTo?a.save():null,a.nextLine()}),r&&(n.modeFrontier=a.line),a}u(Ue,\"getContextBefore\");function Sr(t,e,r,n){var i=t.doc.mode,o=new K(e,t.options.tabSize,r);for(o.start=o.pos=n||0,e==\"\"&&Fi(i,r.state);!o.eol();)Lr(i,o,r.state),o.start=o.pos}u(Sr,\"processLine\");function Fi(t,e){if(t.blankLine)return t.blankLine(e);if(t.innerMode){var r=vr(t,e);if(r.mode.blankLine)return r.mode.blankLine(r.state)}}u(Fi,\"callBlankLine\");function Lr(t,e,r,n){for(var i=0;i<10;i++){n&&(n[0]=vr(t,r).mode);var o=t.token(e,r);if(e.pos>e.start)return o}throw new Error(\"Mode \"+t.name+\" failed to advance stream.\")}u(Lr,\"readToken\");var Kl=u(function(t,e,r){this.start=t.start,this.end=t.pos,this.string=t.current(),this.type=e||null,this.state=r},\"Token\");function Pi(t,e,r,n){var i=t.doc,o=i.mode,l;e=O(i,e);var a=S(i,e.line),s=Ue(t,e.line,r),c=new K(a.text,t.options.tabSize,s),h;for(n&&(h=[]);(n||c.pos<e.ch)&&!c.eol();)c.start=c.pos,l=Lr(o,c,s.state),n&&h.push(new Kl(c,l,Jt(i.mode,s.state)));return n?h:new Kl(c,l,s.state)}u(Pi,\"takeToken\");function Ei(t,e){if(t)for(;;){var r=t.match(/(?:^|\\s+)line-(background-)?(\\S+)/);if(!r)break;t=t.slice(0,r.index)+t.slice(r.index+r[0].length);var n=r[1]?\"bgClass\":\"textClass\";e[n]==null?e[n]=r[2]:new RegExp(\"(?:^|\\\\s)\"+r[2]+\"(?:$|\\\\s)\").test(e[n])||(e[n]+=\" \"+r[2])}return t}u(Ei,\"extractLineClasses\");function Ii(t,e,r,n,i,o,l){var a=r.flattenSpans;a==null&&(a=t.options.flattenSpans);var s=0,c=null,h=new K(e,t.options.tabSize,n),d,p=t.options.addModeClass&&[null];for(e==\"\"&&Ei(Fi(r,n.state),o);!h.eol();){if(h.pos>t.options.maxHighlightLength?(a=!1,l&&Sr(t,e,n,h.pos),h.pos=e.length,d=null):d=Ei(Lr(r,h,n.state,p),o),p){var f=p[0].name;f&&(d=\"m-\"+(d?f+\" \"+d:f))}if(!a||c!=d){for(;s<h.start;)s=Math.min(h.start,s+5e3),i(s,c);c=d}h.start=h.pos}for(;s<h.pos;){var g=Math.min(h.pos,s+5e3);i(g,c),s=g}}u(Ii,\"runMode\");function Vl(t,e,r){for(var n,i,o=t.doc,l=r?-1:e-(t.doc.mode.innerMode?1e3:100),a=e;a>l;--a){if(a<=o.first)return o.first;var s=S(o,a-1),c=s.stateAfter;if(c&&(!r||a+(c instanceof Cr?c.lookAhead:0)<=o.modeFrontier))return a;var h=yt(s.text,null,t.options.tabSize);(i==null||n>h)&&(i=a-1,n=h)}return i}u(Vl,\"findStartLine\");function jl(t,e){if(t.modeFrontier=Math.min(t.modeFrontier,e),!(t.highlightFrontier<e-10)){for(var r=t.first,n=e-1;n>r;n--){var i=S(t,n).stateAfter;if(i&&(!(i instanceof Cr)||n+i.lookAhead<e)){r=n+1;break}}t.highlightFrontier=Math.min(t.highlightFrontier,r)}}u(jl,\"retreatFrontier\");var Xl=!1,Bt=!1;function _l(){Xl=!0}u(_l,\"seeReadOnlySpans\");function ql(){Bt=!0}u(ql,\"seeCollapsedSpans\");function xn(t,e,r){this.marker=t,this.from=e,this.to=r}u(xn,\"MarkedSpan\");function Ge(t,e){if(t)for(var r=0;r<t.length;++r){var n=t[r];if(n.marker==e)return n}}u(Ge,\"getMarkedSpanFor\");function Yl(t,e){for(var r,n=0;n<t.length;++n)t[n]!=e&&(r||(r=[])).push(t[n]);return r}u(Yl,\"removeMarkedSpan\");function Zl(t,e,r){var n=r&&window.WeakSet&&(r.markedSpans||(r.markedSpans=new WeakSet));n&&t.markedSpans&&n.has(t.markedSpans)?t.markedSpans.push(e):(t.markedSpans=t.markedSpans?t.markedSpans.concat([e]):[e],n&&n.add(t.markedSpans)),e.marker.attachLine(t)}u(Zl,\"addMarkedSpan\");function $l(t,e,r){var n;if(t)for(var i=0;i<t.length;++i){var o=t[i],l=o.marker,a=o.from==null||(l.inclusiveLeft?o.from<=e:o.from<e);if(a||o.from==e&&l.type==\"bookmark\"&&(!r||!o.marker.insertLeft)){var s=o.to==null||(l.inclusiveRight?o.to>=e:o.to>e);(n||(n=[])).push(new xn(l,o.from,s?null:o.to))}}return n}u($l,\"markedSpansBefore\");function Ql(t,e,r){var n;if(t)for(var i=0;i<t.length;++i){var o=t[i],l=o.marker,a=o.to==null||(l.inclusiveRight?o.to>=e:o.to>e);if(a||o.from==e&&l.type==\"bookmark\"&&(!r||o.marker.insertLeft)){var s=o.from==null||(l.inclusiveLeft?o.from<=e:o.from<e);(n||(n=[])).push(new xn(l,s?null:o.from-e,o.to==null?null:o.to-e))}}return n}u(Ql,\"markedSpansAfter\");function kr(t,e){if(e.full)return null;var r=Be(t,e.from.line)&&S(t,e.from.line).markedSpans,n=Be(t,e.to.line)&&S(t,e.to.line).markedSpans;if(!r&&!n)return null;var i=e.from.ch,o=e.to.ch,l=N(e.from,e.to)==0,a=$l(r,i,l),s=Ql(n,o,l),c=e.text.length==1,h=W(e.text).length+(c?i:0);if(a)for(var d=0;d<a.length;++d){var p=a[d];if(p.to==null){var f=Ge(s,p.marker);f?c&&(p.to=f.to==null?null:f.to+h):p.to=i}}if(s)for(var g=0;g<s.length;++g){var m=s[g];if(m.to!=null&&(m.to+=h),m.from==null){var y=Ge(a,m.marker);y||(m.from=h,c&&(a||(a=[])).push(m))}else m.from+=h,c&&(a||(a=[])).push(m)}a&&(a=Ri(a)),s&&s!=a&&(s=Ri(s));var b=[a];if(!c){var x=e.text.length-2,w;if(x>0&&a)for(var C=0;C<a.length;++C)a[C].to==null&&(w||(w=[])).push(new xn(a[C].marker,null,null));for(var T=0;T<x;++T)b.push(w);b.push(s)}return b}u(kr,\"stretchSpansOverChange\");function Ri(t){for(var e=0;e<t.length;++e){var r=t[e];r.from!=null&&r.from==r.to&&r.marker.clearWhenEmpty!==!1&&t.splice(e--,1)}return t.length?t:null}u(Ri,\"clearEmptySpans\");function Jl(t,e,r){var n=null;if(t.iter(e.line,r.line+1,function(f){if(f.markedSpans)for(var g=0;g<f.markedSpans.length;++g){var m=f.markedSpans[g].marker;m.readOnly&&(!n||J(n,m)==-1)&&(n||(n=[])).push(m)}}),!n)return null;for(var i=[{from:e,to:r}],o=0;o<n.length;++o)for(var l=n[o],a=l.find(0),s=0;s<i.length;++s){var c=i[s];if(!(N(c.to,a.from)<0||N(c.from,a.to)>0)){var h=[s,1],d=N(c.from,a.from),p=N(c.to,a.to);(d<0||!l.inclusiveLeft&&!d)&&h.push({from:c.from,to:a.from}),(p>0||!l.inclusiveRight&&!p)&&h.push({from:a.to,to:c.to}),i.splice.apply(i,h),s+=h.length-3}}return i}u(Jl,\"removeReadOnlyRanges\");function zi(t){var e=t.markedSpans;if(e){for(var r=0;r<e.length;++r)e[r].marker.detachLine(t);t.markedSpans=null}}u(zi,\"detachMarkedSpans\");function Bi(t,e){if(e){for(var r=0;r<e.length;++r)e[r].marker.attachLine(t);t.markedSpans=e}}u(Bi,\"attachMarkedSpans\");function Cn(t){return t.inclusiveLeft?-1:0}u(Cn,\"extraLeft\");function Sn(t){return t.inclusiveRight?1:0}u(Sn,\"extraRight\");function Tr(t,e){var r=t.lines.length-e.lines.length;if(r!=0)return r;var n=t.find(),i=e.find(),o=N(n.from,i.from)||Cn(t)-Cn(e);if(o)return-o;var l=N(n.to,i.to)||Sn(t)-Sn(e);return l||e.id-t.id}u(Tr,\"compareCollapsedMarkers\");function Ui(t,e){var r=Bt&&t.markedSpans,n;if(r)for(var i=void 0,o=0;o<r.length;++o)i=r[o],i.marker.collapsed&&(e?i.from:i.to)==null&&(!n||Tr(n,i.marker)<0)&&(n=i.marker);return n}u(Ui,\"collapsedSpanAtSide\");function Gi(t){return Ui(t,!0)}u(Gi,\"collapsedSpanAtStart\");function Ln(t){return Ui(t,!1)}u(Ln,\"collapsedSpanAtEnd\");function ta(t,e){var r=Bt&&t.markedSpans,n;if(r)for(var i=0;i<r.length;++i){var o=r[i];o.marker.collapsed&&(o.from==null||o.from<e)&&(o.to==null||o.to>e)&&(!n||Tr(n,o.marker)<0)&&(n=o.marker)}return n}u(ta,\"collapsedSpanAround\");function Ki(t,e,r,n,i){var o=S(t,e),l=Bt&&o.markedSpans;if(l)for(var a=0;a<l.length;++a){var s=l[a];if(s.marker.collapsed){var c=s.marker.find(0),h=N(c.from,r)||Cn(s.marker)-Cn(i),d=N(c.to,n)||Sn(s.marker)-Sn(i);if(!(h>=0&&d<=0||h<=0&&d>=0)&&(h<=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?N(c.to,r)>=0:N(c.to,r)>0)||h>=0&&(s.marker.inclusiveRight&&i.inclusiveLeft?N(c.from,n)<=0:N(c.from,n)<0)))return!0}}}u(Ki,\"conflictingCollapsedRange\");function Ct(t){for(var e;e=Gi(t);)t=e.find(-1,!0).line;return t}u(Ct,\"visualLine\");function ea(t){for(var e;e=Ln(t);)t=e.find(1,!0).line;return t}u(ea,\"visualLineEnd\");function na(t){for(var e,r;e=Ln(t);)t=e.find(1,!0).line,(r||(r=[])).push(t);return r}u(na,\"visualLineContinued\");function Mr(t,e){var r=S(t,e),n=Ct(r);return r==n?e:F(n)}u(Mr,\"visualLineNo\");function Vi(t,e){if(e>t.lastLine())return e;var r=S(t,e),n;if(!Ut(t,r))return e;for(;n=Ln(r);)r=n.find(1,!0).line;return F(r)+1}u(Vi,\"visualLineEndNo\");function Ut(t,e){var r=Bt&&e.markedSpans;if(r){for(var n=void 0,i=0;i<r.length;++i)if(n=r[i],!!n.marker.collapsed&&(n.from==null||!n.marker.widgetNode&&n.from==0&&n.marker.inclusiveLeft&&Nr(t,e,n)))return!0}}u(Ut,\"lineIsHidden\");function Nr(t,e,r){if(r.to==null){var n=r.marker.find(1,!0);return Nr(t,n.line,Ge(n.line.markedSpans,r.marker))}if(r.marker.inclusiveRight&&r.to==e.text.length)return!0;for(var i=void 0,o=0;o<e.markedSpans.length;++o)if(i=e.markedSpans[o],i.marker.collapsed&&!i.marker.widgetNode&&i.from==r.to&&(i.to==null||i.to!=r.from)&&(i.marker.inclusiveLeft||r.marker.inclusiveRight)&&Nr(t,e,i))return!0}u(Nr,\"lineIsHiddenInner\");function Ht(t){t=Ct(t);for(var e=0,r=t.parent,n=0;n<r.lines.length;++n){var i=r.lines[n];if(i==t)break;e+=i.height}for(var o=r.parent;o;r=o,o=r.parent)for(var l=0;l<o.children.length;++l){var a=o.children[l];if(a==r)break;e+=a.height}return e}u(Ht,\"heightAtLine\");function kn(t){if(t.height==0)return 0;for(var e=t.text.length,r,n=t;r=Gi(n);){var i=r.find(0,!0);n=i.from.line,e+=i.from.ch-i.to.ch}for(n=t;r=Ln(n);){var o=r.find(0,!0);e-=n.text.length-o.from.ch,n=o.to.line,e+=n.text.length-o.to.ch}return e}u(kn,\"lineLength\");function Or(t){var e=t.display,r=t.doc;e.maxLine=S(r,r.first),e.maxLineLength=kn(e.maxLine),e.maxLineChanged=!0,r.iter(function(n){var i=kn(n);i>e.maxLineLength&&(e.maxLineLength=i,e.maxLine=n)})}u(Or,\"findMaxLine\");var Ke=u(function(t,e,r){this.text=t,Bi(this,e),this.height=r?r(this):1},\"Line\");Ke.prototype.lineNo=function(){return F(this)},me(Ke);function ra(t,e,r,n){t.text=e,t.stateAfter&&(t.stateAfter=null),t.styles&&(t.styles=null),t.order!=null&&(t.order=null),zi(t),Bi(t,r);var i=n?n(t):1;i!=t.height&&Tt(t,i)}u(ra,\"updateLine\");function ia(t){t.parent=null,zi(t)}u(ia,\"cleanUpLine\");var eu={},nu={};function ji(t,e){if(!t||/^\\s*$/.test(t))return null;var r=e.addModeClass?nu:eu;return r[t]||(r[t]=t.replace(/\\S+/g,\"cm-$&\"))}u(ji,\"interpretTokenStyle\");function Xi(t,e){var r=pe(\"span\",null,null,ot?\"padding-right: .1px\":null),n={pre:pe(\"pre\",[r],\"CodeMirror-line\"),content:r,col:0,pos:0,cm:t,trailingSpace:!1,splitSpaces:t.getOption(\"lineWrapping\")};e.measure={};for(var i=0;i<=(e.rest?e.rest.length:0);i++){var o=i?e.rest[i-1]:e.line,l=void 0;n.pos=0,n.addToken=la,Il(t.display.measure)&&(l=At(o,t.doc.direction))&&(n.addToken=sa(n.addToken,l)),n.map=[];var a=e!=t.display.externalMeasured&&F(o);ua(o,n,Hi(t,o,a)),o.styleClasses&&(o.styleClasses.bgClass&&(n.bgClass=or(o.styleClasses.bgClass,n.bgClass||\"\")),o.styleClasses.textClass&&(n.textClass=or(o.styleClasses.textClass,n.textClass||\"\"))),n.map.length==0&&n.map.push(0,0,n.content.appendChild(El(t.display.measure))),i==0?(e.measure.map=n.map,e.measure.cache={}):((e.measure.maps||(e.measure.maps=[])).push(n.map),(e.measure.caches||(e.measure.caches=[])).push({}))}if(ot){var s=n.content.lastChild;(/\\bcm-tab\\b/.test(s.className)||s.querySelector&&s.querySelector(\".cm-tab\"))&&(n.content.className=\"cm-tab-wrap-hack\")}return U(t,\"renderLine\",t,e.line,n.pre),n.pre.className&&(n.textClass=or(n.pre.className,n.textClass||\"\")),n}u(Xi,\"buildLineContent\");function oa(t){var e=k(\"span\",\"•\",\"cm-invalidchar\");return e.title=\"\\\\u\"+t.charCodeAt(0).toString(16),e.setAttribute(\"aria-label\",e.title),e}u(oa,\"defaultSpecialCharPlaceholder\");function la(t,e,r,n,i,o,l){if(e){var a=t.splitSpaces?aa(e,t.trailingSpace):e,s=t.cm.state.specialChars,c=!1,h;if(!s.test(e))t.col+=e.length,h=document.createTextNode(a),t.map.push(t.pos,t.pos+e.length,h),A&&I<9&&(c=!0),t.pos+=e.length;else{h=document.createDocumentFragment();for(var d=0;;){s.lastIndex=d;var p=s.exec(e),f=p?p.index-d:e.length-d;if(f){var g=document.createTextNode(a.slice(d,d+f));A&&I<9?h.appendChild(k(\"span\",[g])):h.appendChild(g),t.map.push(t.pos,t.pos+f,g),t.col+=f,t.pos+=f}if(!p)break;d+=f+1;var m=void 0;if(p[0]==\"\t\"){var y=t.cm.options.tabSize,b=y-t.col%y;m=h.appendChild(k(\"span\",cr(b),\"cm-tab\")),m.setAttribute(\"role\",\"presentation\"),m.setAttribute(\"cm-text\",\"\t\"),t.col+=b}else p[0]==\"\\r\"||p[0]==`\n`?(m=h.appendChild(k(\"span\",p[0]==\"\\r\"?\"␍\":\"␤\",\"cm-invalidchar\")),m.setAttribute(\"cm-text\",p[0]),t.col+=1):(m=t.cm.options.specialCharPlaceholder(p[0]),m.setAttribute(\"cm-text\",p[0]),A&&I<9?h.appendChild(k(\"span\",[m])):h.appendChild(m),t.col+=1);t.map.push(t.pos,t.pos+1,m),t.pos++}}if(t.trailingSpace=a.charCodeAt(e.length-1)==32,r||n||i||c||o||l){var x=r||\"\";n&&(x+=n),i&&(x+=i);var w=k(\"span\",[h],x,o);if(l)for(var C in l)l.hasOwnProperty(C)&&C!=\"style\"&&C!=\"class\"&&w.setAttribute(C,l[C]);return t.content.appendChild(w)}t.content.appendChild(h)}}u(la,\"buildToken\");function aa(t,e){if(t.length>1&&!/  /.test(t))return t;for(var r=e,n=\"\",i=0;i<t.length;i++){var o=t.charAt(i);o==\" \"&&r&&(i==t.length-1||t.charCodeAt(i+1)==32)&&(o=\" \"),n+=o,r=o==\" \"}return n}u(aa,\"splitSpaces\");function sa(t,e){return function(r,n,i,o,l,a,s){i=i?i+\" cm-force-border\":\"cm-force-border\";for(var c=r.pos,h=c+n.length;;){for(var d=void 0,p=0;p<e.length&&(d=e[p],!(d.to>c&&d.from<=c));p++);if(d.to>=h)return t(r,n,i,o,l,a,s);t(r,n.slice(0,d.to-c),i,o,null,a,s),o=null,n=n.slice(d.to-c),c=d.to}}}u(sa,\"buildTokenBadBidi\");function _i(t,e,r,n){var i=!n&&r.widgetNode;i&&t.map.push(t.pos,t.pos+e,i),!n&&t.cm.display.input.needsContentAttribute&&(i||(i=t.content.appendChild(document.createElement(\"span\"))),i.setAttribute(\"cm-marker\",r.id)),i&&(t.cm.display.input.setUneditable(i),t.content.appendChild(i)),t.pos+=e,t.trailingSpace=!1}u(_i,\"buildCollapsedSpan\");function ua(t,e,r){var n=t.markedSpans,i=t.text,o=0;if(!n){for(var l=1;l<r.length;l+=2)e.addToken(e,i.slice(o,o=r[l]),ji(r[l+1],e.cm.options));return}for(var a=i.length,s=0,c=1,h=\"\",d,p,f=0,g,m,y,b,x;;){if(f==s){g=m=y=p=\"\",x=null,b=null,f=1/0;for(var w=[],C=void 0,T=0;T<n.length;++T){var L=n[T],D=L.marker;if(D.type==\"bookmark\"&&L.from==s&&D.widgetNode)w.push(D);else if(L.from<=s&&(L.to==null||L.to>s||D.collapsed&&L.to==s&&L.from==s)){if(L.to!=null&&L.to!=s&&f>L.to&&(f=L.to,m=\"\"),D.className&&(g+=\" \"+D.className),D.css&&(p=(p?p+\";\":\"\")+D.css),D.startStyle&&L.from==s&&(y+=\" \"+D.startStyle),D.endStyle&&L.to==f&&(C||(C=[])).push(D.endStyle,L.to),D.title&&((x||(x={})).title=D.title),D.attributes)for(var E in D.attributes)(x||(x={}))[E]=D.attributes[E];D.collapsed&&(!b||Tr(b.marker,D)<0)&&(b=L)}else L.from>s&&f>L.from&&(f=L.from)}if(C)for(var $=0;$<C.length;$+=2)C[$+1]==f&&(m+=\" \"+C[$]);if(!b||b.from==s)for(var z=0;z<w.length;++z)_i(e,0,w[z]);if(b&&(b.from||0)==s){if(_i(e,(b.to==null?a+1:b.to)-s,b.marker,b.from==null),b.to==null)return;b.to==s&&(b=!1)}}if(s>=a)break;for(var ht=Math.min(a,f);;){if(h){var dt=s+h.length;if(!b){var V=dt>ht?h.slice(0,ht-s):h;e.addToken(e,V,d?d+g:g,y,s+V.length==f?m:\"\",p,x)}if(dt>=ht){h=h.slice(ht-s),s=ht;break}s=dt,y=\"\"}h=i.slice(o,o=r[c++]),d=ji(r[c++],e.cm.options)}}}u(ua,\"insertLineContent\");function qi(t,e,r){this.line=e,this.rest=na(e),this.size=this.rest?F(W(this.rest))-r+1:1,this.node=this.text=null,this.hidden=Ut(t,e)}u(qi,\"LineView\");function Tn(t,e,r){for(var n=[],i,o=e;o<r;o=i){var l=new qi(t.doc,S(t.doc,o),o);i=o+l.size,n.push(l)}return n}u(Tn,\"buildViewArray\");var Ve=null;function ca(t){Ve?Ve.ops.push(t):t.ownsGroup=Ve={ops:[t],delayedCallbacks:[]}}u(ca,\"pushOperation\");function ha(t){var e=t.delayedCallbacks,r=0;do{for(;r<e.length;r++)e[r].call(null);for(var n=0;n<t.ops.length;n++){var i=t.ops[n];if(i.cursorActivityHandlers)for(;i.cursorActivityCalled<i.cursorActivityHandlers.length;)i.cursorActivityHandlers[i.cursorActivityCalled++].call(null,i.cm)}}while(r<e.length)}u(ha,\"fireCallbacksForOps\");function da(t,e){var r=t.ownsGroup;if(r)try{ha(r)}finally{Ve=null,e(r)}}u(da,\"finishOperation\");var Mn=null;function _(t,e){var r=fr(t,e);if(r.length){var n=Array.prototype.slice.call(arguments,2),i;Ve?i=Ve.delayedCallbacks:Mn?i=Mn:(i=Mn=[],setTimeout(fa,0));for(var o=u(function(a){i.push(function(){return r[a].apply(null,n)})},\"loop\"),l=0;l<r.length;++l)o(l)}}u(_,\"signalLater\");function fa(){var t=Mn;Mn=null;for(var e=0;e<t.length;++e)t[e]()}u(fa,\"fireOrphanDelayed\");function Yi(t,e,r,n){for(var i=0;i<e.changes.length;i++){var o=e.changes[i];o==\"text\"?ga(t,e):o==\"gutter\"?$i(t,e,r,n):o==\"class\"?Dr(t,e):o==\"widget\"&&ma(t,e,n)}e.changes=null}u(Yi,\"updateLineForChanges\");function je(t){return t.node==t.text&&(t.node=k(\"div\",null,null,\"position: relative\"),t.text.parentNode&&t.text.parentNode.replaceChild(t.node,t.text),t.node.appendChild(t.text),A&&I<8&&(t.node.style.zIndex=2)),t.node}u(je,\"ensureLineWrapped\");function pa(t,e){var r=e.bgClass?e.bgClass+\" \"+(e.line.bgClass||\"\"):e.line.bgClass;if(r&&(r+=\" CodeMirror-linebackground\"),e.background)r?e.background.className=r:(e.background.parentNode.removeChild(e.background),e.background=null);else if(r){var n=je(e);e.background=n.insertBefore(k(\"div\",null,r),n.firstChild),t.display.input.setUneditable(e.background)}}u(pa,\"updateLineBackground\");function Zi(t,e){var r=t.display.externalMeasured;return r&&r.line==e.line?(t.display.externalMeasured=null,e.measure=r.measure,r.built):Xi(t,e)}u(Zi,\"getLineContent\");function ga(t,e){var r=e.text.className,n=Zi(t,e);e.text==e.node&&(e.node=n.pre),e.text.parentNode.replaceChild(n.pre,e.text),e.text=n.pre,n.bgClass!=e.bgClass||n.textClass!=e.textClass?(e.bgClass=n.bgClass,e.textClass=n.textClass,Dr(t,e)):r&&(e.text.className=r)}u(ga,\"updateLineText\");function Dr(t,e){pa(t,e),e.line.wrapClass?je(e).className=e.line.wrapClass:e.node!=e.text&&(e.node.className=\"\");var r=e.textClass?e.textClass+\" \"+(e.line.textClass||\"\"):e.line.textClass;e.text.className=r||\"\"}u(Dr,\"updateLineClasses\");function $i(t,e,r,n){if(e.gutter&&(e.node.removeChild(e.gutter),e.gutter=null),e.gutterBackground&&(e.node.removeChild(e.gutterBackground),e.gutterBackground=null),e.line.gutterClass){var i=je(e);e.gutterBackground=k(\"div\",null,\"CodeMirror-gutter-background \"+e.line.gutterClass,\"left: \"+(t.options.fixedGutter?n.fixedPos:-n.gutterTotalWidth)+\"px; width: \"+n.gutterTotalWidth+\"px\"),t.display.input.setUneditable(e.gutterBackground),i.insertBefore(e.gutterBackground,e.text)}var o=e.line.gutterMarkers;if(t.options.lineNumbers||o){var l=je(e),a=e.gutter=k(\"div\",null,\"CodeMirror-gutter-wrapper\",\"left: \"+(t.options.fixedGutter?n.fixedPos:-n.gutterTotalWidth)+\"px\");if(a.setAttribute(\"aria-hidden\",\"true\"),t.display.input.setUneditable(a),l.insertBefore(a,e.text),e.line.gutterClass&&(a.className+=\" \"+e.line.gutterClass),t.options.lineNumbers&&(!o||!o[\"CodeMirror-linenumbers\"])&&(e.lineNumber=a.appendChild(k(\"div\",br(t.options,r),\"CodeMirror-linenumber CodeMirror-gutter-elt\",\"left: \"+n.gutterLeft[\"CodeMirror-linenumbers\"]+\"px; width: \"+t.display.lineNumInnerWidth+\"px\"))),o)for(var s=0;s<t.display.gutterSpecs.length;++s){var c=t.display.gutterSpecs[s].className,h=o.hasOwnProperty(c)&&o[c];h&&a.appendChild(k(\"div\",[h],\"CodeMirror-gutter-elt\",\"left: \"+n.gutterLeft[c]+\"px; width: \"+n.gutterWidth[c]+\"px\"))}}}u($i,\"updateLineGutter\");function ma(t,e,r){e.alignable&&(e.alignable=null);for(var n=de(\"CodeMirror-linewidget\"),i=e.node.firstChild,o=void 0;i;i=o)o=i.nextSibling,n.test(i.className)&&e.node.removeChild(i);Qi(t,e,r)}u(ma,\"updateLineWidgets\");function va(t,e,r,n){var i=Zi(t,e);return e.text=e.node=i.pre,i.bgClass&&(e.bgClass=i.bgClass),i.textClass&&(e.textClass=i.textClass),Dr(t,e),$i(t,e,r,n),Qi(t,e,n),e.node}u(va,\"buildLineElement\");function Qi(t,e,r){if(Ji(t,e.line,e,r,!0),e.rest)for(var n=0;n<e.rest.length;n++)Ji(t,e.rest[n],e,r,!1)}u(Qi,\"insertLineWidgets\");function Ji(t,e,r,n,i){if(e.widgets)for(var o=je(r),l=0,a=e.widgets;l<a.length;++l){var s=a[l],c=k(\"div\",[s.node],\"CodeMirror-linewidget\"+(s.className?\" \"+s.className:\"\"));s.handleMouseEvents||c.setAttribute(\"cm-ignore-events\",\"true\"),ya(s,c,r,n),t.display.input.setUneditable(c),i&&s.above?o.insertBefore(c,r.gutter||r.text):o.appendChild(c),_(s,\"redraw\")}}u(Ji,\"insertLineWidgetsFor\");function ya(t,e,r,n){if(t.noHScroll){(r.alignable||(r.alignable=[])).push(e);var i=n.wrapperWidth;e.style.left=n.fixedPos+\"px\",t.coverGutter||(i-=n.gutterTotalWidth,e.style.paddingLeft=n.gutterTotalWidth+\"px\"),e.style.width=i+\"px\"}t.coverGutter&&(e.style.zIndex=5,e.style.position=\"relative\",t.noHScroll||(e.style.marginLeft=-n.gutterTotalWidth+\"px\"))}u(ya,\"positionLineWidget\");function Xe(t){if(t.height!=null)return t.height;var e=t.doc.cm;if(!e)return 0;if(!zt(document.body,t.node)){var r=\"position: relative;\";t.coverGutter&&(r+=\"margin-left: -\"+e.display.gutters.offsetWidth+\"px;\"),t.noHScroll&&(r+=\"width: \"+e.display.wrapper.clientWidth+\"px;\"),gt(e.display.measure,k(\"div\",[t.node],null,r))}return t.height=t.node.parentNode.offsetHeight}u(Xe,\"widgetHeight\");function Ft(t,e){for(var r=gr(e);r!=t.wrapper;r=r.parentNode)if(!r||r.nodeType==1&&r.getAttribute(\"cm-ignore-events\")==\"true\"||r.parentNode==t.sizer&&r!=t.mover)return!0}u(Ft,\"eventInWidget\");function Nn(t){return t.lineSpace.offsetTop}u(Nn,\"paddingTop\");function Ar(t){return t.mover.offsetHeight-t.lineSpace.offsetHeight}u(Ar,\"paddingVert\");function to(t){if(t.cachedPaddingH)return t.cachedPaddingH;var e=gt(t.measure,k(\"pre\",\"x\",\"CodeMirror-line-like\")),r=window.getComputedStyle?window.getComputedStyle(e):e.currentStyle,n={left:parseInt(r.paddingLeft),right:parseInt(r.paddingRight)};return!isNaN(n.left)&&!isNaN(n.right)&&(t.cachedPaddingH=n),n}u(to,\"paddingH\");function Mt(t){return Wl-t.display.nativeBarWidth}u(Mt,\"scrollGap\");function ne(t){return t.display.scroller.clientWidth-Mt(t)-t.display.barWidth}u(ne,\"displayWidth\");function Wr(t){return t.display.scroller.clientHeight-Mt(t)-t.display.barHeight}u(Wr,\"displayHeight\");function ba(t,e,r){var n=t.options.lineWrapping,i=n&&ne(t);if(!e.measure.heights||n&&e.measure.width!=i){var o=e.measure.heights=[];if(n){e.measure.width=i;for(var l=e.text.firstChild.getClientRects(),a=0;a<l.length-1;a++){var s=l[a],c=l[a+1];Math.abs(s.bottom-c.bottom)>2&&o.push((s.bottom+c.top)/2-r.top)}}o.push(r.bottom-r.top)}}u(ba,\"ensureLineHeights\");function eo(t,e,r){if(t.line==e)return{map:t.measure.map,cache:t.measure.cache};if(t.rest){for(var n=0;n<t.rest.length;n++)if(t.rest[n]==e)return{map:t.measure.maps[n],cache:t.measure.caches[n]};for(var i=0;i<t.rest.length;i++)if(F(t.rest[i])>r)return{map:t.measure.maps[i],cache:t.measure.caches[i],before:!0}}}u(eo,\"mapFromLineView\");function wa(t,e){e=Ct(e);var r=F(e),n=t.display.externalMeasured=new qi(t.doc,e,r);n.lineN=r;var i=n.built=Xi(t,n);return n.text=i.pre,gt(t.display.lineMeasure,i.pre),n}u(wa,\"updateExternalMeasurement\");function no(t,e,r,n){return Nt(t,ve(t,e),r,n)}u(no,\"measureChar\");function Hr(t,e){if(e>=t.display.viewFrom&&e<t.display.viewTo)return t.display.view[ie(t,e)];var r=t.display.externalMeasured;if(r&&e>=r.lineN&&e<r.lineN+r.size)return r}u(Hr,\"findViewForLine\");function ve(t,e){var r=F(e),n=Hr(t,r);n&&!n.text?n=null:n&&n.changes&&(Yi(t,n,r,Rr(t)),t.curOp.forceUpdate=!0),n||(n=wa(t,e));var i=eo(n,e,r);return{line:e,view:n,rect:null,map:i.map,cache:i.cache,before:i.before,hasHeights:!1}}u(ve,\"prepareMeasureForLine\");function Nt(t,e,r,n,i){e.before&&(r=-1);var o=r+(n||\"\"),l;return e.cache.hasOwnProperty(o)?l=e.cache[o]:(e.rect||(e.rect=e.view.text.getBoundingClientRect()),e.hasHeights||(ba(t,e.view,e.rect),e.hasHeights=!0),l=Sa(t,e,r,n),l.bogus||(e.cache[o]=l)),{left:l.left,right:l.right,top:i?l.rtop:l.top,bottom:i?l.rbottom:l.bottom}}u(Nt,\"measureCharPrepared\");var xa={left:0,right:0,top:0,bottom:0};function ro(t,e,r){for(var n,i,o,l,a,s,c=0;c<t.length;c+=3)if(a=t[c],s=t[c+1],e<a?(i=0,o=1,l=\"left\"):e<s?(i=e-a,o=i+1):(c==t.length-3||e==s&&t[c+3]>e)&&(o=s-a,i=o-1,e>=s&&(l=\"right\")),i!=null){if(n=t[c+2],a==s&&r==(n.insertLeft?\"left\":\"right\")&&(l=r),r==\"left\"&&i==0)for(;c&&t[c-2]==t[c-3]&&t[c-1].insertLeft;)n=t[(c-=3)+2],l=\"left\";if(r==\"right\"&&i==s-a)for(;c<t.length-3&&t[c+3]==t[c+4]&&!t[c+5].insertLeft;)n=t[(c+=3)+2],l=\"right\";break}return{node:n,start:i,end:o,collapse:l,coverStart:a,coverEnd:s}}u(ro,\"nodeAndOffsetInLineMap\");function Ca(t,e){var r=xa;if(e==\"left\")for(var n=0;n<t.length&&(r=t[n]).left==r.right;n++);else for(var i=t.length-1;i>=0&&(r=t[i]).left==r.right;i--);return r}u(Ca,\"getUsefulRect\");function Sa(t,e,r,n){var i=ro(e.map,r,n),o=i.node,l=i.start,a=i.end,s=i.collapse,c;if(o.nodeType==3){for(var h=0;h<4;h++){for(;l&&dr(e.line.text.charAt(i.coverStart+l));)--l;for(;i.coverStart+a<i.coverEnd&&dr(e.line.text.charAt(i.coverStart+a));)++a;if(A&&I<9&&l==0&&a==i.coverEnd-i.coverStart?c=o.parentNode.getBoundingClientRect():c=Ca(ge(o,l,a).getClientRects(),n),c.left||c.right||l==0)break;a=l,l=l-1,s=\"right\"}A&&I<11&&(c=La(t.display.measure,c))}else{l>0&&(s=n=\"right\");var d;t.options.lineWrapping&&(d=o.getClientRects()).length>1?c=d[n==\"right\"?d.length-1:0]:c=o.getBoundingClientRect()}if(A&&I<9&&!l&&(!c||!c.left&&!c.right)){var p=o.parentNode.getClientRects()[0];p?c={left:p.left,right:p.left+we(t.display),top:p.top,bottom:p.bottom}:c=xa}for(var f=c.top-e.rect.top,g=c.bottom-e.rect.top,m=(f+g)/2,y=e.view.measure.heights,b=0;b<y.length-1&&!(m<y[b]);b++);var x=b?y[b-1]:0,w=y[b],C={left:(s==\"right\"?c.right:c.left)-e.rect.left,right:(s==\"left\"?c.left:c.right)-e.rect.left,top:x,bottom:w};return!c.left&&!c.right&&(C.bogus=!0),t.options.singleCursorHeightPerLine||(C.rtop=f,C.rbottom=g),C}u(Sa,\"measureCharInner\");function La(t,e){if(!window.screen||screen.logicalXDPI==null||screen.logicalXDPI==screen.deviceXDPI||!Rl(t))return e;var r=screen.logicalXDPI/screen.deviceXDPI,n=screen.logicalYDPI/screen.deviceYDPI;return{left:e.left*r,right:e.right*r,top:e.top*n,bottom:e.bottom*n}}u(La,\"maybeUpdateRectForZooming\");function io(t){if(t.measure&&(t.measure.cache={},t.measure.heights=null,t.rest))for(var e=0;e<t.rest.length;e++)t.measure.caches[e]={}}u(io,\"clearLineMeasurementCacheFor\");function oo(t){t.display.externalMeasure=null,Rt(t.display.lineMeasure);for(var e=0;e<t.display.view.length;e++)io(t.display.view[e])}u(oo,\"clearLineMeasurementCache\");function _e(t){oo(t),t.display.cachedCharWidth=t.display.cachedTextHeight=t.display.cachedPaddingH=null,t.options.lineWrapping||(t.display.maxLineChanged=!0),t.display.lineNumChars=null}u(_e,\"clearCaches\");function lo(){return nr&&ir?-(document.body.getBoundingClientRect().left-parseInt(getComputedStyle(document.body).marginLeft)):window.pageXOffset||(document.documentElement||document.body).scrollLeft}u(lo,\"pageScrollX\");function ao(){return nr&&ir?-(document.body.getBoundingClientRect().top-parseInt(getComputedStyle(document.body).marginTop)):window.pageYOffset||(document.documentElement||document.body).scrollTop}u(ao,\"pageScrollY\");function Fr(t){var e=Ct(t),r=e.widgets,n=0;if(r)for(var i=0;i<r.length;++i)r[i].above&&(n+=Xe(r[i]));return n}u(Fr,\"widgetTopHeight\");function On(t,e,r,n,i){if(!i){var o=Fr(e);r.top+=o,r.bottom+=o}if(n==\"line\")return r;n||(n=\"local\");var l=Ht(e);if(n==\"local\"?l+=Nn(t.display):l-=t.display.viewOffset,n==\"page\"||n==\"window\"){var a=t.display.lineSpace.getBoundingClientRect();l+=a.top+(n==\"window\"?0:ao());var s=a.left+(n==\"window\"?0:lo());r.left+=s,r.right+=s}return r.top+=l,r.bottom+=l,r}u(On,\"intoCoordSystem\");function so(t,e,r){if(r==\"div\")return e;var n=e.left,i=e.top;if(r==\"page\")n-=lo(),i-=ao();else if(r==\"local\"||!r){var o=t.display.sizer.getBoundingClientRect();n+=o.left,i+=o.top}var l=t.display.lineSpace.getBoundingClientRect();return{left:n-l.left,top:i-l.top}}u(so,\"fromCoordSystem\");function Dn(t,e,r,n,i){return n||(n=S(t.doc,e.line)),On(t,n,no(t,n,e.ch,i),r)}u(Dn,\"charCoords\");function St(t,e,r,n,i,o){n=n||S(t.doc,e.line),i||(i=ve(t,n));function l(g,m){var y=Nt(t,i,g,m?\"right\":\"left\",o);return m?y.left=y.right:y.right=y.left,On(t,n,y,r)}u(l,\"get\");var a=At(n,t.doc.direction),s=e.ch,c=e.sticky;if(s>=n.text.length?(s=n.text.length,c=\"before\"):s<=0&&(s=0,c=\"after\"),!a)return l(c==\"before\"?s-1:s,c==\"before\");function h(g,m,y){var b=a[m],x=b.level==1;return l(y?g-1:g,x!=y)}u(h,\"getBidi\");var d=Ee(a,s,c),p=vn,f=h(s,d,c==\"before\");return p!=null&&(f.other=h(s,p,c!=\"before\")),f}u(St,\"cursorCoords\");function uo(t,e){var r=0;e=O(t.doc,e),t.options.lineWrapping||(r=we(t.display)*e.ch);var n=S(t.doc,e.line),i=Ht(n)+Nn(t.display);return{left:r,right:r,top:i,bottom:i+n.height}}u(uo,\"estimateCoords\");function Pr(t,e,r,n,i){var o=v(t,e,r);return o.xRel=i,n&&(o.outside=n),o}u(Pr,\"PosWithInfo\");function Er(t,e,r){var n=t.doc;if(r+=t.display.viewOffset,r<0)return Pr(n.first,0,null,-1,-1);var i=ee(n,r),o=n.first+n.size-1;if(i>o)return Pr(n.first+n.size-1,S(n,o).text.length,null,1,1);e<0&&(e=0);for(var l=S(n,i);;){var a=ka(t,l,i,e,r),s=ta(l,a.ch+(a.xRel>0||a.outside>0?1:0));if(!s)return a;var c=s.find(1);if(c.line==i)return c;l=S(n,i=c.line)}}u(Er,\"coordsChar\");function co(t,e,r,n){n-=Fr(e);var i=e.text.length,o=Pe(function(l){return Nt(t,r,l-1).bottom<=n},i,0);return i=Pe(function(l){return Nt(t,r,l).top>n},o,i),{begin:o,end:i}}u(co,\"wrappedLineExtent\");function ho(t,e,r,n){r||(r=ve(t,e));var i=On(t,e,Nt(t,r,n),\"line\").top;return co(t,e,r,i)}u(ho,\"wrappedLineExtentChar\");function Ir(t,e,r,n){return t.bottom<=r?!1:t.top>r?!0:(n?t.left:t.right)>e}u(Ir,\"boxIsAfter\");function ka(t,e,r,n,i){i-=Ht(e);var o=ve(t,e),l=Fr(e),a=0,s=e.text.length,c=!0,h=At(e,t.doc.direction);if(h){var d=(t.options.lineWrapping?Ma:Ta)(t,e,r,o,h,n,i);c=d.level!=1,a=c?d.from:d.to-1,s=c?d.to:d.from-1}var p=null,f=null,g=Pe(function(T){var L=Nt(t,o,T);return L.top+=l,L.bottom+=l,Ir(L,n,i,!1)?(L.top<=i&&L.left<=n&&(p=T,f=L),!0):!1},a,s),m,y,b=!1;if(f){var x=n-f.left<f.right-n,w=x==c;g=p+(w?0:1),y=w?\"after\":\"before\",m=x?f.left:f.right}else{!c&&(g==s||g==a)&&g++,y=g==0?\"after\":g==e.text.length?\"before\":Nt(t,o,g-(c?1:0)).bottom+l<=i==c?\"after\":\"before\";var C=St(t,v(r,g,y),\"line\",e,o);m=C.left,b=i<C.top?-1:i>=C.bottom?1:0}return g=wi(e.text,g,1),Pr(r,g,y,b,n-m)}u(ka,\"coordsCharInner\");function Ta(t,e,r,n,i,o,l){var a=Pe(function(d){var p=i[d],f=p.level!=1;return Ir(St(t,v(r,f?p.to:p.from,f?\"before\":\"after\"),\"line\",e,n),o,l,!0)},0,i.length-1),s=i[a];if(a>0){var c=s.level!=1,h=St(t,v(r,c?s.from:s.to,c?\"after\":\"before\"),\"line\",e,n);Ir(h,o,l,!0)&&h.top>l&&(s=i[a-1])}return s}u(Ta,\"coordsBidiPart\");function Ma(t,e,r,n,i,o,l){var a=co(t,e,n,l),s=a.begin,c=a.end;/\\s/.test(e.text.charAt(c-1))&&c--;for(var h=null,d=null,p=0;p<i.length;p++){var f=i[p];if(!(f.from>=c||f.to<=s)){var g=f.level!=1,m=Nt(t,n,g?Math.min(c,f.to)-1:Math.max(s,f.from)).right,y=m<o?o-m+1e9:m-o;(!h||d>y)&&(h=f,d=y)}}return h||(h=i[i.length-1]),h.from<s&&(h={from:s,to:h.to,level:h.level}),h.to>c&&(h={from:h.from,to:c,level:h.level}),h}u(Ma,\"coordsBidiPartWrapped\");var ye;function be(t){if(t.cachedTextHeight!=null)return t.cachedTextHeight;if(ye==null){ye=k(\"pre\",null,\"CodeMirror-line-like\");for(var e=0;e<49;++e)ye.appendChild(document.createTextNode(\"x\")),ye.appendChild(k(\"br\"));ye.appendChild(document.createTextNode(\"x\"))}gt(t.measure,ye);var r=ye.offsetHeight/50;return r>3&&(t.cachedTextHeight=r),Rt(t.measure),r||1}u(be,\"textHeight\");function we(t){if(t.cachedCharWidth!=null)return t.cachedCharWidth;var e=k(\"span\",\"xxxxxxxxxx\"),r=k(\"pre\",[e],\"CodeMirror-line-like\");gt(t.measure,r);var n=e.getBoundingClientRect(),i=(n.right-n.left)/10;return i>2&&(t.cachedCharWidth=i),i||10}u(we,\"charWidth\");function Rr(t){for(var e=t.display,r={},n={},i=e.gutters.clientLeft,o=e.gutters.firstChild,l=0;o;o=o.nextSibling,++l){var a=t.display.gutterSpecs[l].className;r[a]=o.offsetLeft+o.clientLeft+i,n[a]=o.clientWidth}return{fixedPos:zr(e),gutterTotalWidth:e.gutters.offsetWidth,gutterLeft:r,gutterWidth:n,wrapperWidth:e.wrapper.clientWidth}}u(Rr,\"getDimensions\");function zr(t){return t.scroller.getBoundingClientRect().left-t.sizer.getBoundingClientRect().left}u(zr,\"compensateForHScroll\");function fo(t){var e=be(t.display),r=t.options.lineWrapping,n=r&&Math.max(5,t.display.scroller.clientWidth/we(t.display)-3);return function(i){if(Ut(t.doc,i))return 0;var o=0;if(i.widgets)for(var l=0;l<i.widgets.length;l++)i.widgets[l].height&&(o+=i.widgets[l].height);return r?o+(Math.ceil(i.text.length/n)||1)*e:o+e}}u(fo,\"estimateHeight\");function Br(t){var e=t.doc,r=fo(t);e.iter(function(n){var i=r(n);i!=n.height&&Tt(n,i)})}u(Br,\"estimateLineHeights\");function re(t,e,r,n){var i=t.display;if(!r&&gr(e).getAttribute(\"cm-not-content\")==\"true\")return null;var o,l,a=i.lineSpace.getBoundingClientRect();try{o=e.clientX-a.left,l=e.clientY-a.top}catch{return null}var s=Er(t,o,l),c;if(n&&s.xRel>0&&(c=S(t.doc,s.line).text).length==s.ch){var h=yt(c,c.length,t.options.tabSize)-c.length;s=v(s.line,Math.max(0,Math.round((o-to(t.display).left)/we(t.display))-h))}return s}u(re,\"posFromMouse\");function ie(t,e){if(e>=t.display.viewTo||(e-=t.display.viewFrom,e<0))return null;for(var r=t.display.view,n=0;n<r.length;n++)if(e-=r[n].size,e<0)return n}u(ie,\"findViewIndex\");function at(t,e,r,n){e==null&&(e=t.doc.first),r==null&&(r=t.doc.first+t.doc.size),n||(n=0);var i=t.display;if(n&&r<i.viewTo&&(i.updateLineNumbers==null||i.updateLineNumbers>e)&&(i.updateLineNumbers=e),t.curOp.viewChanged=!0,e>=i.viewTo)Bt&&Mr(t.doc,e)<i.viewTo&&Kt(t);else if(r<=i.viewFrom)Bt&&Vi(t.doc,r+n)>i.viewFrom?Kt(t):(i.viewFrom+=n,i.viewTo+=n);else if(e<=i.viewFrom&&r>=i.viewTo)Kt(t);else if(e<=i.viewFrom){var o=An(t,r,r+n,1);o?(i.view=i.view.slice(o.index),i.viewFrom=o.lineN,i.viewTo+=n):Kt(t)}else if(r>=i.viewTo){var l=An(t,e,e,-1);l?(i.view=i.view.slice(0,l.index),i.viewTo=l.lineN):Kt(t)}else{var a=An(t,e,e,-1),s=An(t,r,r+n,1);a&&s?(i.view=i.view.slice(0,a.index).concat(Tn(t,a.lineN,s.lineN)).concat(i.view.slice(s.index)),i.viewTo+=n):Kt(t)}var c=i.externalMeasured;c&&(r<c.lineN?c.lineN+=n:e<c.lineN+c.size&&(i.externalMeasured=null))}u(at,\"regChange\");function Gt(t,e,r){t.curOp.viewChanged=!0;var n=t.display,i=t.display.externalMeasured;if(i&&e>=i.lineN&&e<i.lineN+i.size&&(n.externalMeasured=null),!(e<n.viewFrom||e>=n.viewTo)){var o=n.view[ie(t,e)];if(o.node!=null){var l=o.changes||(o.changes=[]);J(l,r)==-1&&l.push(r)}}}u(Gt,\"regLineChange\");function Kt(t){t.display.viewFrom=t.display.viewTo=t.doc.first,t.display.view=[],t.display.viewOffset=0}u(Kt,\"resetView\");function An(t,e,r,n){var i=ie(t,e),o,l=t.display.view;if(!Bt||r==t.doc.first+t.doc.size)return{index:i,lineN:r};for(var a=t.display.viewFrom,s=0;s<i;s++)a+=l[s].size;if(a!=e){if(n>0){if(i==l.length-1)return null;o=a+l[i].size-e,i++}else o=a-e;e+=o,r+=o}for(;Mr(t.doc,r)!=r;){if(i==(n<0?0:l.length-1))return null;r+=n*l[i-(n<0?1:0)].size,i+=n}return{index:i,lineN:r}}u(An,\"viewCuttingPoint\");function Na(t,e,r){var n=t.display,i=n.view;i.length==0||e>=n.viewTo||r<=n.viewFrom?(n.view=Tn(t,e,r),n.viewFrom=e):(n.viewFrom>e?n.view=Tn(t,e,n.viewFrom).concat(n.view):n.viewFrom<e&&(n.view=n.view.slice(ie(t,e))),n.viewFrom=e,n.viewTo<r?n.view=n.view.concat(Tn(t,n.viewTo,r)):n.viewTo>r&&(n.view=n.view.slice(0,ie(t,r)))),n.viewTo=r}u(Na,\"adjustView\");function po(t){for(var e=t.display.view,r=0,n=0;n<e.length;n++){var i=e[n];!i.hidden&&(!i.node||i.changes)&&++r}return r}u(po,\"countDirtyView\");function qe(t){t.display.input.showSelection(t.display.input.prepareSelection())}u(qe,\"updateSelection\");function go(t,e){e===void 0&&(e=!0);var r=t.doc,n={},i=n.cursors=document.createDocumentFragment(),o=n.selection=document.createDocumentFragment(),l=t.options.$customCursor;l&&(e=!0);for(var a=0;a<r.sel.ranges.length;a++)if(!(!e&&a==r.sel.primIndex)){var s=r.sel.ranges[a];if(!(s.from().line>=t.display.viewTo||s.to().line<t.display.viewFrom)){var c=s.empty();if(l){var h=l(t,s);h&&Ur(t,h,i)}else(c||t.options.showCursorWhenSelecting)&&Ur(t,s.head,i);c||Oa(t,s,o)}}return n}u(go,\"prepareSelection\");function Ur(t,e,r){var n=St(t,e,\"div\",null,null,!t.options.singleCursorHeightPerLine),i=r.appendChild(k(\"div\",\" \",\"CodeMirror-cursor\"));if(i.style.left=n.left+\"px\",i.style.top=n.top+\"px\",i.style.height=Math.max(0,n.bottom-n.top)*t.options.cursorHeight+\"px\",/\\bcm-fat-cursor\\b/.test(t.getWrapperElement().className)){var o=Dn(t,e,\"div\",null,null),l=o.right-o.left;i.style.width=(l>0?l:t.defaultCharWidth())+\"px\"}if(n.other){var a=r.appendChild(k(\"div\",\" \",\"CodeMirror-cursor CodeMirror-secondarycursor\"));a.style.display=\"\",a.style.left=n.other.left+\"px\",a.style.top=n.other.top+\"px\",a.style.height=(n.other.bottom-n.other.top)*.85+\"px\"}}u(Ur,\"drawSelectionCursor\");function Wn(t,e){return t.top-e.top||t.left-e.left}u(Wn,\"cmpCoords\");function Oa(t,e,r){var n=t.display,i=t.doc,o=document.createDocumentFragment(),l=to(t.display),a=l.left,s=Math.max(n.sizerWidth,ne(t)-n.sizer.offsetLeft)-l.right,c=i.direction==\"ltr\";function h(w,C,T,L){C<0&&(C=0),C=Math.round(C),L=Math.round(L),o.appendChild(k(\"div\",null,\"CodeMirror-selected\",\"position: absolute; left: \"+w+`px;\n                             top: `+C+\"px; width: \"+(T??s-w)+`px;\n                             height: `+(L-C)+\"px\"))}u(h,\"add\");function d(w,C,T){var L=S(i,w),D=L.text.length,E,$;function z(V,ft){return Dn(t,v(w,V),\"div\",L,ft)}u(z,\"coords\");function ht(V,ft,et){var Z=ho(t,L,null,V),j=ft==\"ltr\"==(et==\"after\")?\"left\":\"right\",B=et==\"after\"?Z.begin:Z.end-(/\\s/.test(L.text.charAt(Z.end-1))?2:1);return z(B,j)[j]}u(ht,\"wrapX\");var dt=At(L,i.direction);return Fl(dt,C||0,T??D,function(V,ft,et,Z){var j=et==\"ltr\",B=z(V,j?\"left\":\"right\"),pt=z(ft-1,j?\"right\":\"left\"),un=C==null&&V==0,ce=T==null&&ft==D,rt=Z==0,Pt=!dt||Z==dt.length-1;if(pt.top-B.top<=3){var Q=(c?un:ce)&&rt,Tl=(c?ce:un)&&Pt,Yt=Q?a:(j?B:pt).left,He=Tl?s:(j?pt:B).right;h(Yt,B.top,He-Yt,B.bottom)}else{var Fe,st,cn,Ml;j?(Fe=c&&un&&rt?a:B.left,st=c?s:ht(V,et,\"before\"),cn=c?a:ht(ft,et,\"after\"),Ml=c&&ce&&Pt?s:pt.right):(Fe=c?ht(V,et,\"before\"):a,st=!c&&un&&rt?s:B.right,cn=!c&&ce&&Pt?a:pt.left,Ml=c?ht(ft,et,\"after\"):s),h(Fe,B.top,st-Fe,B.bottom),B.bottom<pt.top&&h(a,B.bottom,null,pt.top),h(cn,pt.top,Ml-cn,pt.bottom)}(!E||Wn(B,E)<0)&&(E=B),Wn(pt,E)<0&&(E=pt),(!$||Wn(B,$)<0)&&($=B),Wn(pt,$)<0&&($=pt)}),{start:E,end:$}}u(d,\"drawForLine\");var p=e.from(),f=e.to();if(p.line==f.line)d(p.line,p.ch,f.ch);else{var g=S(i,p.line),m=S(i,f.line),y=Ct(g)==Ct(m),b=d(p.line,p.ch,y?g.text.length+1:null).end,x=d(f.line,y?0:null,f.ch).start;y&&(b.top<x.top-2?(h(b.right,b.top,null,b.bottom),h(a,x.top,x.left,x.bottom)):h(b.right,b.top,x.left-b.right,b.bottom)),b.bottom<x.top&&h(a,b.bottom,null,x.top)}r.appendChild(o)}u(Oa,\"drawSelectionRange\");function Gr(t){if(t.state.focused){var e=t.display;clearInterval(e.blinker);var r=!0;e.cursorDiv.style.visibility=\"\",t.options.cursorBlinkRate>0?e.blinker=setInterval(function(){t.hasFocus()||xe(t),e.cursorDiv.style.visibility=(r=!r)?\"\":\"hidden\"},t.options.cursorBlinkRate):t.options.cursorBlinkRate<0&&(e.cursorDiv.style.visibility=\"hidden\")}}u(Gr,\"restartBlink\");function mo(t){t.hasFocus()||(t.display.input.focus(),t.state.focused||Vr(t))}u(mo,\"ensureFocus\");function Kr(t){t.state.delayingBlurEvent=!0,setTimeout(function(){t.state.delayingBlurEvent&&(t.state.delayingBlurEvent=!1,t.state.focused&&xe(t))},100)}u(Kr,\"delayBlurEvent\");function Vr(t,e){t.state.delayingBlurEvent&&!t.state.draggingText&&(t.state.delayingBlurEvent=!1),t.options.readOnly!=\"nocursor\"&&(t.state.focused||(U(t,\"focus\",t,e),t.state.focused=!0,Zt(t.display.wrapper,\"CodeMirror-focused\"),!t.curOp&&t.display.selForContextMenu!=t.doc.sel&&(t.display.input.reset(),ot&&setTimeout(function(){return t.display.input.reset(!0)},20)),t.display.input.receivedFocus()),Gr(t))}u(Vr,\"onFocus\");function xe(t,e){t.state.delayingBlurEvent||(t.state.focused&&(U(t,\"blur\",t,e),t.state.focused=!1,fe(t.display.wrapper,\"CodeMirror-focused\")),clearInterval(t.display.blinker),setTimeout(function(){t.state.focused||(t.display.shift=!1)},150))}u(xe,\"onBlur\");function Hn(t){for(var e=t.display,r=e.lineDiv.offsetTop,n=Math.max(0,e.scroller.getBoundingClientRect().top),i=e.lineDiv.getBoundingClientRect().top,o=0,l=0;l<e.view.length;l++){var a=e.view[l],s=t.options.lineWrapping,c=void 0,h=0;if(!a.hidden){if(i+=a.line.height,A&&I<8){var d=a.node.offsetTop+a.node.offsetHeight;c=d-r,r=d}else{var p=a.node.getBoundingClientRect();c=p.bottom-p.top,!s&&a.text.firstChild&&(h=a.text.firstChild.getBoundingClientRect().right-p.left-1)}var f=a.line.height-c;if((f>.005||f<-.005)&&(i<n&&(o-=f),Tt(a.line,c),vo(a.line),a.rest))for(var g=0;g<a.rest.length;g++)vo(a.rest[g]);if(h>t.display.sizerWidth){var m=Math.ceil(h/we(t.display));m>t.display.maxLineLength&&(t.display.maxLineLength=m,t.display.maxLine=a.line,t.display.maxLineChanged=!0)}}}Math.abs(o)>2&&(e.scroller.scrollTop+=o)}u(Hn,\"updateHeightsInViewport\");function vo(t){if(t.widgets)for(var e=0;e<t.widgets.length;++e){var r=t.widgets[e],n=r.node.parentNode;n&&(r.height=n.offsetHeight)}}u(vo,\"updateWidgetHeight\");function Fn(t,e,r){var n=r&&r.top!=null?Math.max(0,r.top):t.scroller.scrollTop;n=Math.floor(n-Nn(t));var i=r&&r.bottom!=null?r.bottom:n+t.wrapper.clientHeight,o=ee(e,n),l=ee(e,i);if(r&&r.ensure){var a=r.ensure.from.line,s=r.ensure.to.line;a<o?(o=a,l=ee(e,Ht(S(e,a))+t.wrapper.clientHeight)):Math.min(s,e.lastLine())>=l&&(o=ee(e,Ht(S(e,s))-t.wrapper.clientHeight),l=s)}return{from:o,to:Math.max(l,o+1)}}u(Fn,\"visibleLines\");function Da(t,e){if(!X(t,\"scrollCursorIntoView\")){var r=t.display,n=r.sizer.getBoundingClientRect(),i=null;if(e.top+n.top<0?i=!0:e.bottom+n.top>(window.innerHeight||document.documentElement.clientHeight)&&(i=!1),i!=null&&!Xs){var o=k(\"div\",\"​\",null,`position: absolute;\n                         top: `+(e.top-r.viewOffset-Nn(t.display))+`px;\n                         height: `+(e.bottom-e.top+Mt(t)+r.barHeight)+`px;\n                         left: `+e.left+\"px; width: \"+Math.max(2,e.right-e.left)+\"px;\");t.display.lineSpace.appendChild(o),o.scrollIntoView(i),t.display.lineSpace.removeChild(o)}}}u(Da,\"maybeScrollWindow\");function Aa(t,e,r,n){n==null&&(n=0);var i;!t.options.lineWrapping&&e==r&&(r=e.sticky==\"before\"?v(e.line,e.ch+1,\"before\"):e,e=e.ch?v(e.line,e.sticky==\"before\"?e.ch-1:e.ch,\"after\"):e);for(var o=0;o<5;o++){var l=!1,a=St(t,e),s=!r||r==e?a:St(t,r);i={left:Math.min(a.left,s.left),top:Math.min(a.top,s.top)-n,right:Math.max(a.left,s.left),bottom:Math.max(a.bottom,s.bottom)+n};var c=jr(t,i),h=t.doc.scrollTop,d=t.doc.scrollLeft;if(c.scrollTop!=null&&(Ze(t,c.scrollTop),Math.abs(t.doc.scrollTop-h)>1&&(l=!0)),c.scrollLeft!=null&&(oe(t,c.scrollLeft),Math.abs(t.doc.scrollLeft-d)>1&&(l=!0)),!l)break}return i}u(Aa,\"scrollPosIntoView\");function Wa(t,e){var r=jr(t,e);r.scrollTop!=null&&Ze(t,r.scrollTop),r.scrollLeft!=null&&oe(t,r.scrollLeft)}u(Wa,\"scrollIntoView\");function jr(t,e){var r=t.display,n=be(t.display);e.top<0&&(e.top=0);var i=t.curOp&&t.curOp.scrollTop!=null?t.curOp.scrollTop:r.scroller.scrollTop,o=Wr(t),l={};e.bottom-e.top>o&&(e.bottom=e.top+o);var a=t.doc.height+Ar(r),s=e.top<n,c=e.bottom>a-n;if(e.top<i)l.scrollTop=s?0:e.top;else if(e.bottom>i+o){var h=Math.min(e.top,(c?a:e.bottom)-o);h!=i&&(l.scrollTop=h)}var d=t.options.fixedGutter?0:r.gutters.offsetWidth,p=t.curOp&&t.curOp.scrollLeft!=null?t.curOp.scrollLeft:r.scroller.scrollLeft-d,f=ne(t)-r.gutters.offsetWidth,g=e.right-e.left>f;return g&&(e.right=e.left+f),e.left<10?l.scrollLeft=0:e.left<p?l.scrollLeft=Math.max(0,e.left+d-(g?0:10)):e.right>f+p-3&&(l.scrollLeft=e.right+(g?0:10)-f),l}u(jr,\"calculateScrollPos\");function Xr(t,e){e!=null&&(Pn(t),t.curOp.scrollTop=(t.curOp.scrollTop==null?t.doc.scrollTop:t.curOp.scrollTop)+e)}u(Xr,\"addToScrollTop\");function Ce(t){Pn(t);var e=t.getCursor();t.curOp.scrollToPos={from:e,to:e,margin:t.options.cursorScrollMargin}}u(Ce,\"ensureCursorVisible\");function Ye(t,e,r){(e!=null||r!=null)&&Pn(t),e!=null&&(t.curOp.scrollLeft=e),r!=null&&(t.curOp.scrollTop=r)}u(Ye,\"scrollToCoords\");function Ha(t,e){Pn(t),t.curOp.scrollToPos=e}u(Ha,\"scrollToRange\");function Pn(t){var e=t.curOp.scrollToPos;if(e){t.curOp.scrollToPos=null;var r=uo(t,e.from),n=uo(t,e.to);yo(t,r,n,e.margin)}}u(Pn,\"resolveScrollToPos\");function yo(t,e,r,n){var i=jr(t,{left:Math.min(e.left,r.left),top:Math.min(e.top,r.top)-n,right:Math.max(e.right,r.right),bottom:Math.max(e.bottom,r.bottom)+n});Ye(t,i.scrollLeft,i.scrollTop)}u(yo,\"scrollToCoordsRange\");function Ze(t,e){Math.abs(t.doc.scrollTop-e)<2||(It||Yr(t,{top:e}),bo(t,e,!0),It&&Yr(t),Qe(t,100))}u(Ze,\"updateScrollTop\");function bo(t,e,r){e=Math.max(0,Math.min(t.display.scroller.scrollHeight-t.display.scroller.clientHeight,e)),!(t.display.scroller.scrollTop==e&&!r)&&(t.doc.scrollTop=e,t.display.scrollbars.setScrollTop(e),t.display.scroller.scrollTop!=e&&(t.display.scroller.scrollTop=e))}u(bo,\"setScrollTop\");function oe(t,e,r,n){e=Math.max(0,Math.min(e,t.display.scroller.scrollWidth-t.display.scroller.clientWidth)),!((r?e==t.doc.scrollLeft:Math.abs(t.doc.scrollLeft-e)<2)&&!n)&&(t.doc.scrollLeft=e,So(t),t.display.scroller.scrollLeft!=e&&(t.display.scroller.scrollLeft=e),t.display.scrollbars.setScrollLeft(e))}u(oe,\"setScrollLeft\");function $e(t){var e=t.display,r=e.gutters.offsetWidth,n=Math.round(t.doc.height+Ar(t.display));return{clientHeight:e.scroller.clientHeight,viewHeight:e.wrapper.clientHeight,scrollWidth:e.scroller.scrollWidth,clientWidth:e.scroller.clientWidth,viewWidth:e.wrapper.clientWidth,barLeft:t.options.fixedGutter?r:0,docHeight:n,scrollHeight:n+Mt(t)+e.barHeight,nativeBarWidth:e.nativeBarWidth,gutterWidth:r}}u($e,\"measureForScrollbars\");var Se=u(function(t,e,r){this.cm=r;var n=this.vert=k(\"div\",[k(\"div\",null,null,\"min-width: 1px\")],\"CodeMirror-vscrollbar\"),i=this.horiz=k(\"div\",[k(\"div\",null,null,\"height: 100%; min-height: 1px\")],\"CodeMirror-hscrollbar\");n.tabIndex=i.tabIndex=-1,t(n),t(i),M(n,\"scroll\",function(){n.clientHeight&&e(n.scrollTop,\"vertical\")}),M(i,\"scroll\",function(){i.clientWidth&&e(i.scrollLeft,\"horizontal\")}),this.checkedZeroWidth=!1,A&&I<8&&(this.horiz.style.minHeight=this.vert.style.minWidth=\"18px\")},\"NativeScrollbars\");Se.prototype.update=function(t){var e=t.scrollWidth>t.clientWidth+1,r=t.scrollHeight>t.clientHeight+1,n=t.nativeBarWidth;if(r){this.vert.style.display=\"block\",this.vert.style.bottom=e?n+\"px\":\"0\";var i=t.viewHeight-(e?n:0);this.vert.firstChild.style.height=Math.max(0,t.scrollHeight-t.clientHeight+i)+\"px\"}else this.vert.scrollTop=0,this.vert.style.display=\"\",this.vert.firstChild.style.height=\"0\";if(e){this.horiz.style.display=\"block\",this.horiz.style.right=r?n+\"px\":\"0\",this.horiz.style.left=t.barLeft+\"px\";var o=t.viewWidth-t.barLeft-(r?n:0);this.horiz.firstChild.style.width=Math.max(0,t.scrollWidth-t.clientWidth+o)+\"px\"}else this.horiz.style.display=\"\",this.horiz.firstChild.style.width=\"0\";return!this.checkedZeroWidth&&t.clientHeight>0&&(n==0&&this.zeroWidthHack(),this.checkedZeroWidth=!0),{right:r?n:0,bottom:e?n:0}},Se.prototype.setScrollLeft=function(t){this.horiz.scrollLeft!=t&&(this.horiz.scrollLeft=t),this.disableHoriz&&this.enableZeroWidthBar(this.horiz,this.disableHoriz,\"horiz\")},Se.prototype.setScrollTop=function(t){this.vert.scrollTop!=t&&(this.vert.scrollTop=t),this.disableVert&&this.enableZeroWidthBar(this.vert,this.disableVert,\"vert\")},Se.prototype.zeroWidthHack=function(){var t=xt&&!js?\"12px\":\"18px\";this.horiz.style.height=this.vert.style.width=t,this.horiz.style.pointerEvents=this.vert.style.pointerEvents=\"none\",this.disableHoriz=new Qt,this.disableVert=new Qt},Se.prototype.enableZeroWidthBar=function(t,e,r){t.style.pointerEvents=\"auto\";function n(){var i=t.getBoundingClientRect(),o=r==\"vert\"?document.elementFromPoint(i.right-1,(i.top+i.bottom)/2):document.elementFromPoint((i.right+i.left)/2,i.bottom-1);o!=t?t.style.pointerEvents=\"none\":e.set(1e3,n)}u(n,\"maybeDisable\"),e.set(1e3,n)},Se.prototype.clear=function(){var t=this.horiz.parentNode;t.removeChild(this.horiz),t.removeChild(this.vert)};var En=u(function(){},\"NullScrollbars\");En.prototype.update=function(){return{bottom:0,right:0}},En.prototype.setScrollLeft=function(){},En.prototype.setScrollTop=function(){},En.prototype.clear=function(){};function Le(t,e){e||(e=$e(t));var r=t.display.barWidth,n=t.display.barHeight;wo(t,e);for(var i=0;i<4&&r!=t.display.barWidth||n!=t.display.barHeight;i++)r!=t.display.barWidth&&t.options.lineWrapping&&Hn(t),wo(t,$e(t)),r=t.display.barWidth,n=t.display.barHeight}u(Le,\"updateScrollbars\");function wo(t,e){var r=t.display,n=r.scrollbars.update(e);r.sizer.style.paddingRight=(r.barWidth=n.right)+\"px\",r.sizer.style.paddingBottom=(r.barHeight=n.bottom)+\"px\",r.heightForcer.style.borderBottom=n.bottom+\"px solid transparent\",n.right&&n.bottom?(r.scrollbarFiller.style.display=\"block\",r.scrollbarFiller.style.height=n.bottom+\"px\",r.scrollbarFiller.style.width=n.right+\"px\"):r.scrollbarFiller.style.display=\"\",n.bottom&&t.options.coverGutterNextToScrollbar&&t.options.fixedGutter?(r.gutterFiller.style.display=\"block\",r.gutterFiller.style.height=n.bottom+\"px\",r.gutterFiller.style.width=e.gutterWidth+\"px\"):r.gutterFiller.style.display=\"\"}u(wo,\"updateScrollbarsInner\");var Fa={native:Se,null:En};function xo(t){t.display.scrollbars&&(t.display.scrollbars.clear(),t.display.scrollbars.addClass&&fe(t.display.wrapper,t.display.scrollbars.addClass)),t.display.scrollbars=new Fa[t.options.scrollbarStyle](function(e){t.display.wrapper.insertBefore(e,t.display.scrollbarFiller),M(e,\"mousedown\",function(){t.state.focused&&setTimeout(function(){return t.display.input.focus()},0)}),e.setAttribute(\"cm-not-content\",\"true\")},function(e,r){r==\"horizontal\"?oe(t,e):Ze(t,e)},t),t.display.scrollbars.addClass&&Zt(t.display.wrapper,t.display.scrollbars.addClass)}u(xo,\"initScrollbars\");var ru=0;function le(t){t.curOp={cm:t,viewChanged:!1,startHeight:t.doc.height,forceUpdate:!1,updateInput:0,typing:!1,changeObjs:null,cursorActivityHandlers:null,cursorActivityCalled:0,selectionChanged:!1,updateMaxLine:!1,scrollLeft:null,scrollTop:null,scrollToPos:null,focus:!1,id:++ru,markArrays:null},ca(t.curOp)}u(le,\"startOperation\");function ae(t){var e=t.curOp;e&&da(e,function(r){for(var n=0;n<r.ops.length;n++)r.ops[n].cm.curOp=null;Pa(r)})}u(ae,\"endOperation\");function Pa(t){for(var e=t.ops,r=0;r<e.length;r++)Ea(e[r]);for(var n=0;n<e.length;n++)Ia(e[n]);for(var i=0;i<e.length;i++)Ra(e[i]);for(var o=0;o<e.length;o++)za(e[o]);for(var l=0;l<e.length;l++)Ba(e[l])}u(Pa,\"endOperations\");function Ea(t){var e=t.cm,r=e.display;Ga(e),t.updateMaxLine&&Or(e),t.mustUpdate=t.viewChanged||t.forceUpdate||t.scrollTop!=null||t.scrollToPos&&(t.scrollToPos.from.line<r.viewFrom||t.scrollToPos.to.line>=r.viewTo)||r.maxLineChanged&&e.options.lineWrapping,t.update=t.mustUpdate&&new _r(e,t.mustUpdate&&{top:t.scrollTop,ensure:t.scrollToPos},t.forceUpdate)}u(Ea,\"endOperation_R1\");function Ia(t){t.updatedDisplay=t.mustUpdate&&qr(t.cm,t.update)}u(Ia,\"endOperation_W1\");function Ra(t){var e=t.cm,r=e.display;t.updatedDisplay&&Hn(e),t.barMeasure=$e(e),r.maxLineChanged&&!e.options.lineWrapping&&(t.adjustWidthTo=no(e,r.maxLine,r.maxLine.text.length).left+3,e.display.sizerWidth=t.adjustWidthTo,t.barMeasure.scrollWidth=Math.max(r.scroller.clientWidth,r.sizer.offsetLeft+t.adjustWidthTo+Mt(e)+e.display.barWidth),t.maxScrollLeft=Math.max(0,r.sizer.offsetLeft+t.adjustWidthTo-ne(e))),(t.updatedDisplay||t.selectionChanged)&&(t.preparedSelection=r.input.prepareSelection())}u(Ra,\"endOperation_R2\");function za(t){var e=t.cm;t.adjustWidthTo!=null&&(e.display.sizer.style.minWidth=t.adjustWidthTo+\"px\",t.maxScrollLeft<e.doc.scrollLeft&&oe(e,Math.min(e.display.scroller.scrollLeft,t.maxScrollLeft),!0),e.display.maxLineChanged=!1);var r=t.focus&&t.focus==vt();t.preparedSelection&&e.display.input.showSelection(t.preparedSelection,r),(t.updatedDisplay||t.startHeight!=e.doc.height)&&Le(e,t.barMeasure),t.updatedDisplay&&$r(e,t.barMeasure),t.selectionChanged&&Gr(e),e.state.focused&&t.updateInput&&e.display.input.reset(t.typing),r&&mo(t.cm)}u(za,\"endOperation_W2\");function Ba(t){var e=t.cm,r=e.display,n=e.doc;if(t.updatedDisplay&&Co(e,t.update),r.wheelStartX!=null&&(t.scrollTop!=null||t.scrollLeft!=null||t.scrollToPos)&&(r.wheelStartX=r.wheelStartY=null),t.scrollTop!=null&&bo(e,t.scrollTop,t.forceScroll),t.scrollLeft!=null&&oe(e,t.scrollLeft,!0,!0),t.scrollToPos){var i=Aa(e,O(n,t.scrollToPos.from),O(n,t.scrollToPos.to),t.scrollToPos.margin);Da(e,i)}var o=t.maybeHiddenMarkers,l=t.maybeUnhiddenMarkers;if(o)for(var a=0;a<o.length;++a)o[a].lines.length||U(o[a],\"hide\");if(l)for(var s=0;s<l.length;++s)l[s].lines.length&&U(l[s],\"unhide\");r.wrapper.offsetHeight&&(n.scrollTop=e.display.scroller.scrollTop),t.changeObjs&&U(e,\"changes\",e,t.changeObjs),t.update&&t.update.finish()}u(Ba,\"endOperation_finish\");function ut(t,e){if(t.curOp)return e();le(t);try{return e()}finally{ae(t)}}u(ut,\"runInOp\");function q(t,e){return function(){if(t.curOp)return e.apply(t,arguments);le(t);try{return e.apply(t,arguments)}finally{ae(t)}}}u(q,\"operation\");function nt(t){return function(){if(this.curOp)return t.apply(this,arguments);le(this);try{return t.apply(this,arguments)}finally{ae(this)}}}u(nt,\"methodOp\");function Y(t){return function(){var e=this.cm;if(!e||e.curOp)return t.apply(this,arguments);le(e);try{return t.apply(this,arguments)}finally{ae(e)}}}u(Y,\"docMethodOp\");function Qe(t,e){t.doc.highlightFrontier<t.display.viewTo&&t.state.highlight.set(e,lr(Ua,t))}u(Qe,\"startWorker\");function Ua(t){var e=t.doc;if(!(e.highlightFrontier>=t.display.viewTo)){var r=+new Date+t.options.workTime,n=Ue(t,e.highlightFrontier),i=[];e.iter(n.line,Math.min(e.first+e.size,t.display.viewTo+500),function(o){if(n.line>=t.display.viewFrom){var l=o.styles,a=o.text.length>t.options.maxHighlightLength?Jt(e.mode,n.state):null,s=Wi(t,o,n,!0);a&&(n.state=a),o.styles=s.styles;var c=o.styleClasses,h=s.classes;h?o.styleClasses=h:c&&(o.styleClasses=null);for(var d=!l||l.length!=o.styles.length||c!=h&&(!c||!h||c.bgClass!=h.bgClass||c.textClass!=h.textClass),p=0;!d&&p<l.length;++p)d=l[p]!=o.styles[p];d&&i.push(n.line),o.stateAfter=n.save(),n.nextLine()}else o.text.length<=t.options.maxHighlightLength&&Sr(t,o.text,n),o.stateAfter=n.line%5==0?n.save():null,n.nextLine();if(+new Date>r)return Qe(t,t.options.workDelay),!0}),e.highlightFrontier=n.line,e.modeFrontier=Math.max(e.modeFrontier,n.line),i.length&&ut(t,function(){for(var o=0;o<i.length;o++)Gt(t,i[o],\"text\")})}}u(Ua,\"highlightWorker\");var _r=u(function(t,e,r){var n=t.display;this.viewport=e,this.visible=Fn(n,t.doc,e),this.editorIsHidden=!n.wrapper.offsetWidth,this.wrapperHeight=n.wrapper.clientHeight,this.wrapperWidth=n.wrapper.clientWidth,this.oldDisplayWidth=ne(t),this.force=r,this.dims=Rr(t),this.events=[]},\"DisplayUpdate\");_r.prototype.signal=function(t,e){bt(t,e)&&this.events.push(arguments)},_r.prototype.finish=function(){for(var t=0;t<this.events.length;t++)U.apply(null,this.events[t])};function Ga(t){var e=t.display;!e.scrollbarsClipped&&e.scroller.offsetWidth&&(e.nativeBarWidth=e.scroller.offsetWidth-e.scroller.clientWidth,e.heightForcer.style.height=Mt(t)+\"px\",e.sizer.style.marginBottom=-e.nativeBarWidth+\"px\",e.sizer.style.borderRightWidth=Mt(t)+\"px\",e.scrollbarsClipped=!0)}u(Ga,\"maybeClipScrollbars\");function Ka(t){if(t.hasFocus())return null;var e=vt();if(!e||!zt(t.display.lineDiv,e))return null;var r={activeElt:e};if(window.getSelection){var n=window.getSelection();n.anchorNode&&n.extend&&zt(t.display.lineDiv,n.anchorNode)&&(r.anchorNode=n.anchorNode,r.anchorOffset=n.anchorOffset,r.focusNode=n.focusNode,r.focusOffset=n.focusOffset)}return r}u(Ka,\"selectionSnapshot\");function Va(t){if(!(!t||!t.activeElt||t.activeElt==vt())&&(t.activeElt.focus(),!/^(INPUT|TEXTAREA)$/.test(t.activeElt.nodeName)&&t.anchorNode&&zt(document.body,t.anchorNode)&&zt(document.body,t.focusNode))){var e=window.getSelection(),r=document.createRange();r.setEnd(t.anchorNode,t.anchorOffset),r.collapse(!1),e.removeAllRanges(),e.addRange(r),e.extend(t.focusNode,t.focusOffset)}}u(Va,\"restoreSelection\");function qr(t,e){var r=t.display,n=t.doc;if(e.editorIsHidden)return Kt(t),!1;if(!e.force&&e.visible.from>=r.viewFrom&&e.visible.to<=r.viewTo&&(r.updateLineNumbers==null||r.updateLineNumbers>=r.viewTo)&&r.renderedView==r.view&&po(t)==0)return!1;Lo(t)&&(Kt(t),e.dims=Rr(t));var i=n.first+n.size,o=Math.max(e.visible.from-t.options.viewportMargin,n.first),l=Math.min(i,e.visible.to+t.options.viewportMargin);r.viewFrom<o&&o-r.viewFrom<20&&(o=Math.max(n.first,r.viewFrom)),r.viewTo>l&&r.viewTo-l<20&&(l=Math.min(i,r.viewTo)),Bt&&(o=Mr(t.doc,o),l=Vi(t.doc,l));var a=o!=r.viewFrom||l!=r.viewTo||r.lastWrapHeight!=e.wrapperHeight||r.lastWrapWidth!=e.wrapperWidth;Na(t,o,l),r.viewOffset=Ht(S(t.doc,r.viewFrom)),t.display.mover.style.top=r.viewOffset+\"px\";var s=po(t);if(!a&&s==0&&!e.force&&r.renderedView==r.view&&(r.updateLineNumbers==null||r.updateLineNumbers>=r.viewTo))return!1;var c=Ka(t);return s>4&&(r.lineDiv.style.display=\"none\"),ja(t,r.updateLineNumbers,e.dims),s>4&&(r.lineDiv.style.display=\"\"),r.renderedView=r.view,Va(c),Rt(r.cursorDiv),Rt(r.selectionDiv),r.gutters.style.height=r.sizer.style.minHeight=0,a&&(r.lastWrapHeight=e.wrapperHeight,r.lastWrapWidth=e.wrapperWidth,Qe(t,400)),r.updateLineNumbers=null,!0}u(qr,\"updateDisplayIfNeeded\");function Co(t,e){for(var r=e.viewport,n=!0;;n=!1){if(!n||!t.options.lineWrapping||e.oldDisplayWidth==ne(t)){if(r&&r.top!=null&&(r={top:Math.min(t.doc.height+Ar(t.display)-Wr(t),r.top)}),e.visible=Fn(t.display,t.doc,r),e.visible.from>=t.display.viewFrom&&e.visible.to<=t.display.viewTo)break}else n&&(e.visible=Fn(t.display,t.doc,r));if(!qr(t,e))break;Hn(t);var i=$e(t);qe(t),Le(t,i),$r(t,i),e.force=!1}e.signal(t,\"update\",t),(t.display.viewFrom!=t.display.reportedViewFrom||t.display.viewTo!=t.display.reportedViewTo)&&(e.signal(t,\"viewportChange\",t,t.display.viewFrom,t.display.viewTo),t.display.reportedViewFrom=t.display.viewFrom,t.display.reportedViewTo=t.display.viewTo)}u(Co,\"postUpdateDisplay\");function Yr(t,e){var r=new _r(t,e);if(qr(t,r)){Hn(t),Co(t,r);var n=$e(t);qe(t),Le(t,n),$r(t,n),r.finish()}}u(Yr,\"updateDisplaySimple\");function ja(t,e,r){var n=t.display,i=t.options.lineNumbers,o=n.lineDiv,l=o.firstChild;function a(g){var m=g.nextSibling;return ot&&xt&&t.display.currentWheelTarget==g?g.style.display=\"none\":g.parentNode.removeChild(g),m}u(a,\"rm\");for(var s=n.view,c=n.viewFrom,h=0;h<s.length;h++){var d=s[h];if(!d.hidden)if(!d.node||d.node.parentNode!=o){var p=va(t,d,c,r);o.insertBefore(p,l)}else{for(;l!=d.node;)l=a(l);var f=i&&e!=null&&e<=c&&d.lineNumber;d.changes&&(J(d.changes,\"gutter\")>-1&&(f=!1),Yi(t,d,c,r)),f&&(Rt(d.lineNumber),d.lineNumber.appendChild(document.createTextNode(br(t.options,c)))),l=d.node.nextSibling}c+=d.size}for(;l;)l=a(l)}u(ja,\"patchDisplay\");function Zr(t){var e=t.gutters.offsetWidth;t.sizer.style.marginLeft=e+\"px\",_(t,\"gutterChanged\",t)}u(Zr,\"updateGutterSpace\");function $r(t,e){t.display.sizer.style.minHeight=e.docHeight+\"px\",t.display.heightForcer.style.top=e.docHeight+\"px\",t.display.gutters.style.height=e.docHeight+t.display.barHeight+Mt(t)+\"px\"}u($r,\"setDocumentHeight\");function So(t){var e=t.display,r=e.view;if(!(!e.alignWidgets&&(!e.gutters.firstChild||!t.options.fixedGutter))){for(var n=zr(e)-e.scroller.scrollLeft+t.doc.scrollLeft,i=e.gutters.offsetWidth,o=n+\"px\",l=0;l<r.length;l++)if(!r[l].hidden){t.options.fixedGutter&&(r[l].gutter&&(r[l].gutter.style.left=o),r[l].gutterBackground&&(r[l].gutterBackground.style.left=o));var a=r[l].alignable;if(a)for(var s=0;s<a.length;s++)a[s].style.left=o}t.options.fixedGutter&&(e.gutters.style.left=n+i+\"px\")}}u(So,\"alignHorizontally\");function Lo(t){if(!t.options.lineNumbers)return!1;var e=t.doc,r=br(t.options,e.first+e.size-1),n=t.display;if(r.length!=n.lineNumChars){var i=n.measure.appendChild(k(\"div\",[k(\"div\",r)],\"CodeMirror-linenumber CodeMirror-gutter-elt\")),o=i.firstChild.offsetWidth,l=i.offsetWidth-o;return n.lineGutter.style.width=\"\",n.lineNumInnerWidth=Math.max(o,n.lineGutter.offsetWidth-l)+1,n.lineNumWidth=n.lineNumInnerWidth+l,n.lineNumChars=n.lineNumInnerWidth?r.length:-1,n.lineGutter.style.width=n.lineNumWidth+\"px\",Zr(t.display),!0}return!1}u(Lo,\"maybeUpdateLineNumberWidth\");function Qr(t,e){for(var r=[],n=!1,i=0;i<t.length;i++){var o=t[i],l=null;if(typeof o!=\"string\"&&(l=o.style,o=o.className),o==\"CodeMirror-linenumbers\")if(e)n=!0;else continue;r.push({className:o,style:l})}return e&&!n&&r.push({className:\"CodeMirror-linenumbers\",style:null}),r}u(Qr,\"getGutters\");function ko(t){var e=t.gutters,r=t.gutterSpecs;Rt(e),t.lineGutter=null;for(var n=0;n<r.length;++n){var i=r[n],o=i.className,l=i.style,a=e.appendChild(k(\"div\",null,\"CodeMirror-gutter \"+o));l&&(a.style.cssText=l),o==\"CodeMirror-linenumbers\"&&(t.lineGutter=a,a.style.width=(t.lineNumWidth||1)+\"px\")}e.style.display=r.length?\"\":\"none\",Zr(t)}u(ko,\"renderGutters\");function Je(t){ko(t.display),at(t),So(t)}u(Je,\"updateGutters\");function Xa(t,e,r,n){var i=this;this.input=r,i.scrollbarFiller=k(\"div\",null,\"CodeMirror-scrollbar-filler\"),i.scrollbarFiller.setAttribute(\"cm-not-content\",\"true\"),i.gutterFiller=k(\"div\",null,\"CodeMirror-gutter-filler\"),i.gutterFiller.setAttribute(\"cm-not-content\",\"true\"),i.lineDiv=pe(\"div\",null,\"CodeMirror-code\"),i.selectionDiv=k(\"div\",null,null,\"position: relative; z-index: 1\"),i.cursorDiv=k(\"div\",null,\"CodeMirror-cursors\"),i.measure=k(\"div\",null,\"CodeMirror-measure\"),i.lineMeasure=k(\"div\",null,\"CodeMirror-measure\"),i.lineSpace=pe(\"div\",[i.measure,i.lineMeasure,i.selectionDiv,i.cursorDiv,i.lineDiv],null,\"position: relative; outline: none\");var o=pe(\"div\",[i.lineSpace],\"CodeMirror-lines\");i.mover=k(\"div\",[o],null,\"position: relative\"),i.sizer=k(\"div\",[i.mover],\"CodeMirror-sizer\"),i.sizerWidth=null,i.heightForcer=k(\"div\",null,null,\"position: absolute; height: \"+Wl+\"px; width: 1px;\"),i.gutters=k(\"div\",null,\"CodeMirror-gutters\"),i.lineGutter=null,i.scroller=k(\"div\",[i.sizer,i.heightForcer,i.gutters],\"CodeMirror-scroll\"),i.scroller.setAttribute(\"tabIndex\",\"-1\"),i.wrapper=k(\"div\",[i.scrollbarFiller,i.gutterFiller,i.scroller],\"CodeMirror\"),i.wrapper.setAttribute(\"translate\",\"no\"),A&&I<8&&(i.gutters.style.zIndex=-1,i.scroller.style.paddingRight=0),!ot&&!(It&&dn)&&(i.scroller.draggable=!0),t&&(t.appendChild?t.appendChild(i.wrapper):t(i.wrapper)),i.viewFrom=i.viewTo=e.first,i.reportedViewFrom=i.reportedViewTo=e.first,i.view=[],i.renderedView=null,i.externalMeasured=null,i.viewOffset=0,i.lastWrapHeight=i.lastWrapWidth=0,i.updateLineNumbers=null,i.nativeBarWidth=i.barHeight=i.barWidth=0,i.scrollbarsClipped=!1,i.lineNumWidth=i.lineNumInnerWidth=i.lineNumChars=null,i.alignWidgets=!1,i.cachedCharWidth=i.cachedTextHeight=i.cachedPaddingH=null,i.maxLine=null,i.maxLineLength=0,i.maxLineChanged=!1,i.wheelDX=i.wheelDY=i.wheelStartX=i.wheelStartY=null,i.shift=!1,i.selForContextMenu=null,i.activeTouch=null,i.gutterSpecs=Qr(n.gutters,n.lineNumbers),ko(i),r.init(i)}u(Xa,\"Display\");var Jr=0,Vt=null;A?Vt=-.53:It?Vt=15:nr?Vt=-.7:rr&&(Vt=-1/3);function To(t){var e=t.wheelDeltaX,r=t.wheelDeltaY;return e==null&&t.detail&&t.axis==t.HORIZONTAL_AXIS&&(e=t.detail),r==null&&t.detail&&t.axis==t.VERTICAL_AXIS?r=t.detail:r==null&&(r=t.wheelDelta),{x:e,y:r}}u(To,\"wheelEventDelta\");function _a(t){var e=To(t);return e.x*=Vt,e.y*=Vt,e}u(_a,\"wheelEventPixels\");function Mo(t,e){var r=To(e),n=r.x,i=r.y,o=Vt;e.deltaMode===0&&(n=e.deltaX,i=e.deltaY,o=1);var l=t.display,a=l.scroller,s=a.scrollWidth>a.clientWidth,c=a.scrollHeight>a.clientHeight;if(n&&s||i&&c){if(i&&xt&&ot){t:for(var h=e.target,d=l.view;h!=a;h=h.parentNode)for(var p=0;p<d.length;p++)if(d[p].node==h){t.display.currentWheelTarget=h;break t}}if(n&&!It&&!kt&&o!=null){i&&c&&Ze(t,Math.max(0,a.scrollTop+i*o)),oe(t,Math.max(0,a.scrollLeft+n*o)),(!i||i&&c)&&lt(e),l.wheelStartX=null;return}if(i&&o!=null){var f=i*o,g=t.doc.scrollTop,m=g+l.wrapper.clientHeight;f<0?g=Math.max(0,g+f-50):m=Math.min(t.doc.height,m+f+50),Yr(t,{top:g,bottom:m})}Jr<20&&e.deltaMode!==0&&(l.wheelStartX==null?(l.wheelStartX=a.scrollLeft,l.wheelStartY=a.scrollTop,l.wheelDX=n,l.wheelDY=i,setTimeout(function(){if(l.wheelStartX!=null){var y=a.scrollLeft-l.wheelStartX,b=a.scrollTop-l.wheelStartY,x=b&&l.wheelDY&&b/l.wheelDY||y&&l.wheelDX&&y/l.wheelDX;l.wheelStartX=l.wheelStartY=null,x&&(Vt=(Vt*Jr+x)/(Jr+1),++Jr)}},200)):(l.wheelDX+=n,l.wheelDY+=i))}}u(Mo,\"onScrollWheel\");var wt=u(function(t,e){this.ranges=t,this.primIndex=e},\"Selection\");wt.prototype.primary=function(){return this.ranges[this.primIndex]},wt.prototype.equals=function(t){if(t==this)return!0;if(t.primIndex!=this.primIndex||t.ranges.length!=this.ranges.length)return!1;for(var e=0;e<this.ranges.length;e++){var r=this.ranges[e],n=t.ranges[e];if(!wr(r.anchor,n.anchor)||!wr(r.head,n.head))return!1}return!0},wt.prototype.deepCopy=function(){for(var t=[],e=0;e<this.ranges.length;e++)t[e]=new H(xr(this.ranges[e].anchor),xr(this.ranges[e].head));return new wt(t,this.primIndex)},wt.prototype.somethingSelected=function(){for(var t=0;t<this.ranges.length;t++)if(!this.ranges[t].empty())return!0;return!1},wt.prototype.contains=function(t,e){e||(e=t);for(var r=0;r<this.ranges.length;r++){var n=this.ranges[r];if(N(e,n.from())>=0&&N(t,n.to())<=0)return r}return-1};var H=u(function(t,e){this.anchor=t,this.head=e},\"Range\");H.prototype.from=function(){return wn(this.anchor,this.head)},H.prototype.to=function(){return bn(this.anchor,this.head)},H.prototype.empty=function(){return this.head.line==this.anchor.line&&this.head.ch==this.anchor.ch};function Lt(t,e,r){var n=t&&t.options.selectionsMayTouch,i=e[r];e.sort(function(p,f){return N(p.from(),f.from())}),r=J(e,i);for(var o=1;o<e.length;o++){var l=e[o],a=e[o-1],s=N(a.to(),l.from());if(n&&!l.empty()?s>0:s>=0){var c=wn(a.from(),l.from()),h=bn(a.to(),l.to()),d=a.empty()?l.from()==l.head:a.from()==a.head;o<=r&&--r,e.splice(--o,2,new H(d?h:c,d?c:h))}}return new wt(e,r)}u(Lt,\"normalizeSelection\");function jt(t,e){return new wt([new H(t,e||t)],0)}u(jt,\"simpleSelection\");function Xt(t){return t.text?v(t.from.line+t.text.length-1,W(t.text).length+(t.text.length==1?t.from.ch:0)):t.to}u(Xt,\"changeEnd\");function No(t,e){if(N(t,e.from)<0)return t;if(N(t,e.to)<=0)return Xt(e);var r=t.line+e.text.length-(e.to.line-e.from.line)-1,n=t.ch;return t.line==e.to.line&&(n+=Xt(e).ch-e.to.ch),v(r,n)}u(No,\"adjustForChange\");function ti(t,e){for(var r=[],n=0;n<t.sel.ranges.length;n++){var i=t.sel.ranges[n];r.push(new H(No(i.anchor,e),No(i.head,e)))}return Lt(t.cm,r,t.sel.primIndex)}u(ti,\"computeSelAfterChange\");function Oo(t,e,r){return t.line==e.line?v(r.line,t.ch-e.ch+r.ch):v(r.line+(t.line-e.line),t.ch)}u(Oo,\"offsetPos\");function qa(t,e,r){for(var n=[],i=v(t.first,0),o=i,l=0;l<e.length;l++){var a=e[l],s=Oo(a.from,i,o),c=Oo(Xt(a),i,o);if(i=a.to,o=c,r==\"around\"){var h=t.sel.ranges[l],d=N(h.head,h.anchor)<0;n[l]=new H(d?c:s,d?s:c)}else n[l]=new H(s,s)}return new wt(n,t.sel.primIndex)}u(qa,\"computeReplacedSel\");function ei(t){t.doc.mode=mr(t.options,t.doc.modeOption),tn(t)}u(ei,\"loadMode\");function tn(t){t.doc.iter(function(e){e.stateAfter&&(e.stateAfter=null),e.styles&&(e.styles=null)}),t.doc.modeFrontier=t.doc.highlightFrontier=t.doc.first,Qe(t,100),t.state.modeGen++,t.curOp&&at(t)}u(tn,\"resetModeState\");function Do(t,e){return e.from.ch==0&&e.to.ch==0&&W(e.text)==\"\"&&(!t.cm||t.cm.options.wholeLineUpdateBefore)}u(Do,\"isWholeLineUpdate\");function ni(t,e,r,n){function i(x){return r?r[x]:null}u(i,\"spansFor\");function o(x,w,C){ra(x,w,C,n),_(x,\"change\",x,e)}u(o,\"update\");function l(x,w){for(var C=[],T=x;T<w;++T)C.push(new Ke(c[T],i(T),n));return C}u(l,\"linesFor\");var a=e.from,s=e.to,c=e.text,h=S(t,a.line),d=S(t,s.line),p=W(c),f=i(c.length-1),g=s.line-a.line;if(e.full)t.insert(0,l(0,c.length)),t.remove(c.length,t.size-c.length);else if(Do(t,e)){var m=l(0,c.length-1);o(d,d.text,f),g&&t.remove(a.line,g),m.length&&t.insert(a.line,m)}else if(h==d)if(c.length==1)o(h,h.text.slice(0,a.ch)+p+h.text.slice(s.ch),f);else{var y=l(1,c.length-1);y.push(new Ke(p+h.text.slice(s.ch),f,n)),o(h,h.text.slice(0,a.ch)+c[0],i(0)),t.insert(a.line+1,y)}else if(c.length==1)o(h,h.text.slice(0,a.ch)+c[0]+d.text.slice(s.ch),i(0)),t.remove(a.line+1,g);else{o(h,h.text.slice(0,a.ch)+c[0],i(0)),o(d,p+d.text.slice(s.ch),f);var b=l(1,c.length-1);g>1&&t.remove(a.line+1,g-1),t.insert(a.line+1,b)}_(t,\"change\",t,e)}u(ni,\"updateDoc\");function _t(t,e,r){function n(i,o,l){if(i.linked)for(var a=0;a<i.linked.length;++a){var s=i.linked[a];if(s.doc!=o){var c=l&&s.sharedHist;r&&!c||(e(s.doc,c),n(s.doc,i,c))}}}u(n,\"propagate\"),n(t,null,!0)}u(_t,\"linkedDocs\");function Ao(t,e){if(e.cm)throw new Error(\"This document is already in use.\");t.doc=e,e.cm=t,Br(t),ei(t),Wo(t),t.options.direction=e.direction,t.options.lineWrapping||Or(t),t.options.mode=e.modeOption,at(t)}u(Ao,\"attachDoc\");function Wo(t){(t.doc.direction==\"rtl\"?Zt:fe)(t.display.lineDiv,\"CodeMirror-rtl\")}u(Wo,\"setDirectionClass\");function Ya(t){ut(t,function(){Wo(t),at(t)})}u(Ya,\"directionChanged\");function In(t){this.done=[],this.undone=[],this.undoDepth=t?t.undoDepth:1/0,this.lastModTime=this.lastSelTime=0,this.lastOp=this.lastSelOp=null,this.lastOrigin=this.lastSelOrigin=null,this.generation=this.maxGeneration=t?t.maxGeneration:1}u(In,\"History\");function ri(t,e){var r={from:xr(e.from),to:Xt(e),text:te(t,e.from,e.to)};return Po(t,r,e.from.line,e.to.line+1),_t(t,function(n){return Po(n,r,e.from.line,e.to.line+1)},!0),r}u(ri,\"historyChangeFromChange\");function Ho(t){for(;t.length;){var e=W(t);if(e.ranges)t.pop();else break}}u(Ho,\"clearSelectionEvents\");function Za(t,e){if(e)return Ho(t.done),W(t.done);if(t.done.length&&!W(t.done).ranges)return W(t.done);if(t.done.length>1&&!t.done[t.done.length-2].ranges)return t.done.pop(),W(t.done)}u(Za,\"lastChangeEvent\");function Fo(t,e,r,n){var i=t.history;i.undone.length=0;var o=+new Date,l,a;if((i.lastOp==n||i.lastOrigin==e.origin&&e.origin&&(e.origin.charAt(0)==\"+\"&&i.lastModTime>o-(t.cm?t.cm.options.historyEventDelay:500)||e.origin.charAt(0)==\"*\"))&&(l=Za(i,i.lastOp==n)))a=W(l.changes),N(e.from,e.to)==0&&N(e.from,a.to)==0?a.to=Xt(e):l.changes.push(ri(t,e));else{var s=W(i.done);for((!s||!s.ranges)&&Rn(t.sel,i.done),l={changes:[ri(t,e)],generation:i.generation},i.done.push(l);i.done.length>i.undoDepth;)i.done.shift(),i.done[0].ranges||i.done.shift()}i.done.push(r),i.generation=++i.maxGeneration,i.lastModTime=i.lastSelTime=o,i.lastOp=i.lastSelOp=n,i.lastOrigin=i.lastSelOrigin=e.origin,a||U(t,\"historyAdded\")}u(Fo,\"addChangeToHistory\");function $a(t,e,r,n){var i=e.charAt(0);return i==\"*\"||i==\"+\"&&r.ranges.length==n.ranges.length&&r.somethingSelected()==n.somethingSelected()&&new Date-t.history.lastSelTime<=(t.cm?t.cm.options.historyEventDelay:500)}u($a,\"selectionEventCanBeMerged\");function Qa(t,e,r,n){var i=t.history,o=n&&n.origin;r==i.lastSelOp||o&&i.lastSelOrigin==o&&(i.lastModTime==i.lastSelTime&&i.lastOrigin==o||$a(t,o,W(i.done),e))?i.done[i.done.length-1]=e:Rn(e,i.done),i.lastSelTime=+new Date,i.lastSelOrigin=o,i.lastSelOp=r,n&&n.clearRedo!==!1&&Ho(i.undone)}u(Qa,\"addSelectionToHistory\");function Rn(t,e){var r=W(e);r&&r.ranges&&r.equals(t)||e.push(t)}u(Rn,\"pushSelectionToHistory\");function Po(t,e,r,n){var i=e[\"spans_\"+t.id],o=0;t.iter(Math.max(t.first,r),Math.min(t.first+t.size,n),function(l){l.markedSpans&&((i||(i=e[\"spans_\"+t.id]={}))[o]=l.markedSpans),++o})}u(Po,\"attachLocalSpans\");function Ja(t){if(!t)return null;for(var e,r=0;r<t.length;++r)t[r].marker.explicitlyCleared?e||(e=t.slice(0,r)):e&&e.push(t[r]);return e?e.length?e:null:t}u(Ja,\"removeClearedSpans\");function ts(t,e){var r=e[\"spans_\"+t.id];if(!r)return null;for(var n=[],i=0;i<e.text.length;++i)n.push(Ja(r[i]));return n}u(ts,\"getOldSpans\");function Eo(t,e){var r=ts(t,e),n=kr(t,e);if(!r)return n;if(!n)return r;for(var i=0;i<r.length;++i){var o=r[i],l=n[i];if(o&&l)t:for(var a=0;a<l.length;++a){for(var s=l[a],c=0;c<o.length;++c)if(o[c].marker==s.marker)continue t;o.push(s)}else l&&(r[i]=l)}return r}u(Eo,\"mergeOldSpans\");function ke(t,e,r){for(var n=[],i=0;i<t.length;++i){var o=t[i];if(o.ranges){n.push(r?wt.prototype.deepCopy.call(o):o);continue}var l=o.changes,a=[];n.push({changes:a});for(var s=0;s<l.length;++s){var c=l[s],h=void 0;if(a.push({from:c.from,to:c.to,text:c.text}),e)for(var d in c)(h=d.match(/^spans_(\\d+)$/))&&J(e,Number(h[1]))>-1&&(W(a)[d]=c[d],delete c[d])}}return n}u(ke,\"copyHistoryArray\");function ii(t,e,r,n){if(n){var i=t.anchor;if(r){var o=N(e,i)<0;o!=N(r,i)<0?(i=e,e=r):o!=N(e,r)<0&&(e=r)}return new H(i,e)}else return new H(r||e,e)}u(ii,\"extendRange\");function zn(t,e,r,n,i){i==null&&(i=t.cm&&(t.cm.display.shift||t.extend)),tt(t,new wt([ii(t.sel.primary(),e,r,i)],0),n)}u(zn,\"extendSelection\");function Io(t,e,r){for(var n=[],i=t.cm&&(t.cm.display.shift||t.extend),o=0;o<t.sel.ranges.length;o++)n[o]=ii(t.sel.ranges[o],e[o],null,i);var l=Lt(t.cm,n,t.sel.primIndex);tt(t,l,r)}u(Io,\"extendSelections\");function oi(t,e,r,n){var i=t.sel.ranges.slice(0);i[e]=r,tt(t,Lt(t.cm,i,t.sel.primIndex),n)}u(oi,\"replaceOneSelection\");function Ro(t,e,r,n){tt(t,jt(e,r),n)}u(Ro,\"setSimpleSelection\");function es(t,e,r){var n={ranges:e.ranges,update:function(i){this.ranges=[];for(var o=0;o<i.length;o++)this.ranges[o]=new H(O(t,i[o].anchor),O(t,i[o].head))},origin:r&&r.origin};return U(t,\"beforeSelectionChange\",t,n),t.cm&&U(t.cm,\"beforeSelectionChange\",t.cm,n),n.ranges!=e.ranges?Lt(t.cm,n.ranges,n.ranges.length-1):e}u(es,\"filterSelectionChange\");function zo(t,e,r){var n=t.history.done,i=W(n);i&&i.ranges?(n[n.length-1]=e,Bn(t,e,r)):tt(t,e,r)}u(zo,\"setSelectionReplaceHistory\");function tt(t,e,r){Bn(t,e,r),Qa(t,t.sel,t.cm?t.cm.curOp.id:NaN,r)}u(tt,\"setSelection\");function Bn(t,e,r){(bt(t,\"beforeSelectionChange\")||t.cm&&bt(t.cm,\"beforeSelectionChange\"))&&(e=es(t,e,r));var n=r&&r.bias||(N(e.primary().head,t.sel.primary().head)<0?-1:1);Bo(t,Go(t,e,n,!0)),!(r&&r.scroll===!1)&&t.cm&&t.cm.getOption(\"readOnly\")!=\"nocursor\"&&Ce(t.cm)}u(Bn,\"setSelectionNoUndo\");function Bo(t,e){e.equals(t.sel)||(t.sel=e,t.cm&&(t.cm.curOp.updateInput=1,t.cm.curOp.selectionChanged=!0,xi(t.cm)),_(t,\"cursorActivity\",t))}u(Bo,\"setSelectionInner\");function Uo(t){Bo(t,Go(t,t.sel,null,!1))}u(Uo,\"reCheckSelection\");function Go(t,e,r,n){for(var i,o=0;o<e.ranges.length;o++){var l=e.ranges[o],a=e.ranges.length==t.sel.ranges.length&&t.sel.ranges[o],s=Un(t,l.anchor,a&&a.anchor,r,n),c=Un(t,l.head,a&&a.head,r,n);(i||s!=l.anchor||c!=l.head)&&(i||(i=e.ranges.slice(0,o)),i[o]=new H(s,c))}return i?Lt(t.cm,i,e.primIndex):e}u(Go,\"skipAtomicInSelection\");function Te(t,e,r,n,i){var o=S(t,e.line);if(o.markedSpans)for(var l=0;l<o.markedSpans.length;++l){var a=o.markedSpans[l],s=a.marker,c=\"selectLeft\"in s?!s.selectLeft:s.inclusiveLeft,h=\"selectRight\"in s?!s.selectRight:s.inclusiveRight;if((a.from==null||(c?a.from<=e.ch:a.from<e.ch))&&(a.to==null||(h?a.to>=e.ch:a.to>e.ch))){if(i&&(U(s,\"beforeCursorEnter\"),s.explicitlyCleared))if(o.markedSpans){--l;continue}else break;if(!s.atomic)continue;if(r){var d=s.find(n<0?1:-1),p=void 0;if((n<0?h:c)&&(d=Ko(t,d,-n,d&&d.line==e.line?o:null)),d&&d.line==e.line&&(p=N(d,r))&&(n<0?p<0:p>0))return Te(t,d,e,n,i)}var f=s.find(n<0?-1:1);return(n<0?c:h)&&(f=Ko(t,f,n,f.line==e.line?o:null)),f?Te(t,f,e,n,i):null}}return e}u(Te,\"skipAtomicInner\");function Un(t,e,r,n,i){var o=n||1,l=Te(t,e,r,o,i)||!i&&Te(t,e,r,o,!0)||Te(t,e,r,-o,i)||!i&&Te(t,e,r,-o,!0);return l||(t.cantEdit=!0,v(t.first,0))}u(Un,\"skipAtomic\");function Ko(t,e,r,n){return r<0&&e.ch==0?e.line>t.first?O(t,v(e.line-1)):null:r>0&&e.ch==(n||S(t,e.line)).text.length?e.line<t.first+t.size-1?v(e.line+1,0):null:new v(e.line,e.ch+r)}u(Ko,\"movePos\");function Vo(t){t.setSelection(v(t.firstLine(),0),v(t.lastLine()),Dt)}u(Vo,\"selectAll\");function jo(t,e,r){var n={canceled:!1,from:e.from,to:e.to,text:e.text,origin:e.origin,cancel:function(){return n.canceled=!0}};return r&&(n.update=function(i,o,l,a){i&&(n.from=O(t,i)),o&&(n.to=O(t,o)),l&&(n.text=l),a!==void 0&&(n.origin=a)}),U(t,\"beforeChange\",t,n),t.cm&&U(t.cm,\"beforeChange\",t.cm,n),n.canceled?(t.cm&&(t.cm.curOp.updateInput=2),null):{from:n.from,to:n.to,text:n.text,origin:n.origin}}u(jo,\"filterChange\");function Me(t,e,r){if(t.cm){if(!t.cm.curOp)return q(t.cm,Me)(t,e,r);if(t.cm.state.suppressEdits)return}if(!((bt(t,\"beforeChange\")||t.cm&&bt(t.cm,\"beforeChange\"))&&(e=jo(t,e,!0),!e))){var n=Xl&&!r&&Jl(t,e.from,e.to);if(n)for(var i=n.length-1;i>=0;--i)Xo(t,{from:n[i].from,to:n[i].to,text:i?[\"\"]:e.text,origin:e.origin});else Xo(t,e)}}u(Me,\"makeChange\");function Xo(t,e){if(!(e.text.length==1&&e.text[0]==\"\"&&N(e.from,e.to)==0)){var r=ti(t,e);Fo(t,e,r,t.cm?t.cm.curOp.id:NaN),en(t,e,r,kr(t,e));var n=[];_t(t,function(i,o){!o&&J(n,i.history)==-1&&(Zo(i.history,e),n.push(i.history)),en(i,e,null,kr(i,e))})}}u(Xo,\"makeChangeInner\");function Gn(t,e,r){var n=t.cm&&t.cm.state.suppressEdits;if(!(n&&!r)){for(var i=t.history,o,l=t.sel,a=e==\"undo\"?i.done:i.undone,s=e==\"undo\"?i.undone:i.done,c=0;c<a.length&&(o=a[c],!(r?o.ranges&&!o.equals(t.sel):!o.ranges));c++);if(c!=a.length){for(i.lastOrigin=i.lastSelOrigin=null;;)if(o=a.pop(),o.ranges){if(Rn(o,s),r&&!o.equals(t.sel)){tt(t,o,{clearRedo:!1});return}l=o}else if(n){a.push(o);return}else break;var h=[];Rn(l,s),s.push({changes:h,generation:i.generation}),i.generation=o.generation||++i.maxGeneration;for(var d=bt(t,\"beforeChange\")||t.cm&&bt(t.cm,\"beforeChange\"),p=u(function(m){var y=o.changes[m];if(y.origin=e,d&&!jo(t,y,!1))return a.length=0,{};h.push(ri(t,y));var b=m?ti(t,y):W(a);en(t,y,b,Eo(t,y)),!m&&t.cm&&t.cm.scrollIntoView({from:y.from,to:Xt(y)});var x=[];_t(t,function(w,C){!C&&J(x,w.history)==-1&&(Zo(w.history,y),x.push(w.history)),en(w,y,null,Eo(w,y))})},\"loop\"),f=o.changes.length-1;f>=0;--f){var g=p(f);if(g)return g.v}}}}u(Gn,\"makeChangeFromHistory\");function _o(t,e){if(e!=0&&(t.first+=e,t.sel=new wt(gn(t.sel.ranges,function(i){return new H(v(i.anchor.line+e,i.anchor.ch),v(i.head.line+e,i.head.ch))}),t.sel.primIndex),t.cm)){at(t.cm,t.first,t.first-e,e);for(var r=t.cm.display,n=r.viewFrom;n<r.viewTo;n++)Gt(t.cm,n,\"gutter\")}}u(_o,\"shiftDoc\");function en(t,e,r,n){if(t.cm&&!t.cm.curOp)return q(t.cm,en)(t,e,r,n);if(e.to.line<t.first){_o(t,e.text.length-1-(e.to.line-e.from.line));return}if(!(e.from.line>t.lastLine())){if(e.from.line<t.first){var i=e.text.length-1-(t.first-e.from.line);_o(t,i),e={from:v(t.first,0),to:v(e.to.line+i,e.to.ch),text:[W(e.text)],origin:e.origin}}var o=t.lastLine();e.to.line>o&&(e={from:e.from,to:v(o,S(t,o).text.length),text:[e.text[0]],origin:e.origin}),e.removed=te(t,e.from,e.to),r||(r=ti(t,e)),t.cm?ns(t.cm,e,n):ni(t,e,n),Bn(t,r,Dt),t.cantEdit&&Un(t,v(t.firstLine(),0))&&(t.cantEdit=!1)}}u(en,\"makeChangeSingleDoc\");function ns(t,e,r){var n=t.doc,i=t.display,o=e.from,l=e.to,a=!1,s=o.line;t.options.lineWrapping||(s=F(Ct(S(n,o.line))),n.iter(s,l.line+1,function(f){if(f==i.maxLine)return a=!0,!0})),n.sel.contains(e.from,e.to)>-1&&xi(t),ni(n,e,r,fo(t)),t.options.lineWrapping||(n.iter(s,o.line+e.text.length,function(f){var g=kn(f);g>i.maxLineLength&&(i.maxLine=f,i.maxLineLength=g,i.maxLineChanged=!0,a=!1)}),a&&(t.curOp.updateMaxLine=!0)),jl(n,o.line),Qe(t,400);var c=e.text.length-(l.line-o.line)-1;e.full?at(t):o.line==l.line&&e.text.length==1&&!Do(t.doc,e)?Gt(t,o.line,\"text\"):at(t,o.line,l.line+1,c);var h=bt(t,\"changes\"),d=bt(t,\"change\");if(d||h){var p={from:o,to:l,text:e.text,removed:e.removed,origin:e.origin};d&&_(t,\"change\",t,p),h&&(t.curOp.changeObjs||(t.curOp.changeObjs=[])).push(p)}t.display.selForContextMenu=null}u(ns,\"makeChangeSingleDocInEditor\");function Ne(t,e,r,n,i){var o;n||(n=r),N(n,r)<0&&(o=[n,r],r=o[0],n=o[1]),typeof e==\"string\"&&(e=t.splitLines(e)),Me(t,{from:r,to:n,text:e,origin:i})}u(Ne,\"replaceRange\");function qo(t,e,r,n){r<t.line?t.line+=n:e<t.line&&(t.line=e,t.ch=0)}u(qo,\"rebaseHistSelSingle\");function Yo(t,e,r,n){for(var i=0;i<t.length;++i){var o=t[i],l=!0;if(o.ranges){o.copied||(o=t[i]=o.deepCopy(),o.copied=!0);for(var a=0;a<o.ranges.length;a++)qo(o.ranges[a].anchor,e,r,n),qo(o.ranges[a].head,e,r,n);continue}for(var s=0;s<o.changes.length;++s){var c=o.changes[s];if(r<c.from.line)c.from=v(c.from.line+n,c.from.ch),c.to=v(c.to.line+n,c.to.ch);else if(e<=c.to.line){l=!1;break}}l||(t.splice(0,i+1),i=0)}}u(Yo,\"rebaseHistArray\");function Zo(t,e){var r=e.from.line,n=e.to.line,i=e.text.length-(n-r)-1;Yo(t.done,r,n,i),Yo(t.undone,r,n,i)}u(Zo,\"rebaseHist\");function nn(t,e,r,n){var i=e,o=e;return typeof e==\"number\"?o=S(t,Di(t,e)):i=F(e),i==null?null:(n(o,i)&&t.cm&&Gt(t.cm,i,r),o)}u(nn,\"changeLine\");function rn(t){this.lines=t,this.parent=null;for(var e=0,r=0;r<t.length;++r)t[r].parent=this,e+=t[r].height;this.height=e}u(rn,\"LeafChunk\"),rn.prototype={chunkSize:function(){return this.lines.length},removeInner:function(t,e){for(var r=t,n=t+e;r<n;++r){var i=this.lines[r];this.height-=i.height,ia(i),_(i,\"delete\")}this.lines.splice(t,e)},collapse:function(t){t.push.apply(t,this.lines)},insertInner:function(t,e,r){this.height+=r,this.lines=this.lines.slice(0,t).concat(e).concat(this.lines.slice(t));for(var n=0;n<e.length;++n)e[n].parent=this},iterN:function(t,e,r){for(var n=t+e;t<n;++t)if(r(this.lines[t]))return!0}};function on(t){this.children=t;for(var e=0,r=0,n=0;n<t.length;++n){var i=t[n];e+=i.chunkSize(),r+=i.height,i.parent=this}this.size=e,this.height=r,this.parent=null}u(on,\"BranchChunk\"),on.prototype={chunkSize:function(){return this.size},removeInner:function(t,e){this.size-=e;for(var r=0;r<this.children.length;++r){var n=this.children[r],i=n.chunkSize();if(t<i){var o=Math.min(e,i-t),l=n.height;if(n.removeInner(t,o),this.height-=l-n.height,i==o&&(this.children.splice(r--,1),n.parent=null),(e-=o)==0)break;t=0}else t-=i}if(this.size-e<25&&(this.children.length>1||!(this.children[0]instanceof rn))){var a=[];this.collapse(a),this.children=[new rn(a)],this.children[0].parent=this}},collapse:function(t){for(var e=0;e<this.children.length;++e)this.children[e].collapse(t)},insertInner:function(t,e,r){this.size+=e.length,this.height+=r;for(var n=0;n<this.children.length;++n){var i=this.children[n],o=i.chunkSize();if(t<=o){if(i.insertInner(t,e,r),i.lines&&i.lines.length>50){for(var l=i.lines.length%25+25,a=l;a<i.lines.length;){var s=new rn(i.lines.slice(a,a+=25));i.height-=s.height,this.children.splice(++n,0,s),s.parent=this}i.lines=i.lines.slice(0,l),this.maybeSpill()}break}t-=o}},maybeSpill:function(){if(!(this.children.length<=10)){var t=this;do{var e=t.children.splice(t.children.length-5,5),r=new on(e);if(t.parent){t.size-=r.size,t.height-=r.height;var n=J(t.parent.children,t);t.parent.children.splice(n+1,0,r)}else{var i=new on(t.children);i.parent=t,t.children=[i,r],t=i}r.parent=t.parent}while(t.children.length>10);t.parent.maybeSpill()}},iterN:function(t,e,r){for(var n=0;n<this.children.length;++n){var i=this.children[n],o=i.chunkSize();if(t<o){var l=Math.min(e,o-t);if(i.iterN(t,l,r))return!0;if((e-=l)==0)break;t=0}else t-=o}}};var Kn=u(function(t,e,r){if(r)for(var n in r)r.hasOwnProperty(n)&&(this[n]=r[n]);this.doc=t,this.node=e},\"LineWidget\");Kn.prototype.clear=function(){var t=this.doc.cm,e=this.line.widgets,r=this.line,n=F(r);if(!(n==null||!e)){for(var i=0;i<e.length;++i)e[i]==this&&e.splice(i--,1);e.length||(r.widgets=null);var o=Xe(this);Tt(r,Math.max(0,r.height-o)),t&&(ut(t,function(){$o(t,r,-o),Gt(t,n,\"widget\")}),_(t,\"lineWidgetCleared\",t,this,n))}},Kn.prototype.changed=function(){var t=this,e=this.height,r=this.doc.cm,n=this.line;this.height=null;var i=Xe(this)-e;i&&(Ut(this.doc,n)||Tt(n,n.height+i),r&&ut(r,function(){r.curOp.forceUpdate=!0,$o(r,n,i),_(r,\"lineWidgetChanged\",r,t,F(n))}))},me(Kn);function $o(t,e,r){Ht(e)<(t.curOp&&t.curOp.scrollTop||t.doc.scrollTop)&&Xr(t,r)}u($o,\"adjustScrollWhenAboveVisible\");function rs(t,e,r,n){var i=new Kn(t,r,n),o=t.cm;return o&&i.noHScroll&&(o.display.alignWidgets=!0),nn(t,e,\"widget\",function(l){var a=l.widgets||(l.widgets=[]);if(i.insertAt==null?a.push(i):a.splice(Math.min(a.length,Math.max(0,i.insertAt)),0,i),i.line=l,o&&!Ut(t,l)){var s=Ht(l)<t.scrollTop;Tt(l,l.height+Xe(i)),s&&Xr(o,i.height),o.curOp.forceUpdate=!0}return!0}),o&&_(o,\"lineWidgetAdded\",o,i,typeof e==\"number\"?e:F(e)),i}u(rs,\"addLineWidget\");var is=0,se=u(function(t,e){this.lines=[],this.type=e,this.doc=t,this.id=++is},\"TextMarker\");se.prototype.clear=function(){if(!this.explicitlyCleared){var t=this.doc.cm,e=t&&!t.curOp;if(e&&le(t),bt(this,\"clear\")){var r=this.find();r&&_(this,\"clear\",r.from,r.to)}for(var n=null,i=null,o=0;o<this.lines.length;++o){var l=this.lines[o],a=Ge(l.markedSpans,this);t&&!this.collapsed?Gt(t,F(l),\"text\"):t&&(a.to!=null&&(i=F(l)),a.from!=null&&(n=F(l))),l.markedSpans=Yl(l.markedSpans,a),a.from==null&&this.collapsed&&!Ut(this.doc,l)&&t&&Tt(l,be(t.display))}if(t&&this.collapsed&&!t.options.lineWrapping)for(var s=0;s<this.lines.length;++s){var c=Ct(this.lines[s]),h=kn(c);h>t.display.maxLineLength&&(t.display.maxLine=c,t.display.maxLineLength=h,t.display.maxLineChanged=!0)}n!=null&&t&&this.collapsed&&at(t,n,i+1),this.lines.length=0,this.explicitlyCleared=!0,this.atomic&&this.doc.cantEdit&&(this.doc.cantEdit=!1,t&&Uo(t.doc)),t&&_(t,\"markerCleared\",t,this,n,i),e&&ae(t),this.parent&&this.parent.clear()}},se.prototype.find=function(t,e){t==null&&this.type==\"bookmark\"&&(t=1);for(var r,n,i=0;i<this.lines.length;++i){var o=this.lines[i],l=Ge(o.markedSpans,this);if(l.from!=null&&(r=v(e?o:F(o),l.from),t==-1))return r;if(l.to!=null&&(n=v(e?o:F(o),l.to),t==1))return n}return r&&{from:r,to:n}},se.prototype.changed=function(){var t=this,e=this.find(-1,!0),r=this,n=this.doc.cm;!e||!n||ut(n,function(){var i=e.line,o=F(e.line),l=Hr(n,o);if(l&&(io(l),n.curOp.selectionChanged=n.curOp.forceUpdate=!0),n.curOp.updateMaxLine=!0,!Ut(r.doc,i)&&r.height!=null){var a=r.height;r.height=null;var s=Xe(r)-a;s&&Tt(i,i.height+s)}_(n,\"markerChanged\",n,t)})},se.prototype.attachLine=function(t){if(!this.lines.length&&this.doc.cm){var e=this.doc.cm.curOp;(!e.maybeHiddenMarkers||J(e.maybeHiddenMarkers,this)==-1)&&(e.maybeUnhiddenMarkers||(e.maybeUnhiddenMarkers=[])).push(this)}this.lines.push(t)},se.prototype.detachLine=function(t){if(this.lines.splice(J(this.lines,t),1),!this.lines.length&&this.doc.cm){var e=this.doc.cm.curOp;(e.maybeHiddenMarkers||(e.maybeHiddenMarkers=[])).push(this)}},me(se);function Oe(t,e,r,n,i){if(n&&n.shared)return os(t,e,r,n,i);if(t.cm&&!t.cm.curOp)return q(t.cm,Oe)(t,e,r,n,i);var o=new se(t,i),l=N(e,r);if(n&&$t(n,o,!1),l>0||l==0&&o.clearWhenEmpty!==!1)return o;if(o.replacedWith&&(o.collapsed=!0,o.widgetNode=pe(\"span\",[o.replacedWith],\"CodeMirror-widget\"),n.handleMouseEvents||o.widgetNode.setAttribute(\"cm-ignore-events\",\"true\"),n.insertLeft&&(o.widgetNode.insertLeft=!0)),o.collapsed){if(Ki(t,e.line,e,r,o)||e.line!=r.line&&Ki(t,r.line,e,r,o))throw new Error(\"Inserting collapsed marker partially overlapping an existing one\");ql()}o.addToHistory&&Fo(t,{from:e,to:r,origin:\"markText\"},t.sel,NaN);var a=e.line,s=t.cm,c;if(t.iter(a,r.line+1,function(d){s&&o.collapsed&&!s.options.lineWrapping&&Ct(d)==s.display.maxLine&&(c=!0),o.collapsed&&a!=e.line&&Tt(d,0),Zl(d,new xn(o,a==e.line?e.ch:null,a==r.line?r.ch:null),t.cm&&t.cm.curOp),++a}),o.collapsed&&t.iter(e.line,r.line+1,function(d){Ut(t,d)&&Tt(d,0)}),o.clearOnEnter&&M(o,\"beforeCursorEnter\",function(){return o.clear()}),o.readOnly&&(_l(),(t.history.done.length||t.history.undone.length)&&t.clearHistory()),o.collapsed&&(o.id=++is,o.atomic=!0),s){if(c&&(s.curOp.updateMaxLine=!0),o.collapsed)at(s,e.line,r.line+1);else if(o.className||o.startStyle||o.endStyle||o.css||o.attributes||o.title)for(var h=e.line;h<=r.line;h++)Gt(s,h,\"text\");o.atomic&&Uo(s.doc),_(s,\"markerAdded\",s,o)}return o}u(Oe,\"markText\");var Vn=u(function(t,e){this.markers=t,this.primary=e;for(var r=0;r<t.length;++r)t[r].parent=this},\"SharedTextMarker\");Vn.prototype.clear=function(){if(!this.explicitlyCleared){this.explicitlyCleared=!0;for(var t=0;t<this.markers.length;++t)this.markers[t].clear();_(this,\"clear\")}},Vn.prototype.find=function(t,e){return this.primary.find(t,e)},me(Vn);function os(t,e,r,n,i){n=$t(n),n.shared=!1;var o=[Oe(t,e,r,n,i)],l=o[0],a=n.widgetNode;return _t(t,function(s){a&&(n.widgetNode=a.cloneNode(!0)),o.push(Oe(s,O(s,e),O(s,r),n,i));for(var c=0;c<s.linked.length;++c)if(s.linked[c].isParent)return;l=W(o)}),new Vn(o,l)}u(os,\"markTextShared\");function Qo(t){return t.findMarks(v(t.first,0),t.clipPos(v(t.lastLine())),function(e){return e.parent})}u(Qo,\"findSharedMarkers\");function ls(t,e){for(var r=0;r<e.length;r++){var n=e[r],i=n.find(),o=t.clipPos(i.from),l=t.clipPos(i.to);if(N(o,l)){var a=Oe(t,o,l,n.primary,n.primary.type);n.markers.push(a),a.parent=n}}}u(ls,\"copySharedMarkers\");function as(t){for(var e=u(function(n){var i=t[n],o=[i.primary.doc];_t(i.primary.doc,function(s){return o.push(s)});for(var l=0;l<i.markers.length;l++){var a=i.markers[l];J(o,a.doc)==-1&&(a.parent=null,i.markers.splice(l--,1))}},\"loop\"),r=0;r<t.length;r++)e(r)}u(as,\"detachSharedMarkers\");var iu=0,ct=u(function(t,e,r,n,i){if(!(this instanceof ct))return new ct(t,e,r,n,i);r==null&&(r=0),on.call(this,[new rn([new Ke(\"\",null)])]),this.first=r,this.scrollTop=this.scrollLeft=0,this.cantEdit=!1,this.cleanGeneration=1,this.modeFrontier=this.highlightFrontier=r;var o=v(r,0);this.sel=jt(o),this.history=new In(null),this.id=++iu,this.modeOption=e,this.lineSep=n,this.direction=i==\"rtl\"?\"rtl\":\"ltr\",this.extend=!1,typeof t==\"string\"&&(t=this.splitLines(t)),ni(this,{from:o,to:o,text:t}),tt(this,jt(o),Dt)},\"Doc\");ct.prototype=yi(on.prototype,{constructor:ct,iter:function(t,e,r){r?this.iterN(t-this.first,e-t,r):this.iterN(this.first,this.first+this.size,t)},insert:function(t,e){for(var r=0,n=0;n<e.length;++n)r+=e[n].height;this.insertInner(t-this.first,e,r)},remove:function(t,e){this.removeInner(t-this.first,e)},getValue:function(t){var e=yr(this,this.first,this.first+this.size);return t===!1?e:e.join(t||this.lineSeparator())},setValue:Y(function(t){var e=v(this.first,0),r=this.first+this.size-1;Me(this,{from:e,to:v(r,S(this,r).text.length),text:this.splitLines(t),origin:\"setValue\",full:!0},!0),this.cm&&Ye(this.cm,0,0),tt(this,jt(e),Dt)}),replaceRange:function(t,e,r,n){e=O(this,e),r=r?O(this,r):e,Ne(this,t,e,r,n)},getRange:function(t,e,r){var n=te(this,O(this,t),O(this,e));return r===!1?n:r===\"\"?n.join(\"\"):n.join(r||this.lineSeparator())},getLine:function(t){var e=this.getLineHandle(t);return e&&e.text},getLineHandle:function(t){if(Be(this,t))return S(this,t)},getLineNumber:function(t){return F(t)},getLineHandleVisualStart:function(t){return typeof t==\"number\"&&(t=S(this,t)),Ct(t)},lineCount:function(){return this.size},firstLine:function(){return this.first},lastLine:function(){return this.first+this.size-1},clipPos:function(t){return O(this,t)},getCursor:function(t){var e=this.sel.primary(),r;return t==null||t==\"head\"?r=e.head:t==\"anchor\"?r=e.anchor:t==\"end\"||t==\"to\"||t===!1?r=e.to():r=e.from(),r},listSelections:function(){return this.sel.ranges},somethingSelected:function(){return this.sel.somethingSelected()},setCursor:Y(function(t,e,r){Ro(this,O(this,typeof t==\"number\"?v(t,e||0):t),null,r)}),setSelection:Y(function(t,e,r){Ro(this,O(this,t),O(this,e||t),r)}),extendSelection:Y(function(t,e,r){zn(this,O(this,t),e&&O(this,e),r)}),extendSelections:Y(function(t,e){Io(this,Ai(this,t),e)}),extendSelectionsBy:Y(function(t,e){var r=gn(this.sel.ranges,t);Io(this,Ai(this,r),e)}),setSelections:Y(function(t,e,r){if(t.length){for(var n=[],i=0;i<t.length;i++)n[i]=new H(O(this,t[i].anchor),O(this,t[i].head||t[i].anchor));e==null&&(e=Math.min(t.length-1,this.sel.primIndex)),tt(this,Lt(this.cm,n,e),r)}}),addSelection:Y(function(t,e,r){var n=this.sel.ranges.slice(0);n.push(new H(O(this,t),O(this,e||t))),tt(this,Lt(this.cm,n,n.length-1),r)}),getSelection:function(t){for(var e=this.sel.ranges,r,n=0;n<e.length;n++){var i=te(this,e[n].from(),e[n].to());r=r?r.concat(i):i}return t===!1?r:r.join(t||this.lineSeparator())},getSelections:function(t){for(var e=[],r=this.sel.ranges,n=0;n<r.length;n++){var i=te(this,r[n].from(),r[n].to());t!==!1&&(i=i.join(t||this.lineSeparator())),e[n]=i}return e},replaceSelection:function(t,e,r){for(var n=[],i=0;i<this.sel.ranges.length;i++)n[i]=t;this.replaceSelections(n,e,r||\"+input\")},replaceSelections:Y(function(t,e,r){for(var n=[],i=this.sel,o=0;o<i.ranges.length;o++){var l=i.ranges[o];n[o]={from:l.from(),to:l.to(),text:this.splitLines(t[o]),origin:r}}for(var a=e&&e!=\"end\"&&qa(this,n,e),s=n.length-1;s>=0;s--)Me(this,n[s]);a?zo(this,a):this.cm&&Ce(this.cm)}),undo:Y(function(){Gn(this,\"undo\")}),redo:Y(function(){Gn(this,\"redo\")}),undoSelection:Y(function(){Gn(this,\"undo\",!0)}),redoSelection:Y(function(){Gn(this,\"redo\",!0)}),setExtending:function(t){this.extend=t},getExtending:function(){return this.extend},historySize:function(){for(var t=this.history,e=0,r=0,n=0;n<t.done.length;n++)t.done[n].ranges||++e;for(var i=0;i<t.undone.length;i++)t.undone[i].ranges||++r;return{undo:e,redo:r}},clearHistory:function(){var t=this;this.history=new In(this.history),_t(this,function(e){return e.history=t.history},!0)},markClean:function(){this.cleanGeneration=this.changeGeneration(!0)},changeGeneration:function(t){return t&&(this.history.lastOp=this.history.lastSelOp=this.history.lastOrigin=null),this.history.generation},isClean:function(t){return this.history.generation==(t||this.cleanGeneration)},getHistory:function(){return{done:ke(this.history.done),undone:ke(this.history.undone)}},setHistory:function(t){var e=this.history=new In(this.history);e.done=ke(t.done.slice(0),null,!0),e.undone=ke(t.undone.slice(0),null,!0)},setGutterMarker:Y(function(t,e,r){return nn(this,t,\"gutter\",function(n){var i=n.gutterMarkers||(n.gutterMarkers={});return i[e]=r,!r&&bi(i)&&(n.gutterMarkers=null),!0})}),clearGutter:Y(function(t){var e=this;this.iter(function(r){r.gutterMarkers&&r.gutterMarkers[t]&&nn(e,r,\"gutter\",function(){return r.gutterMarkers[t]=null,bi(r.gutterMarkers)&&(r.gutterMarkers=null),!0})})}),lineInfo:function(t){var e;if(typeof t==\"number\"){if(!Be(this,t)||(e=t,t=S(this,t),!t))return null}else if(e=F(t),e==null)return null;return{line:e,handle:t,text:t.text,gutterMarkers:t.gutterMarkers,textClass:t.textClass,bgClass:t.bgClass,wrapClass:t.wrapClass,widgets:t.widgets}},addLineClass:Y(function(t,e,r){return nn(this,t,e==\"gutter\"?\"gutter\":\"class\",function(n){var i=e==\"text\"?\"textClass\":e==\"background\"?\"bgClass\":e==\"gutter\"?\"gutterClass\":\"wrapClass\";if(!n[i])n[i]=r;else{if(de(r).test(n[i]))return!1;n[i]+=\" \"+r}return!0})}),removeLineClass:Y(function(t,e,r){return nn(this,t,e==\"gutter\"?\"gutter\":\"class\",function(n){var i=e==\"text\"?\"textClass\":e==\"background\"?\"bgClass\":e==\"gutter\"?\"gutterClass\":\"wrapClass\",o=n[i];if(o)if(r==null)n[i]=null;else{var l=o.match(de(r));if(!l)return!1;var a=l.index+l[0].length;n[i]=o.slice(0,l.index)+(!l.index||a==o.length?\"\":\" \")+o.slice(a)||null}else return!1;return!0})}),addLineWidget:Y(function(t,e,r){return rs(this,t,e,r)}),removeLineWidget:function(t){t.clear()},markText:function(t,e,r){return Oe(this,O(this,t),O(this,e),r,r&&r.type||\"range\")},setBookmark:function(t,e){var r={replacedWith:e&&(e.nodeType==null?e.widget:e),insertLeft:e&&e.insertLeft,clearWhenEmpty:!1,shared:e&&e.shared,handleMouseEvents:e&&e.handleMouseEvents};return t=O(this,t),Oe(this,t,t,r,\"bookmark\")},findMarksAt:function(t){t=O(this,t);var e=[],r=S(this,t.line).markedSpans;if(r)for(var n=0;n<r.length;++n){var i=r[n];(i.from==null||i.from<=t.ch)&&(i.to==null||i.to>=t.ch)&&e.push(i.marker.parent||i.marker)}return e},findMarks:function(t,e,r){t=O(this,t),e=O(this,e);var n=[],i=t.line;return this.iter(t.line,e.line+1,function(o){var l=o.markedSpans;if(l)for(var a=0;a<l.length;a++){var s=l[a];!(s.to!=null&&i==t.line&&t.ch>=s.to||s.from==null&&i!=t.line||s.from!=null&&i==e.line&&s.from>=e.ch)&&(!r||r(s.marker))&&n.push(s.marker.parent||s.marker)}++i}),n},getAllMarks:function(){var t=[];return this.iter(function(e){var r=e.markedSpans;if(r)for(var n=0;n<r.length;++n)r[n].from!=null&&t.push(r[n].marker)}),t},posFromIndex:function(t){var e,r=this.first,n=this.lineSeparator().length;return this.iter(function(i){var o=i.text.length+n;if(o>t)return e=t,!0;t-=o,++r}),O(this,v(r,e))},indexFromPos:function(t){t=O(this,t);var e=t.ch;if(t.line<this.first||t.ch<0)return 0;var r=this.lineSeparator().length;return this.iter(this.first,t.line,function(n){e+=n.text.length+r}),e},copy:function(t){var e=new ct(yr(this,this.first,this.first+this.size),this.modeOption,this.first,this.lineSep,this.direction);return e.scrollTop=this.scrollTop,e.scrollLeft=this.scrollLeft,e.sel=this.sel,e.extend=!1,t&&(e.history.undoDepth=this.history.undoDepth,e.setHistory(this.getHistory())),e},linkedDoc:function(t){t||(t={});var e=this.first,r=this.first+this.size;t.from!=null&&t.from>e&&(e=t.from),t.to!=null&&t.to<r&&(r=t.to);var n=new ct(yr(this,e,r),t.mode||this.modeOption,e,this.lineSep,this.direction);return t.sharedHist&&(n.history=this.history),(this.linked||(this.linked=[])).push({doc:n,sharedHist:t.sharedHist}),n.linked=[{doc:this,isParent:!0,sharedHist:t.sharedHist}],ls(n,Qo(this)),n},unlinkDoc:function(t){if(t instanceof R&&(t=t.doc),this.linked)for(var e=0;e<this.linked.length;++e){var r=this.linked[e];if(r.doc==t){this.linked.splice(e,1),t.unlinkDoc(this),as(Qo(this));break}}if(t.history==this.history){var n=[t.id];_t(t,function(i){return n.push(i.id)},!0),t.history=new In(null),t.history.done=ke(this.history.done,n),t.history.undone=ke(this.history.undone,n)}},iterLinkedDocs:function(t){_t(this,t)},getMode:function(){return this.mode},getEditor:function(){return this.cm},splitLines:function(t){return this.lineSep?t.split(this.lineSep):Ti(t)},lineSeparator:function(){return this.lineSep||`\n`},setDirection:Y(function(t){t!=\"rtl\"&&(t=\"ltr\"),t!=this.direction&&(this.direction=t,this.iter(function(e){return e.order=null}),this.cm&&Ya(this.cm))})}),ct.prototype.eachLine=ct.prototype.iter;var ss=0;function us(t){var e=this;if(Jo(e),!(X(e,t)||Ft(e.display,t))){lt(t),A&&(ss=+new Date);var r=re(e,t,!0),n=t.dataTransfer.files;if(!(!r||e.isReadOnly()))if(n&&n.length&&window.FileReader&&window.File)for(var i=n.length,o=Array(i),l=0,a=u(function(){++l==i&&q(e,function(){r=O(e.doc,r);var f={from:r,to:r,text:e.doc.splitLines(o.filter(function(g){return g!=null}).join(e.doc.lineSeparator())),origin:\"paste\"};Me(e.doc,f),zo(e.doc,jt(O(e.doc,r),O(e.doc,Xt(f))))})()},\"markAsReadAndPasteIfAllFilesAreRead\"),s=u(function(f,g){if(e.options.allowDropFileTypes&&J(e.options.allowDropFileTypes,f.type)==-1){a();return}var m=new FileReader;m.onerror=function(){return a()},m.onload=function(){var y=m.result;if(/[\\x00-\\x08\\x0e-\\x1f]{2}/.test(y)){a();return}o[g]=y,a()},m.readAsText(f)},\"readTextFromFile\"),c=0;c<n.length;c++)s(n[c],c);else{if(e.state.draggingText&&e.doc.sel.contains(r)>-1){e.state.draggingText(t),setTimeout(function(){return e.display.input.focus()},20);return}try{var h=t.dataTransfer.getData(\"Text\");if(h){var d;if(e.state.draggingText&&!e.state.draggingText.copy&&(d=e.listSelections()),Bn(e.doc,jt(r,r)),d)for(var p=0;p<d.length;++p)Ne(e.doc,\"\",d[p].anchor,d[p].head,\"drag\");e.replaceSelection(h,\"around\",\"paste\"),e.display.input.focus()}}catch{}}}}u(us,\"onDrop\");function cs(t,e){if(A&&(!t.state.draggingText||+new Date-ss<100)){Ie(e);return}if(!(X(t,e)||Ft(t.display,e))&&(e.dataTransfer.setData(\"Text\",t.getSelection()),e.dataTransfer.effectAllowed=\"copyMove\",e.dataTransfer.setDragImage&&!rr)){var r=k(\"img\",null,null,\"position: fixed; left: 0; top: 0;\");r.src=\"data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==\",kt&&(r.width=r.height=1,t.display.wrapper.appendChild(r),r._top=r.offsetTop),e.dataTransfer.setDragImage(r,0,0),kt&&r.parentNode.removeChild(r)}}u(cs,\"onDragStart\");function hs(t,e){var r=re(t,e);if(r){var n=document.createDocumentFragment();Ur(t,r,n),t.display.dragCursor||(t.display.dragCursor=k(\"div\",null,\"CodeMirror-cursors CodeMirror-dragcursors\"),t.display.lineSpace.insertBefore(t.display.dragCursor,t.display.cursorDiv)),gt(t.display.dragCursor,n)}}u(hs,\"onDragOver\");function Jo(t){t.display.dragCursor&&(t.display.lineSpace.removeChild(t.display.dragCursor),t.display.dragCursor=null)}u(Jo,\"clearDragCursor\");function tl(t){if(document.getElementsByClassName){for(var e=document.getElementsByClassName(\"CodeMirror\"),r=[],n=0;n<e.length;n++){var i=e[n].CodeMirror;i&&r.push(i)}r.length&&r[0].operation(function(){for(var o=0;o<r.length;o++)t(r[o])})}}u(tl,\"forEachCodeMirror\");var ds=!1;function fs(){ds||(ps(),ds=!0)}u(fs,\"ensureGlobalHandlers\");function ps(){var t;M(window,\"resize\",function(){t==null&&(t=setTimeout(function(){t=null,tl(gs)},100))}),M(window,\"blur\",function(){return tl(xe)})}u(ps,\"registerGlobalHandlers\");function gs(t){var e=t.display;e.cachedCharWidth=e.cachedTextHeight=e.cachedPaddingH=null,e.scrollbarsClipped=!1,t.setSize()}u(gs,\"onResize\");for(var ue={3:\"Pause\",8:\"Backspace\",9:\"Tab\",13:\"Enter\",16:\"Shift\",17:\"Ctrl\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Esc\",32:\"Space\",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"Left\",38:\"Up\",39:\"Right\",40:\"Down\",44:\"PrintScrn\",45:\"Insert\",46:\"Delete\",59:\";\",61:\"=\",91:\"Mod\",92:\"Mod\",93:\"Mod\",106:\"*\",107:\"=\",109:\"-\",110:\".\",111:\"/\",145:\"ScrollLock\",173:\"-\",186:\";\",187:\"=\",188:\",\",189:\"-\",190:\".\",191:\"/\",192:\"`\",219:\"[\",220:\"\\\\\",221:\"]\",222:\"'\",224:\"Mod\",63232:\"Up\",63233:\"Down\",63234:\"Left\",63235:\"Right\",63272:\"Delete\",63273:\"Home\",63275:\"End\",63276:\"PageUp\",63277:\"PageDown\",63302:\"Insert\"},jn=0;jn<10;jn++)ue[jn+48]=ue[jn+96]=String(jn);for(var li=65;li<=90;li++)ue[li]=String.fromCharCode(li);for(var Xn=1;Xn<=12;Xn++)ue[Xn+111]=ue[Xn+63235]=\"F\"+Xn;var qt={};qt.basic={Left:\"goCharLeft\",Right:\"goCharRight\",Up:\"goLineUp\",Down:\"goLineDown\",End:\"goLineEnd\",Home:\"goLineStartSmart\",PageUp:\"goPageUp\",PageDown:\"goPageDown\",Delete:\"delCharAfter\",Backspace:\"delCharBefore\",\"Shift-Backspace\":\"delCharBefore\",Tab:\"defaultTab\",\"Shift-Tab\":\"indentAuto\",Enter:\"newlineAndIndent\",Insert:\"toggleOverwrite\",Esc:\"singleSelection\"},qt.pcDefault={\"Ctrl-A\":\"selectAll\",\"Ctrl-D\":\"deleteLine\",\"Ctrl-Z\":\"undo\",\"Shift-Ctrl-Z\":\"redo\",\"Ctrl-Y\":\"redo\",\"Ctrl-Home\":\"goDocStart\",\"Ctrl-End\":\"goDocEnd\",\"Ctrl-Up\":\"goLineUp\",\"Ctrl-Down\":\"goLineDown\",\"Ctrl-Left\":\"goGroupLeft\",\"Ctrl-Right\":\"goGroupRight\",\"Alt-Left\":\"goLineStart\",\"Alt-Right\":\"goLineEnd\",\"Ctrl-Backspace\":\"delGroupBefore\",\"Ctrl-Delete\":\"delGroupAfter\",\"Ctrl-S\":\"save\",\"Ctrl-F\":\"find\",\"Ctrl-G\":\"findNext\",\"Shift-Ctrl-G\":\"findPrev\",\"Shift-Ctrl-F\":\"replace\",\"Shift-Ctrl-R\":\"replaceAll\",\"Ctrl-[\":\"indentLess\",\"Ctrl-]\":\"indentMore\",\"Ctrl-U\":\"undoSelection\",\"Shift-Ctrl-U\":\"redoSelection\",\"Alt-U\":\"redoSelection\",fallthrough:\"basic\"},qt.emacsy={\"Ctrl-F\":\"goCharRight\",\"Ctrl-B\":\"goCharLeft\",\"Ctrl-P\":\"goLineUp\",\"Ctrl-N\":\"goLineDown\",\"Ctrl-A\":\"goLineStart\",\"Ctrl-E\":\"goLineEnd\",\"Ctrl-V\":\"goPageDown\",\"Shift-Ctrl-V\":\"goPageUp\",\"Ctrl-D\":\"delCharAfter\",\"Ctrl-H\":\"delCharBefore\",\"Alt-Backspace\":\"delWordBefore\",\"Ctrl-K\":\"killLine\",\"Ctrl-T\":\"transposeChars\",\"Ctrl-O\":\"openLine\"},qt.macDefault={\"Cmd-A\":\"selectAll\",\"Cmd-D\":\"deleteLine\",\"Cmd-Z\":\"undo\",\"Shift-Cmd-Z\":\"redo\",\"Cmd-Y\":\"redo\",\"Cmd-Home\":\"goDocStart\",\"Cmd-Up\":\"goDocStart\",\"Cmd-End\":\"goDocEnd\",\"Cmd-Down\":\"goDocEnd\",\"Alt-Left\":\"goGroupLeft\",\"Alt-Right\":\"goGroupRight\",\"Cmd-Left\":\"goLineLeft\",\"Cmd-Right\":\"goLineRight\",\"Alt-Backspace\":\"delGroupBefore\",\"Ctrl-Alt-Backspace\":\"delGroupAfter\",\"Alt-Delete\":\"delGroupAfter\",\"Cmd-S\":\"save\",\"Cmd-F\":\"find\",\"Cmd-G\":\"findNext\",\"Shift-Cmd-G\":\"findPrev\",\"Cmd-Alt-F\":\"replace\",\"Shift-Cmd-Alt-F\":\"replaceAll\",\"Cmd-[\":\"indentLess\",\"Cmd-]\":\"indentMore\",\"Cmd-Backspace\":\"delWrappedLineLeft\",\"Cmd-Delete\":\"delWrappedLineRight\",\"Cmd-U\":\"undoSelection\",\"Shift-Cmd-U\":\"redoSelection\",\"Ctrl-Up\":\"goDocStart\",\"Ctrl-Down\":\"goDocEnd\",fallthrough:[\"basic\",\"emacsy\"]},qt.default=xt?qt.macDefault:qt.pcDefault;function ms(t){var e=t.split(/-(?!$)/);t=e[e.length-1];for(var r,n,i,o,l=0;l<e.length-1;l++){var a=e[l];if(/^(cmd|meta|m)$/i.test(a))o=!0;else if(/^a(lt)?$/i.test(a))r=!0;else if(/^(c|ctrl|control)$/i.test(a))n=!0;else if(/^s(hift)?$/i.test(a))i=!0;else throw new Error(\"Unrecognized modifier name: \"+a)}return r&&(t=\"Alt-\"+t),n&&(t=\"Ctrl-\"+t),o&&(t=\"Cmd-\"+t),i&&(t=\"Shift-\"+t),t}u(ms,\"normalizeKeyName\");function vs(t){var e={};for(var r in t)if(t.hasOwnProperty(r)){var n=t[r];if(/^(name|fallthrough|(de|at)tach)$/.test(r))continue;if(n==\"...\"){delete t[r];continue}for(var i=gn(r.split(\" \"),ms),o=0;o<i.length;o++){var l=void 0,a=void 0;o==i.length-1?(a=i.join(\" \"),l=n):(a=i.slice(0,o+1).join(\" \"),l=\"...\");var s=e[a];if(!s)e[a]=l;else if(s!=l)throw new Error(\"Inconsistent bindings for \"+a)}delete t[r]}for(var c in e)t[c]=e[c];return t}u(vs,\"normalizeKeyMap\");function De(t,e,r,n){e=_n(e);var i=e.call?e.call(t,n):e[t];if(i===!1)return\"nothing\";if(i===\"...\")return\"multi\";if(i!=null&&r(i))return\"handled\";if(e.fallthrough){if(Object.prototype.toString.call(e.fallthrough)!=\"[object Array]\")return De(t,e.fallthrough,r,n);for(var o=0;o<e.fallthrough.length;o++){var l=De(t,e.fallthrough[o],r,n);if(l)return l}}}u(De,\"lookupKey\");function el(t){var e=typeof t==\"string\"?t:ue[t.keyCode];return e==\"Ctrl\"||e==\"Alt\"||e==\"Shift\"||e==\"Mod\"}u(el,\"isModifierKey\");function nl(t,e,r){var n=t;return e.altKey&&n!=\"Alt\"&&(t=\"Alt-\"+t),(Al?e.metaKey:e.ctrlKey)&&n!=\"Ctrl\"&&(t=\"Ctrl-\"+t),(Al?e.ctrlKey:e.metaKey)&&n!=\"Mod\"&&(t=\"Cmd-\"+t),!r&&e.shiftKey&&n!=\"Shift\"&&(t=\"Shift-\"+t),t}u(nl,\"addModifierNames\");function rl(t,e){if(kt&&t.keyCode==34&&t.char)return!1;var r=ue[t.keyCode];return r==null||t.altGraphKey?!1:(t.keyCode==3&&t.code&&(r=t.code),nl(r,t,e))}u(rl,\"keyName\");function _n(t){return typeof t==\"string\"?qt[t]:t}u(_n,\"getKeyMap\");function Ae(t,e){for(var r=t.doc.sel.ranges,n=[],i=0;i<r.length;i++){for(var o=e(r[i]);n.length&&N(o.from,W(n).to)<=0;){var l=n.pop();if(N(l.from,o.from)<0){o.from=l.from;break}}n.push(o)}ut(t,function(){for(var a=n.length-1;a>=0;a--)Ne(t.doc,\"\",n[a].from,n[a].to,\"+delete\");Ce(t)})}u(Ae,\"deleteNearSelection\");function ai(t,e,r){var n=wi(t.text,e+r,r);return n<0||n>t.text.length?null:n}u(ai,\"moveCharLogically\");function si(t,e,r){var n=ai(t,e.ch,r);return n==null?null:new v(e.line,n,r<0?\"after\":\"before\")}u(si,\"moveLogically\");function ui(t,e,r,n,i){if(t){e.doc.direction==\"rtl\"&&(i=-i);var o=At(r,e.doc.direction);if(o){var l=i<0?W(o):o[0],a=i<0==(l.level==1),s=a?\"after\":\"before\",c;if(l.level>0||e.doc.direction==\"rtl\"){var h=ve(e,r);c=i<0?r.text.length-1:0;var d=Nt(e,h,c).top;c=Pe(function(p){return Nt(e,h,p).top==d},i<0==(l.level==1)?l.from:l.to-1,c),s==\"before\"&&(c=ai(r,c,1))}else c=i<0?l.to:l.from;return new v(n,c,s)}}return new v(n,i<0?r.text.length:0,i<0?\"before\":\"after\")}u(ui,\"endOfLine\");function ys(t,e,r,n){var i=At(e,t.doc.direction);if(!i)return si(e,r,n);r.ch>=e.text.length?(r.ch=e.text.length,r.sticky=\"before\"):r.ch<=0&&(r.ch=0,r.sticky=\"after\");var o=Ee(i,r.ch,r.sticky),l=i[o];if(t.doc.direction==\"ltr\"&&l.level%2==0&&(n>0?l.to>r.ch:l.from<r.ch))return si(e,r,n);var a=u(function(b,x){return ai(e,b instanceof v?b.ch:b,x)},\"mv\"),s,c=u(function(b){return t.options.lineWrapping?(s=s||ve(t,e),ho(t,e,s,b)):{begin:0,end:e.text.length}},\"getWrappedLineExtent\"),h=c(r.sticky==\"before\"?a(r,-1):r.ch);if(t.doc.direction==\"rtl\"||l.level==1){var d=l.level==1==n<0,p=a(r,d?1:-1);if(p!=null&&(d?p<=l.to&&p<=h.end:p>=l.from&&p>=h.begin)){var f=d?\"before\":\"after\";return new v(r.line,p,f)}}var g=u(function(b,x,w){for(var C=u(function(E,$){return $?new v(r.line,a(E,1),\"before\"):new v(r.line,E,\"after\")},\"getRes\");b>=0&&b<i.length;b+=x){var T=i[b],L=x>0==(T.level!=1),D=L?w.begin:a(w.end,-1);if(T.from<=D&&D<T.to||(D=L?T.from:a(T.to,-1),w.begin<=D&&D<w.end))return C(D,L)}},\"searchInVisualLine\"),m=g(o+n,n,h);if(m)return m;var y=n>0?h.end:a(h.begin,-1);return y!=null&&!(n>0&&y==e.text.length)&&(m=g(n>0?0:i.length-1,n,c(y)),m)?m:null}u(ys,\"moveVisually\");var qn={selectAll:Vo,singleSelection:function(t){return t.setSelection(t.getCursor(\"anchor\"),t.getCursor(\"head\"),Dt)},killLine:function(t){return Ae(t,function(e){if(e.empty()){var r=S(t.doc,e.head.line).text.length;return e.head.ch==r&&e.head.line<t.lastLine()?{from:e.head,to:v(e.head.line+1,0)}:{from:e.head,to:v(e.head.line,r)}}else return{from:e.from(),to:e.to()}})},deleteLine:function(t){return Ae(t,function(e){return{from:v(e.from().line,0),to:O(t.doc,v(e.to().line+1,0))}})},delLineLeft:function(t){return Ae(t,function(e){return{from:v(e.from().line,0),to:e.from()}})},delWrappedLineLeft:function(t){return Ae(t,function(e){var r=t.charCoords(e.head,\"div\").top+5,n=t.coordsChar({left:0,top:r},\"div\");return{from:n,to:e.from()}})},delWrappedLineRight:function(t){return Ae(t,function(e){var r=t.charCoords(e.head,\"div\").top+5,n=t.coordsChar({left:t.display.lineDiv.offsetWidth+100,top:r},\"div\");return{from:e.from(),to:n}})},undo:function(t){return t.undo()},redo:function(t){return t.redo()},undoSelection:function(t){return t.undoSelection()},redoSelection:function(t){return t.redoSelection()},goDocStart:function(t){return t.extendSelection(v(t.firstLine(),0))},goDocEnd:function(t){return t.extendSelection(v(t.lastLine()))},goLineStart:function(t){return t.extendSelectionsBy(function(e){return il(t,e.head.line)},{origin:\"+move\",bias:1})},goLineStartSmart:function(t){return t.extendSelectionsBy(function(e){return ol(t,e.head)},{origin:\"+move\",bias:1})},goLineEnd:function(t){return t.extendSelectionsBy(function(e){return bs(t,e.head.line)},{origin:\"+move\",bias:-1})},goLineRight:function(t){return t.extendSelectionsBy(function(e){var r=t.cursorCoords(e.head,\"div\").top+5;return t.coordsChar({left:t.display.lineDiv.offsetWidth+100,top:r},\"div\")},pn)},goLineLeft:function(t){return t.extendSelectionsBy(function(e){var r=t.cursorCoords(e.head,\"div\").top+5;return t.coordsChar({left:0,top:r},\"div\")},pn)},goLineLeftSmart:function(t){return t.extendSelectionsBy(function(e){var r=t.cursorCoords(e.head,\"div\").top+5,n=t.coordsChar({left:0,top:r},\"div\");return n.ch<t.getLine(n.line).search(/\\S/)?ol(t,e.head):n},pn)},goLineUp:function(t){return t.moveV(-1,\"line\")},goLineDown:function(t){return t.moveV(1,\"line\")},goPageUp:function(t){return t.moveV(-1,\"page\")},goPageDown:function(t){return t.moveV(1,\"page\")},goCharLeft:function(t){return t.moveH(-1,\"char\")},goCharRight:function(t){return t.moveH(1,\"char\")},goColumnLeft:function(t){return t.moveH(-1,\"column\")},goColumnRight:function(t){return t.moveH(1,\"column\")},goWordLeft:function(t){return t.moveH(-1,\"word\")},goGroupRight:function(t){return t.moveH(1,\"group\")},goGroupLeft:function(t){return t.moveH(-1,\"group\")},goWordRight:function(t){return t.moveH(1,\"word\")},delCharBefore:function(t){return t.deleteH(-1,\"codepoint\")},delCharAfter:function(t){return t.deleteH(1,\"char\")},delWordBefore:function(t){return t.deleteH(-1,\"word\")},delWordAfter:function(t){return t.deleteH(1,\"word\")},delGroupBefore:function(t){return t.deleteH(-1,\"group\")},delGroupAfter:function(t){return t.deleteH(1,\"group\")},indentAuto:function(t){return t.indentSelection(\"smart\")},indentMore:function(t){return t.indentSelection(\"add\")},indentLess:function(t){return t.indentSelection(\"subtract\")},insertTab:function(t){return t.replaceSelection(\"\t\")},insertSoftTab:function(t){for(var e=[],r=t.listSelections(),n=t.options.tabSize,i=0;i<r.length;i++){var o=r[i].from(),l=yt(t.getLine(o.line),o.ch,n);e.push(cr(n-l%n))}t.replaceSelections(e)},defaultTab:function(t){t.somethingSelected()?t.indentSelection(\"add\"):t.execCommand(\"insertTab\")},transposeChars:function(t){return ut(t,function(){for(var e=t.listSelections(),r=[],n=0;n<e.length;n++)if(e[n].empty()){var i=e[n].head,o=S(t.doc,i.line).text;if(o){if(i.ch==o.length&&(i=new v(i.line,i.ch-1)),i.ch>0)i=new v(i.line,i.ch+1),t.replaceRange(o.charAt(i.ch-1)+o.charAt(i.ch-2),v(i.line,i.ch-2),i,\"+transpose\");else if(i.line>t.doc.first){var l=S(t.doc,i.line-1).text;l&&(i=new v(i.line,1),t.replaceRange(o.charAt(0)+t.doc.lineSeparator()+l.charAt(l.length-1),v(i.line-1,l.length-1),i,\"+transpose\"))}}r.push(new H(i,i))}t.setSelections(r)})},newlineAndIndent:function(t){return ut(t,function(){for(var e=t.listSelections(),r=e.length-1;r>=0;r--)t.replaceRange(t.doc.lineSeparator(),e[r].anchor,e[r].head,\"+input\");e=t.listSelections();for(var n=0;n<e.length;n++)t.indentLine(e[n].from().line,null,!0);Ce(t)})},openLine:function(t){return t.replaceSelection(`\n`,\"start\")},toggleOverwrite:function(t){return t.toggleOverwrite()}};function il(t,e){var r=S(t.doc,e),n=Ct(r);return n!=r&&(e=F(n)),ui(!0,t,n,e,1)}u(il,\"lineStart\");function bs(t,e){var r=S(t.doc,e),n=ea(r);return n!=r&&(e=F(n)),ui(!0,t,r,e,-1)}u(bs,\"lineEnd\");function ol(t,e){var r=il(t,e.line),n=S(t.doc,r.line),i=At(n,t.doc.direction);if(!i||i[0].level==0){var o=Math.max(r.ch,n.text.search(/\\S/)),l=e.line==r.line&&e.ch<=o&&e.ch;return v(r.line,l?0:o,r.sticky)}return r}u(ol,\"lineStartSmart\");function Yn(t,e,r){if(typeof e==\"string\"&&(e=qn[e],!e))return!1;t.display.input.ensurePolled();var n=t.display.shift,i=!1;try{t.isReadOnly()&&(t.state.suppressEdits=!0),r&&(t.display.shift=!1),i=e(t)!=ar}finally{t.display.shift=n,t.state.suppressEdits=!1}return i}u(Yn,\"doHandleBinding\");function ws(t,e,r){for(var n=0;n<t.state.keyMaps.length;n++){var i=De(e,t.state.keyMaps[n],r,t);if(i)return i}return t.options.extraKeys&&De(e,t.options.extraKeys,r,t)||De(e,t.options.keyMap,r,t)}u(ws,\"lookupKeyForEditor\");var ou=new Qt;function ln(t,e,r,n){var i=t.state.keySeq;if(i){if(el(e))return\"handled\";if(/\\'$/.test(e)?t.state.keySeq=null:ou.set(50,function(){t.state.keySeq==i&&(t.state.keySeq=null,t.display.input.reset())}),ll(t,i+\" \"+e,r,n))return!0}return ll(t,e,r,n)}u(ln,\"dispatchKey\");function ll(t,e,r,n){var i=ws(t,e,n);return i==\"multi\"&&(t.state.keySeq=e),i==\"handled\"&&_(t,\"keyHandled\",t,e,r),(i==\"handled\"||i==\"multi\")&&(lt(r),Gr(t)),!!i}u(ll,\"dispatchKeyInner\");function al(t,e){var r=rl(e,!0);return r?e.shiftKey&&!t.state.keySeq?ln(t,\"Shift-\"+r,e,function(n){return Yn(t,n,!0)})||ln(t,r,e,function(n){if(typeof n==\"string\"?/^go[A-Z]/.test(n):n.motion)return Yn(t,n)}):ln(t,r,e,function(n){return Yn(t,n)}):!1}u(al,\"handleKeyBinding\");function xs(t,e,r){return ln(t,\"'\"+r+\"'\",e,function(n){return Yn(t,n,!0)})}u(xs,\"handleCharBinding\");var sl=null;function ul(t){var e=this;if(!(t.target&&t.target!=e.display.input.getField())&&(e.curOp.focus=vt(),!X(e,t))){A&&I<11&&t.keyCode==27&&(t.returnValue=!1);var r=t.keyCode;e.display.shift=r==16||t.shiftKey;var n=al(e,t);kt&&(sl=n?r:null,!n&&r==88&&!tu&&(xt?t.metaKey:t.ctrlKey)&&e.replaceSelection(\"\",null,\"cut\")),It&&!xt&&!n&&r==46&&t.shiftKey&&!t.ctrlKey&&document.execCommand&&document.execCommand(\"cut\"),r==18&&!/\\bCodeMirror-crosshair\\b/.test(e.display.lineDiv.className)&&Cs(e)}}u(ul,\"onKeyDown\");function Cs(t){var e=t.display.lineDiv;Zt(e,\"CodeMirror-crosshair\");function r(n){(n.keyCode==18||!n.altKey)&&(fe(e,\"CodeMirror-crosshair\"),mt(document,\"keyup\",r),mt(document,\"mouseover\",r))}u(r,\"up\"),M(document,\"keyup\",r),M(document,\"mouseover\",r)}u(Cs,\"showCrossHair\");function cl(t){t.keyCode==16&&(this.doc.sel.shift=!1),X(this,t)}u(cl,\"onKeyUp\");function hl(t){var e=this;if(!(t.target&&t.target!=e.display.input.getField())&&!(Ft(e.display,t)||X(e,t)||t.ctrlKey&&!t.altKey||xt&&t.metaKey)){var r=t.keyCode,n=t.charCode;if(kt&&r==sl){sl=null,lt(t);return}if(!(kt&&(!t.which||t.which<10)&&al(e,t))){var i=String.fromCharCode(n??r);i!=\"\\b\"&&(xs(e,t,i)||e.display.input.onKeyPress(t))}}}u(hl,\"onKeyPress\");var lu=400,dl=u(function(t,e,r){this.time=t,this.pos=e,this.button=r},\"PastClick\");dl.prototype.compare=function(t,e,r){return this.time+lu>t&&N(e,this.pos)==0&&r==this.button};var Zn,$n;function Ss(t,e){var r=+new Date;return $n&&$n.compare(r,t,e)?(Zn=$n=null,\"triple\"):Zn&&Zn.compare(r,t,e)?($n=new dl(r,t,e),Zn=null,\"double\"):(Zn=new dl(r,t,e),$n=null,\"single\")}u(Ss,\"clickRepeat\");function fl(t){var e=this,r=e.display;if(!(X(e,t)||r.activeTouch&&r.input.supportsTouch())){if(r.input.ensurePolled(),r.shift=t.shiftKey,Ft(r,t)){ot||(r.scroller.draggable=!1,setTimeout(function(){return r.scroller.draggable=!0},100));return}if(!ci(e,t)){var n=re(e,t),i=Si(t),o=n?Ss(n,i):\"single\";window.focus(),i==1&&e.state.selectingText&&e.state.selectingText(t),!(n&&Ls(e,i,n,o,t))&&(i==1?n?Ts(e,n,o,t):gr(t)==r.scroller&&lt(t):i==2?(n&&zn(e.doc,n),setTimeout(function(){return r.input.focus()},20)):i==3&&(gi?e.display.input.onContextMenu(t):Kr(e)))}}}u(fl,\"onMouseDown\");function Ls(t,e,r,n,i){var o=\"Click\";return n==\"double\"?o=\"Double\"+o:n==\"triple\"&&(o=\"Triple\"+o),o=(e==1?\"Left\":e==2?\"Middle\":\"Right\")+o,ln(t,nl(o,i),i,function(l){if(typeof l==\"string\"&&(l=qn[l]),!l)return!1;var a=!1;try{t.isReadOnly()&&(t.state.suppressEdits=!0),a=l(t,r)!=ar}finally{t.state.suppressEdits=!1}return a})}u(Ls,\"handleMappedButton\");function ks(t,e,r){var n=t.getOption(\"configureMouse\"),i=n?n(t,e,r):{};if(i.unit==null){var o=_s?r.shiftKey&&r.metaKey:r.altKey;i.unit=o?\"rectangle\":e==\"single\"?\"char\":e==\"double\"?\"word\":\"line\"}return(i.extend==null||t.doc.extend)&&(i.extend=t.doc.extend||r.shiftKey),i.addNew==null&&(i.addNew=xt?r.metaKey:r.ctrlKey),i.moveOnDrag==null&&(i.moveOnDrag=!(xt?r.altKey:r.ctrlKey)),i}u(ks,\"configureMouse\");function Ts(t,e,r,n){A?setTimeout(lr(mo,t),0):t.curOp.focus=vt();var i=ks(t,r,n),o=t.doc.sel,l;t.options.dragDrop&&Qs&&!t.isReadOnly()&&r==\"single\"&&(l=o.contains(e))>-1&&(N((l=o.ranges[l]).from(),e)<0||e.xRel>0)&&(N(l.to(),e)>0||e.xRel<0)?Ms(t,n,e,i):Ns(t,n,e,i)}u(Ts,\"leftButtonDown\");function Ms(t,e,r,n){var i=t.display,o=!1,l=q(t,function(c){ot&&(i.scroller.draggable=!1),t.state.draggingText=!1,t.state.delayingBlurEvent&&(t.hasFocus()?t.state.delayingBlurEvent=!1:Kr(t)),mt(i.wrapper.ownerDocument,\"mouseup\",l),mt(i.wrapper.ownerDocument,\"mousemove\",a),mt(i.scroller,\"dragstart\",s),mt(i.scroller,\"drop\",l),o||(lt(c),n.addNew||zn(t.doc,r,null,null,n.extend),ot&&!rr||A&&I==9?setTimeout(function(){i.wrapper.ownerDocument.body.focus({preventScroll:!0}),i.input.focus()},20):i.input.focus())}),a=u(function(c){o=o||Math.abs(e.clientX-c.clientX)+Math.abs(e.clientY-c.clientY)>=10},\"mouseMove\"),s=u(function(){return o=!0},\"dragStart\");ot&&(i.scroller.draggable=!0),t.state.draggingText=l,l.copy=!n.moveOnDrag,M(i.wrapper.ownerDocument,\"mouseup\",l),M(i.wrapper.ownerDocument,\"mousemove\",a),M(i.scroller,\"dragstart\",s),M(i.scroller,\"drop\",l),t.state.delayingBlurEvent=!0,setTimeout(function(){return i.input.focus()},20),i.scroller.dragDrop&&i.scroller.dragDrop()}u(Ms,\"leftButtonStartDrag\");function pl(t,e,r){if(r==\"char\")return new H(e,e);if(r==\"word\")return t.findWordAt(e);if(r==\"line\")return new H(v(e.line,0),O(t.doc,v(e.line+1,0)));var n=r(t,e);return new H(n.from,n.to)}u(pl,\"rangeForUnit\");function Ns(t,e,r,n){A&&Kr(t);var i=t.display,o=t.doc;lt(e);var l,a,s=o.sel,c=s.ranges;if(n.addNew&&!n.extend?(a=o.sel.contains(r),a>-1?l=c[a]:l=new H(r,r)):(l=o.sel.primary(),a=o.sel.primIndex),n.unit==\"rectangle\")n.addNew||(l=new H(r,r)),r=re(t,e,!0,!0),a=-1;else{var h=pl(t,r,n.unit);n.extend?l=ii(l,h.anchor,h.head,n.extend):l=h}n.addNew?a==-1?(a=c.length,tt(o,Lt(t,c.concat([l]),a),{scroll:!1,origin:\"*mouse\"})):c.length>1&&c[a].empty()&&n.unit==\"char\"&&!n.extend?(tt(o,Lt(t,c.slice(0,a).concat(c.slice(a+1)),0),{scroll:!1,origin:\"*mouse\"}),s=o.sel):oi(o,a,l,mi):(a=0,tt(o,new wt([l],0),mi),s=o.sel);var d=r;function p(w){if(N(d,w)!=0)if(d=w,n.unit==\"rectangle\"){for(var C=[],T=t.options.tabSize,L=yt(S(o,r.line).text,r.ch,T),D=yt(S(o,w.line).text,w.ch,T),E=Math.min(L,D),$=Math.max(L,D),z=Math.min(r.line,w.line),ht=Math.min(t.lastLine(),Math.max(r.line,w.line));z<=ht;z++){var dt=S(o,z).text,V=sr(dt,E,T);E==$?C.push(new H(v(z,V),v(z,V))):dt.length>V&&C.push(new H(v(z,V),v(z,sr(dt,$,T))))}C.length||C.push(new H(r,r)),tt(o,Lt(t,s.ranges.slice(0,a).concat(C),a),{origin:\"*mouse\",scroll:!1}),t.scrollIntoView(w)}else{var ft=l,et=pl(t,w,n.unit),Z=ft.anchor,j;N(et.anchor,Z)>0?(j=et.head,Z=wn(ft.from(),et.anchor)):(j=et.anchor,Z=bn(ft.to(),et.head));var B=s.ranges.slice(0);B[a]=Os(t,new H(O(o,Z),j)),tt(o,Lt(t,B,a),mi)}}u(p,\"extendTo\");var f=i.wrapper.getBoundingClientRect(),g=0;function m(w){var C=++g,T=re(t,w,!0,n.unit==\"rectangle\");if(T)if(N(T,d)!=0){t.curOp.focus=vt(),p(T);var L=Fn(i,o);(T.line>=L.to||T.line<L.from)&&setTimeout(q(t,function(){g==C&&m(w)}),150)}else{var D=w.clientY<f.top?-20:w.clientY>f.bottom?20:0;D&&setTimeout(q(t,function(){g==C&&(i.scroller.scrollTop+=D,m(w))}),50)}}u(m,\"extend\");function y(w){t.state.selectingText=!1,g=1/0,w&&(lt(w),i.input.focus()),mt(i.wrapper.ownerDocument,\"mousemove\",b),mt(i.wrapper.ownerDocument,\"mouseup\",x),o.history.lastSelOrigin=null}u(y,\"done\");var b=q(t,function(w){w.buttons===0||!Si(w)?y(w):m(w)}),x=q(t,y);t.state.selectingText=x,M(i.wrapper.ownerDocument,\"mousemove\",b),M(i.wrapper.ownerDocument,\"mouseup\",x)}u(Ns,\"leftButtonSelect\");function Os(t,e){var r=e.anchor,n=e.head,i=S(t.doc,r.line);if(N(r,n)==0&&r.sticky==n.sticky)return e;var o=At(i);if(!o)return e;var l=Ee(o,r.ch,r.sticky),a=o[l];if(a.from!=r.ch&&a.to!=r.ch)return e;var s=l+(a.from==r.ch==(a.level!=1)?0:1);if(s==0||s==o.length)return e;var c;if(n.line!=r.line)c=(n.line-r.line)*(t.doc.direction==\"ltr\"?1:-1)>0;else{var h=Ee(o,n.ch,n.sticky),d=h-l||(n.ch-r.ch)*(a.level==1?-1:1);h==s-1||h==s?c=d<0:c=d>0}var p=o[s+(c?-1:0)],f=c==(p.level==1),g=f?p.from:p.to,m=f?\"after\":\"before\";return r.ch==g&&r.sticky==m?e:new H(new v(r.line,g,m),n)}u(Os,\"bidiSimplify\");function gl(t,e,r,n){var i,o;if(e.touches)i=e.touches[0].clientX,o=e.touches[0].clientY;else try{i=e.clientX,o=e.clientY}catch{return!1}if(i>=Math.floor(t.display.gutters.getBoundingClientRect().right))return!1;n&&lt(e);var l=t.display,a=l.lineDiv.getBoundingClientRect();if(o>a.bottom||!bt(t,r))return pr(e);o-=a.top-l.viewOffset;for(var s=0;s<t.display.gutterSpecs.length;++s){var c=l.gutters.childNodes[s];if(c&&c.getBoundingClientRect().right>=i){var h=ee(t.doc,o),d=t.display.gutterSpecs[s];return U(t,r,t,h,d.className,e),pr(e)}}}u(gl,\"gutterEvent\");function ci(t,e){return gl(t,e,\"gutterClick\",!0)}u(ci,\"clickInGutter\");function ml(t,e){Ft(t.display,e)||Ds(t,e)||X(t,e,\"contextmenu\")||gi||t.display.input.onContextMenu(e)}u(ml,\"onContextMenu\");function Ds(t,e){return bt(t,\"gutterContextMenu\")?gl(t,e,\"gutterContextMenu\",!1):!1}u(Ds,\"contextMenuInGutter\");function vl(t){t.display.wrapper.className=t.display.wrapper.className.replace(/\\s*cm-s-\\S+/g,\"\")+t.options.theme.replace(/(^|\\s)\\s*/g,\" cm-s-\"),_e(t)}u(vl,\"themeChanged\");var an={toString:function(){return\"CodeMirror.Init\"}},As={},hi={};function Ws(t){var e=t.optionHandlers;function r(n,i,o,l){t.defaults[n]=i,o&&(e[n]=l?function(a,s,c){c!=an&&o(a,s,c)}:o)}u(r,\"option\"),t.defineOption=r,t.Init=an,r(\"value\",\"\",function(n,i){return n.setValue(i)},!0),r(\"mode\",null,function(n,i){n.doc.modeOption=i,ei(n)},!0),r(\"indentUnit\",2,ei,!0),r(\"indentWithTabs\",!1),r(\"smartIndent\",!0),r(\"tabSize\",4,function(n){tn(n),_e(n),at(n)},!0),r(\"lineSeparator\",null,function(n,i){if(n.doc.lineSep=i,!!i){var o=[],l=n.doc.first;n.doc.iter(function(s){for(var c=0;;){var h=s.text.indexOf(i,c);if(h==-1)break;c=h+i.length,o.push(v(l,h))}l++});for(var a=o.length-1;a>=0;a--)Ne(n.doc,i,o[a],v(o[a].line,o[a].ch+i.length))}}),r(\"specialChars\",/[\\u0000-\\u001f\\u007f-\\u009f\\u00ad\\u061c\\u200b\\u200e\\u200f\\u2028\\u2029\\ufeff\\ufff9-\\ufffc]/g,function(n,i,o){n.state.specialChars=new RegExp(i.source+(i.test(\"\t\")?\"\":\"|\t\"),\"g\"),o!=an&&n.refresh()}),r(\"specialCharPlaceholder\",oa,function(n){return n.refresh()},!0),r(\"electricChars\",!0),r(\"inputStyle\",dn?\"contenteditable\":\"textarea\",function(){throw new Error(\"inputStyle can not (yet) be changed in a running editor\")},!0),r(\"spellcheck\",!1,function(n,i){return n.getInputField().spellcheck=i},!0),r(\"autocorrect\",!1,function(n,i){return n.getInputField().autocorrect=i},!0),r(\"autocapitalize\",!1,function(n,i){return n.getInputField().autocapitalize=i},!0),r(\"rtlMoveVisually\",!qs),r(\"wholeLineUpdateBefore\",!0),r(\"theme\",\"default\",function(n){vl(n),Je(n)},!0),r(\"keyMap\",\"default\",function(n,i,o){var l=_n(i),a=o!=an&&_n(o);a&&a.detach&&a.detach(n,l),l.attach&&l.attach(n,a||null)}),r(\"extraKeys\",null),r(\"configureMouse\",null),r(\"lineWrapping\",!1,Fs,!0),r(\"gutters\",[],function(n,i){n.display.gutterSpecs=Qr(i,n.options.lineNumbers),Je(n)},!0),r(\"fixedGutter\",!0,function(n,i){n.display.gutters.style.left=i?zr(n.display)+\"px\":\"0\",n.refresh()},!0),r(\"coverGutterNextToScrollbar\",!1,function(n){return Le(n)},!0),r(\"scrollbarStyle\",\"native\",function(n){xo(n),Le(n),n.display.scrollbars.setScrollTop(n.doc.scrollTop),n.display.scrollbars.setScrollLeft(n.doc.scrollLeft)},!0),r(\"lineNumbers\",!1,function(n,i){n.display.gutterSpecs=Qr(n.options.gutters,i),Je(n)},!0),r(\"firstLineNumber\",1,Je,!0),r(\"lineNumberFormatter\",function(n){return n},Je,!0),r(\"showCursorWhenSelecting\",!1,qe,!0),r(\"resetSelectionOnContextMenu\",!0),r(\"lineWiseCopyCut\",!0),r(\"pasteLinesPerSelection\",!0),r(\"selectionsMayTouch\",!1),r(\"readOnly\",!1,function(n,i){i==\"nocursor\"&&(xe(n),n.display.input.blur()),n.display.input.readOnlyChanged(i)}),r(\"screenReaderLabel\",null,function(n,i){i=i===\"\"?null:i,n.display.input.screenReaderLabelChanged(i)}),r(\"disableInput\",!1,function(n,i){i||n.display.input.reset()},!0),r(\"dragDrop\",!0,Hs),r(\"allowDropFileTypes\",null),r(\"cursorBlinkRate\",530),r(\"cursorScrollMargin\",0),r(\"cursorHeight\",1,qe,!0),r(\"singleCursorHeightPerLine\",!0,qe,!0),r(\"workTime\",100),r(\"workDelay\",100),r(\"flattenSpans\",!0,tn,!0),r(\"addModeClass\",!1,tn,!0),r(\"pollInterval\",100),r(\"undoDepth\",200,function(n,i){return n.doc.history.undoDepth=i}),r(\"historyEventDelay\",1250),r(\"viewportMargin\",10,function(n){return n.refresh()},!0),r(\"maxHighlightLength\",1e4,tn,!0),r(\"moveInputWithCursor\",!0,function(n,i){i||n.display.input.resetPosition()}),r(\"tabindex\",null,function(n,i){return n.display.input.getField().tabIndex=i||\"\"}),r(\"autofocus\",null),r(\"direction\",\"ltr\",function(n,i){return n.doc.setDirection(i)},!0),r(\"phrases\",null)}u(Ws,\"defineOptions\");function Hs(t,e,r){var n=r&&r!=an;if(!e!=!n){var i=t.display.dragFunctions,o=e?M:mt;o(t.display.scroller,\"dragstart\",i.start),o(t.display.scroller,\"dragenter\",i.enter),o(t.display.scroller,\"dragover\",i.over),o(t.display.scroller,\"dragleave\",i.leave),o(t.display.scroller,\"drop\",i.drop)}}u(Hs,\"dragDropChanged\");function Fs(t){t.options.lineWrapping?(Zt(t.display.wrapper,\"CodeMirror-wrap\"),t.display.sizer.style.minWidth=\"\",t.display.sizerWidth=null):(fe(t.display.wrapper,\"CodeMirror-wrap\"),Or(t)),Br(t),at(t),_e(t),setTimeout(function(){return Le(t)},100)}u(Fs,\"wrappingChanged\");function R(t,e){var r=this;if(!(this instanceof R))return new R(t,e);this.options=e=e?$t(e):{},$t(As,e,!1);var n=e.value;typeof n==\"string\"?n=new ct(n,e.mode,null,e.lineSeparator,e.direction):e.mode&&(n.modeOption=e.mode),this.doc=n;var i=new R.inputStyles[e.inputStyle](this),o=this.display=new Xa(t,n,i,e);o.wrapper.CodeMirror=this,vl(this),e.lineWrapping&&(this.display.wrapper.className+=\" CodeMirror-wrap\"),xo(this),this.state={keyMaps:[],overlays:[],modeGen:0,overwrite:!1,delayingBlurEvent:!1,focused:!1,suppressEdits:!1,pasteIncoming:-1,cutIncoming:-1,selectingText:!1,draggingText:!1,highlight:new Qt,keySeq:null,specialChars:null},e.autofocus&&!dn&&o.input.focus(),A&&I<11&&setTimeout(function(){return r.display.input.reset(!0)},20),Ps(this),fs(),le(this),this.curOp.forceUpdate=!0,Ao(this,n),e.autofocus&&!dn||this.hasFocus()?setTimeout(function(){r.hasFocus()&&!r.state.focused&&Vr(r)},20):xe(this);for(var l in hi)hi.hasOwnProperty(l)&&hi[l](this,e[l],an);Lo(this),e.finishInit&&e.finishInit(this);for(var a=0;a<yl.length;++a)yl[a](this);ae(this),ot&&e.lineWrapping&&getComputedStyle(o.lineDiv).textRendering==\"optimizelegibility\"&&(o.lineDiv.style.textRendering=\"auto\")}u(R,\"CodeMirror\"),R.defaults=As,R.optionHandlers=hi;function Ps(t){var e=t.display;M(e.scroller,\"mousedown\",q(t,fl)),A&&I<11?M(e.scroller,\"dblclick\",q(t,function(s){if(!X(t,s)){var c=re(t,s);if(!(!c||ci(t,s)||Ft(t.display,s))){lt(s);var h=t.findWordAt(c);zn(t.doc,h.anchor,h.head)}}})):M(e.scroller,\"dblclick\",function(s){return X(t,s)||lt(s)}),M(e.scroller,\"contextmenu\",function(s){return ml(t,s)}),M(e.input.getField(),\"contextmenu\",function(s){e.scroller.contains(s.target)||ml(t,s)});var r,n={end:0};function i(){e.activeTouch&&(r=setTimeout(function(){return e.activeTouch=null},1e3),n=e.activeTouch,n.end=+new Date)}u(i,\"finishTouch\");function o(s){if(s.touches.length!=1)return!1;var c=s.touches[0];return c.radiusX<=1&&c.radiusY<=1}u(o,\"isMouseLikeTouchEvent\");function l(s,c){if(c.left==null)return!0;var h=c.left-s.left,d=c.top-s.top;return h*h+d*d>20*20}u(l,\"farAway\"),M(e.scroller,\"touchstart\",function(s){if(!X(t,s)&&!o(s)&&!ci(t,s)){e.input.ensurePolled(),clearTimeout(r);var c=+new Date;e.activeTouch={start:c,moved:!1,prev:c-n.end<=300?n:null},s.touches.length==1&&(e.activeTouch.left=s.touches[0].pageX,e.activeTouch.top=s.touches[0].pageY)}}),M(e.scroller,\"touchmove\",function(){e.activeTouch&&(e.activeTouch.moved=!0)}),M(e.scroller,\"touchend\",function(s){var c=e.activeTouch;if(c&&!Ft(e,s)&&c.left!=null&&!c.moved&&new Date-c.start<300){var h=t.coordsChar(e.activeTouch,\"page\"),d;!c.prev||l(c,c.prev)?d=new H(h,h):!c.prev.prev||l(c,c.prev.prev)?d=t.findWordAt(h):d=new H(v(h.line,0),O(t.doc,v(h.line+1,0))),t.setSelection(d.anchor,d.head),t.focus(),lt(s)}i()}),M(e.scroller,\"touchcancel\",i),M(e.scroller,\"scroll\",function(){e.scroller.clientHeight&&(Ze(t,e.scroller.scrollTop),oe(t,e.scroller.scrollLeft,!0),U(t,\"scroll\",t))}),M(e.scroller,\"mousewheel\",function(s){return Mo(t,s)}),M(e.scroller,\"DOMMouseScroll\",function(s){return Mo(t,s)}),M(e.wrapper,\"scroll\",function(){return e.wrapper.scrollTop=e.wrapper.scrollLeft=0}),e.dragFunctions={enter:function(s){X(t,s)||Ie(s)},over:function(s){X(t,s)||(hs(t,s),Ie(s))},start:function(s){return cs(t,s)},drop:q(t,us),leave:function(s){X(t,s)||Jo(t)}};var a=e.input.getField();M(a,\"keyup\",function(s){return cl.call(t,s)}),M(a,\"keydown\",q(t,ul)),M(a,\"keypress\",q(t,hl)),M(a,\"focus\",function(s){return Vr(t,s)}),M(a,\"blur\",function(s){return xe(t,s)})}u(Ps,\"registerEventHandlers\");var yl=[];R.defineInitHook=function(t){return yl.push(t)};function sn(t,e,r,n){var i=t.doc,o;r==null&&(r=\"add\"),r==\"smart\"&&(i.mode.indent?o=Ue(t,e).state:r=\"prev\");var l=t.options.tabSize,a=S(i,e),s=yt(a.text,null,l);a.stateAfter&&(a.stateAfter=null);var c=a.text.match(/^\\s*/)[0],h;if(!n&&!/\\S/.test(a.text))h=0,r=\"not\";else if(r==\"smart\"&&(h=i.mode.indent(o,a.text.slice(c.length),a.text),h==ar||h>150)){if(!n)return;r=\"prev\"}r==\"prev\"?e>i.first?h=yt(S(i,e-1).text,null,l):h=0:r==\"add\"?h=s+t.options.indentUnit:r==\"subtract\"?h=s-t.options.indentUnit:typeof r==\"number\"&&(h=s+r),h=Math.max(0,h);var d=\"\",p=0;if(t.options.indentWithTabs)for(var f=Math.floor(h/l);f;--f)p+=l,d+=\"\t\";if(p<h&&(d+=cr(h-p)),d!=c)return Ne(i,d,v(e,0),v(e,c.length),\"+input\"),a.stateAfter=null,!0;for(var g=0;g<i.sel.ranges.length;g++){var m=i.sel.ranges[g];if(m.head.line==e&&m.head.ch<c.length){var y=v(e,c.length);oi(i,g,new H(y,y));break}}}u(sn,\"indentLine\");var Ot=null;function Qn(t){Ot=t}u(Qn,\"setLastCopied\");function di(t,e,r,n,i){var o=t.doc;t.display.shift=!1,n||(n=o.sel);var l=+new Date-200,a=i==\"paste\"||t.state.pasteIncoming>l,s=Ti(e),c=null;if(a&&n.ranges.length>1)if(Ot&&Ot.text.join(`\n`)==e){if(n.ranges.length%Ot.text.length==0){c=[];for(var h=0;h<Ot.text.length;h++)c.push(o.splitLines(Ot.text[h]))}}else s.length==n.ranges.length&&t.options.pasteLinesPerSelection&&(c=gn(s,function(b){return[b]}));for(var d=t.curOp.updateInput,p=n.ranges.length-1;p>=0;p--){var f=n.ranges[p],g=f.from(),m=f.to();f.empty()&&(r&&r>0?g=v(g.line,g.ch-r):t.state.overwrite&&!a?m=v(m.line,Math.min(S(o,m.line).text.length,m.ch+W(s).length)):a&&Ot&&Ot.lineWise&&Ot.text.join(`\n`)==s.join(`\n`)&&(g=m=v(g.line,0)));var y={from:g,to:m,text:c?c[p%c.length]:s,origin:i||(a?\"paste\":t.state.cutIncoming>l?\"cut\":\"+input\")};Me(t.doc,y),_(t,\"inputRead\",t,y)}e&&!a&&wl(t,e),Ce(t),t.curOp.updateInput<2&&(t.curOp.updateInput=d),t.curOp.typing=!0,t.state.pasteIncoming=t.state.cutIncoming=-1}u(di,\"applyTextInput\");function bl(t,e){var r=t.clipboardData&&t.clipboardData.getData(\"Text\");if(r)return t.preventDefault(),!e.isReadOnly()&&!e.options.disableInput&&ut(e,function(){return di(e,r,0,null,\"paste\")}),!0}u(bl,\"handlePaste\");function wl(t,e){if(!(!t.options.electricChars||!t.options.smartIndent))for(var r=t.doc.sel,n=r.ranges.length-1;n>=0;n--){var i=r.ranges[n];if(!(i.head.ch>100||n&&r.ranges[n-1].head.line==i.head.line)){var o=t.getModeAt(i.head),l=!1;if(o.electricChars){for(var a=0;a<o.electricChars.length;a++)if(e.indexOf(o.electricChars.charAt(a))>-1){l=sn(t,i.head.line,\"smart\");break}}else o.electricInput&&o.electricInput.test(S(t.doc,i.head.line).text.slice(0,i.head.ch))&&(l=sn(t,i.head.line,\"smart\"));l&&_(t,\"electricInput\",t,i.head.line)}}}u(wl,\"triggerElectric\");function xl(t){for(var e=[],r=[],n=0;n<t.doc.sel.ranges.length;n++){var i=t.doc.sel.ranges[n].head.line,o={anchor:v(i,0),head:v(i+1,0)};r.push(o),e.push(t.getRange(o.anchor,o.head))}return{text:e,ranges:r}}u(xl,\"copyableRanges\");function Cl(t,e,r,n){t.setAttribute(\"autocorrect\",r?\"\":\"off\"),t.setAttribute(\"autocapitalize\",n?\"\":\"off\"),t.setAttribute(\"spellcheck\",!!e)}u(Cl,\"disableBrowserMagic\");function Sl(){var t=k(\"textarea\",null,null,\"position: absolute; bottom: -1em; padding: 0; width: 1px; height: 1em; min-height: 1em; outline: none\"),e=k(\"div\",[t],null,\"overflow: hidden; position: relative; width: 3px; height: 0px;\");return ot?t.style.width=\"1000px\":t.setAttribute(\"wrap\",\"off\"),hn&&(t.style.border=\"1px solid black\"),Cl(t),e}u(Sl,\"hiddenTextarea\");function Es(t){var e=t.optionHandlers,r=t.helpers={};t.prototype={constructor:t,focus:function(){window.focus(),this.display.input.focus()},setOption:function(n,i){var o=this.options,l=o[n];o[n]==i&&n!=\"mode\"||(o[n]=i,e.hasOwnProperty(n)&&q(this,e[n])(this,i,l),U(this,\"optionChange\",this,n))},getOption:function(n){return this.options[n]},getDoc:function(){return this.doc},addKeyMap:function(n,i){this.state.keyMaps[i?\"push\":\"unshift\"](_n(n))},removeKeyMap:function(n){for(var i=this.state.keyMaps,o=0;o<i.length;++o)if(i[o]==n||i[o].name==n)return i.splice(o,1),!0},addOverlay:nt(function(n,i){var o=n.token?n:t.getMode(this.options,n);if(o.startState)throw new Error(\"Overlays may not be stateful.\");Hl(this.state.overlays,{mode:o,modeSpec:n,opaque:i&&i.opaque,priority:i&&i.priority||0},function(l){return l.priority}),this.state.modeGen++,at(this)}),removeOverlay:nt(function(n){for(var i=this.state.overlays,o=0;o<i.length;++o){var l=i[o].modeSpec;if(l==n||typeof n==\"string\"&&l.name==n){i.splice(o,1),this.state.modeGen++,at(this);return}}}),indentLine:nt(function(n,i,o){typeof i!=\"string\"&&typeof i!=\"number\"&&(i==null?i=this.options.smartIndent?\"smart\":\"prev\":i=i?\"add\":\"subtract\"),Be(this.doc,n)&&sn(this,n,i,o)}),indentSelection:nt(function(n){for(var i=this.doc.sel.ranges,o=-1,l=0;l<i.length;l++){var a=i[l];if(a.empty())a.head.line>o&&(sn(this,a.head.line,n,!0),o=a.head.line,l==this.doc.sel.primIndex&&Ce(this));else{var s=a.from(),c=a.to(),h=Math.max(o,s.line);o=Math.min(this.lastLine(),c.line-(c.ch?0:1))+1;for(var d=h;d<o;++d)sn(this,d,n);var p=this.doc.sel.ranges;s.ch==0&&i.length==p.length&&p[l].from().ch>0&&oi(this.doc,l,new H(s,p[l].to()),Dt)}}}),getTokenAt:function(n,i){return Pi(this,n,i)},getLineTokens:function(n,i){return Pi(this,v(n),i,!0)},getTokenTypeAt:function(n){n=O(this.doc,n);var i=Hi(this,S(this.doc,n.line)),o=0,l=(i.length-1)/2,a=n.ch,s;if(a==0)s=i[2];else for(;;){var c=o+l>>1;if((c?i[c*2-1]:0)>=a)l=c;else if(i[c*2+1]<a)o=c+1;else{s=i[c*2+2];break}}var h=s?s.indexOf(\"overlay \"):-1;return h<0?s:h==0?null:s.slice(0,h-1)},getModeAt:function(n){var i=this.doc.mode;return i.innerMode?t.innerMode(i,this.getTokenAt(n).state).mode:i},getHelper:function(n,i){return this.getHelpers(n,i)[0]},getHelpers:function(n,i){var o=[];if(!r.hasOwnProperty(i))return o;var l=r[i],a=this.getModeAt(n);if(typeof a[i]==\"string\")l[a[i]]&&o.push(l[a[i]]);else if(a[i])for(var s=0;s<a[i].length;s++){var c=l[a[i][s]];c&&o.push(c)}else a.helperType&&l[a.helperType]?o.push(l[a.helperType]):l[a.name]&&o.push(l[a.name]);for(var h=0;h<l._global.length;h++){var d=l._global[h];d.pred(a,this)&&J(o,d.val)==-1&&o.push(d.val)}return o},getStateAfter:function(n,i){var o=this.doc;return n=Di(o,n??o.first+o.size-1),Ue(this,n+1,i).state},cursorCoords:function(n,i){var o,l=this.doc.sel.primary();return n==null?o=l.head:typeof n==\"object\"?o=O(this.doc,n):o=n?l.from():l.to(),St(this,o,i||\"page\")},charCoords:function(n,i){return Dn(this,O(this.doc,n),i||\"page\")},coordsChar:function(n,i){return n=so(this,n,i||\"page\"),Er(this,n.left,n.top)},lineAtHeight:function(n,i){return n=so(this,{top:n,left:0},i||\"page\").top,ee(this.doc,n+this.display.viewOffset)},heightAtLine:function(n,i,o){var l=!1,a;if(typeof n==\"number\"){var s=this.doc.first+this.doc.size-1;n<this.doc.first?n=this.doc.first:n>s&&(n=s,l=!0),a=S(this.doc,n)}else a=n;return On(this,a,{top:0,left:0},i||\"page\",o||l).top+(l?this.doc.height-Ht(a):0)},defaultTextHeight:function(){return be(this.display)},defaultCharWidth:function(){return we(this.display)},getViewport:function(){return{from:this.display.viewFrom,to:this.display.viewTo}},addWidget:function(n,i,o,l,a){var s=this.display;n=St(this,O(this.doc,n));var c=n.bottom,h=n.left;if(i.style.position=\"absolute\",i.setAttribute(\"cm-ignore-events\",\"true\"),this.display.input.setUneditable(i),s.sizer.appendChild(i),l==\"over\")c=n.top;else if(l==\"above\"||l==\"near\"){var d=Math.max(s.wrapper.clientHeight,this.doc.height),p=Math.max(s.sizer.clientWidth,s.lineSpace.clientWidth);(l==\"above\"||n.bottom+i.offsetHeight>d)&&n.top>i.offsetHeight?c=n.top-i.offsetHeight:n.bottom+i.offsetHeight<=d&&(c=n.bottom),h+i.offsetWidth>p&&(h=p-i.offsetWidth)}i.style.top=c+\"px\",i.style.left=i.style.right=\"\",a==\"right\"?(h=s.sizer.clientWidth-i.offsetWidth,i.style.right=\"0px\"):(a==\"left\"?h=0:a==\"middle\"&&(h=(s.sizer.clientWidth-i.offsetWidth)/2),i.style.left=h+\"px\"),o&&Wa(this,{left:h,top:c,right:h+i.offsetWidth,bottom:c+i.offsetHeight})},triggerOnKeyDown:nt(ul),triggerOnKeyPress:nt(hl),triggerOnKeyUp:cl,triggerOnMouseDown:nt(fl),execCommand:function(n){if(qn.hasOwnProperty(n))return qn[n].call(null,this)},triggerElectric:nt(function(n){wl(this,n)}),findPosH:function(n,i,o,l){var a=1;i<0&&(a=-1,i=-i);for(var s=O(this.doc,n),c=0;c<i&&(s=fi(this.doc,s,a,o,l),!s.hitSide);++c);return s},moveH:nt(function(n,i){var o=this;this.extendSelectionsBy(function(l){return o.display.shift||o.doc.extend||l.empty()?fi(o.doc,l.head,n,i,o.options.rtlMoveVisually):n<0?l.from():l.to()},pn)}),deleteH:nt(function(n,i){var o=this.doc.sel,l=this.doc;o.somethingSelected()?l.replaceSelection(\"\",null,\"+delete\"):Ae(this,function(a){var s=fi(l,a.head,n,i,!1);return n<0?{from:s,to:a.head}:{from:a.head,to:s}})}),findPosV:function(n,i,o,l){var a=1,s=l;i<0&&(a=-1,i=-i);for(var c=O(this.doc,n),h=0;h<i;++h){var d=St(this,c,\"div\");if(s==null?s=d.left:d.left=s,c=Ll(this,d,a,o),c.hitSide)break}return c},moveV:nt(function(n,i){var o=this,l=this.doc,a=[],s=!this.display.shift&&!l.extend&&l.sel.somethingSelected();if(l.extendSelectionsBy(function(h){if(s)return n<0?h.from():h.to();var d=St(o,h.head,\"div\");h.goalColumn!=null&&(d.left=h.goalColumn),a.push(d.left);var p=Ll(o,d,n,i);return i==\"page\"&&h==l.sel.primary()&&Xr(o,Dn(o,p,\"div\").top-d.top),p},pn),a.length)for(var c=0;c<l.sel.ranges.length;c++)l.sel.ranges[c].goalColumn=a[c]}),findWordAt:function(n){var i=this.doc,o=S(i,n.line).text,l=n.ch,a=n.ch;if(o){var s=this.getHelper(n,\"wordChars\");(n.sticky==\"before\"||a==o.length)&&l?--l:++a;for(var c=o.charAt(l),h=mn(c,s)?function(d){return mn(d,s)}:/\\s/.test(c)?function(d){return/\\s/.test(d)}:function(d){return!/\\s/.test(d)&&!mn(d)};l>0&&h(o.charAt(l-1));)--l;for(;a<o.length&&h(o.charAt(a));)++a}return new H(v(n.line,l),v(n.line,a))},toggleOverwrite:function(n){n!=null&&n==this.state.overwrite||((this.state.overwrite=!this.state.overwrite)?Zt(this.display.cursorDiv,\"CodeMirror-overwrite\"):fe(this.display.cursorDiv,\"CodeMirror-overwrite\"),U(this,\"overwriteToggle\",this,this.state.overwrite))},hasFocus:function(){return this.display.input.getField()==vt()},isReadOnly:function(){return!!(this.options.readOnly||this.doc.cantEdit)},scrollTo:nt(function(n,i){Ye(this,n,i)}),getScrollInfo:function(){var n=this.display.scroller;return{left:n.scrollLeft,top:n.scrollTop,height:n.scrollHeight-Mt(this)-this.display.barHeight,width:n.scrollWidth-Mt(this)-this.display.barWidth,clientHeight:Wr(this),clientWidth:ne(this)}},scrollIntoView:nt(function(n,i){n==null?(n={from:this.doc.sel.primary().head,to:null},i==null&&(i=this.options.cursorScrollMargin)):typeof n==\"number\"?n={from:v(n,0),to:null}:n.from==null&&(n={from:n,to:null}),n.to||(n.to=n.from),n.margin=i||0,n.from.line!=null?Ha(this,n):yo(this,n.from,n.to,n.margin)}),setSize:nt(function(n,i){var o=this,l=u(function(s){return typeof s==\"number\"||/^\\d+$/.test(String(s))?s+\"px\":s},\"interpret\");n!=null&&(this.display.wrapper.style.width=l(n)),i!=null&&(this.display.wrapper.style.height=l(i)),this.options.lineWrapping&&oo(this);var a=this.display.viewFrom;this.doc.iter(a,this.display.viewTo,function(s){if(s.widgets){for(var c=0;c<s.widgets.length;c++)if(s.widgets[c].noHScroll){Gt(o,a,\"widget\");break}}++a}),this.curOp.forceUpdate=!0,U(this,\"refresh\",this)}),operation:function(n){return ut(this,n)},startOperation:function(){return le(this)},endOperation:function(){return ae(this)},refresh:nt(function(){var n=this.display.cachedTextHeight;at(this),this.curOp.forceUpdate=!0,_e(this),Ye(this,this.doc.scrollLeft,this.doc.scrollTop),Zr(this.display),(n==null||Math.abs(n-be(this.display))>.5||this.options.lineWrapping)&&Br(this),U(this,\"refresh\",this)}),swapDoc:nt(function(n){var i=this.doc;return i.cm=null,this.state.selectingText&&this.state.selectingText(),Ao(this,n),_e(this),this.display.input.reset(),Ye(this,n.scrollLeft,n.scrollTop),this.curOp.forceScroll=!0,_(this,\"swapDoc\",this,i),i}),phrase:function(n){var i=this.options.phrases;return i&&Object.prototype.hasOwnProperty.call(i,n)?i[n]:n},getInputField:function(){return this.display.input.getField()},getWrapperElement:function(){return this.display.wrapper},getScrollerElement:function(){return this.display.scroller},getGutterElement:function(){return this.display.gutters}},me(t),t.registerHelper=function(n,i,o){r.hasOwnProperty(n)||(r[n]=t[n]={_global:[]}),r[n][i]=o},t.registerGlobalHelper=function(n,i,o,l){t.registerHelper(n,i,l),r[n]._global.push({pred:o,val:l})}}u(Es,\"addEditorMethods\");function fi(t,e,r,n,i){var o=e,l=r,a=S(t,e.line),s=i&&t.direction==\"rtl\"?-r:r;function c(){var x=e.line+s;return x<t.first||x>=t.first+t.size?!1:(e=new v(x,e.ch,e.sticky),a=S(t,x))}u(c,\"findNextLine\");function h(x){var w;if(n==\"codepoint\"){var C=a.text.charCodeAt(e.ch+(r>0?0:-1));if(isNaN(C))w=null;else{var T=r>0?C>=55296&&C<56320:C>=56320&&C<57343;w=new v(e.line,Math.max(0,Math.min(a.text.length,e.ch+r*(T?2:1))),-r)}}else i?w=ys(t.cm,a,e,r):w=si(a,e,r);if(w==null)if(!x&&c())e=ui(i,t.cm,a,e.line,s);else return!1;else e=w;return!0}if(u(h,\"moveOnce\"),n==\"char\"||n==\"codepoint\")h();else if(n==\"column\")h(!0);else if(n==\"word\"||n==\"group\")for(var d=null,p=n==\"group\",f=t.cm&&t.cm.getHelper(e,\"wordChars\"),g=!0;!(r<0&&!h(!g));g=!1){var m=a.text.charAt(e.ch)||`\n`,y=mn(m,f)?\"w\":p&&m==`\n`?\"n\":!p||/\\s/.test(m)?null:\"p\";if(p&&!g&&!y&&(y=\"s\"),d&&d!=y){r<0&&(r=1,h(),e.sticky=\"after\");break}if(y&&(d=y),r>0&&!h(!g))break}var b=Un(t,e,o,l,!0);return wr(o,b)&&(b.hitSide=!0),b}u(fi,\"findPosH\");function Ll(t,e,r,n){var i=t.doc,o=e.left,l;if(n==\"page\"){var a=Math.min(t.display.wrapper.clientHeight,window.innerHeight||document.documentElement.clientHeight),s=Math.max(a-.5*be(t.display),3);l=(r>0?e.bottom:e.top)+r*s}else n==\"line\"&&(l=r>0?e.bottom+3:e.top-3);for(var c;c=Er(t,o,l),!!c.outside;){if(r<0?l<=0:l>=i.height){c.hitSide=!0;break}l+=r*5}return c}u(Ll,\"findPosV\");var P=u(function(t){this.cm=t,this.lastAnchorNode=this.lastAnchorOffset=this.lastFocusNode=this.lastFocusOffset=null,this.polling=new Qt,this.composing=null,this.gracePeriod=!1,this.readDOMTimeout=null},\"ContentEditableInput\");P.prototype.init=function(t){var e=this,r=this,n=r.cm,i=r.div=t.lineDiv;i.contentEditable=!0,Cl(i,n.options.spellcheck,n.options.autocorrect,n.options.autocapitalize);function o(a){for(var s=a.target;s;s=s.parentNode){if(s==i)return!0;if(/\\bCodeMirror-(?:line)?widget\\b/.test(s.className))break}return!1}u(o,\"belongsToInput\"),M(i,\"paste\",function(a){!o(a)||X(n,a)||bl(a,n)||I<=11&&setTimeout(q(n,function(){return e.updateFromDOM()}),20)}),M(i,\"compositionstart\",function(a){e.composing={data:a.data,done:!1}}),M(i,\"compositionupdate\",function(a){e.composing||(e.composing={data:a.data,done:!1})}),M(i,\"compositionend\",function(a){e.composing&&(a.data!=e.composing.data&&e.readFromDOMSoon(),e.composing.done=!0)}),M(i,\"touchstart\",function(){return r.forceCompositionEnd()}),M(i,\"input\",function(){e.composing||e.readFromDOMSoon()});function l(a){if(!(!o(a)||X(n,a))){if(n.somethingSelected())Qn({lineWise:!1,text:n.getSelections()}),a.type==\"cut\"&&n.replaceSelection(\"\",null,\"cut\");else if(n.options.lineWiseCopyCut){var s=xl(n);Qn({lineWise:!0,text:s.text}),a.type==\"cut\"&&n.operation(function(){n.setSelections(s.ranges,0,Dt),n.replaceSelection(\"\",null,\"cut\")})}else return;if(a.clipboardData){a.clipboardData.clearData();var c=Ot.text.join(`\n`);if(a.clipboardData.setData(\"Text\",c),a.clipboardData.getData(\"Text\")==c){a.preventDefault();return}}var h=Sl(),d=h.firstChild;n.display.lineSpace.insertBefore(h,n.display.lineSpace.firstChild),d.value=Ot.text.join(`\n`);var p=vt();fn(d),setTimeout(function(){n.display.lineSpace.removeChild(h),p.focus(),p==i&&r.showPrimarySelection()},50)}}u(l,\"onCopyCut\"),M(i,\"copy\",l),M(i,\"cut\",l)},P.prototype.screenReaderLabelChanged=function(t){t?this.div.setAttribute(\"aria-label\",t):this.div.removeAttribute(\"aria-label\")},P.prototype.prepareSelection=function(){var t=go(this.cm,!1);return t.focus=vt()==this.div,t},P.prototype.showSelection=function(t,e){!t||!this.cm.display.view.length||((t.focus||e)&&this.showPrimarySelection(),this.showMultipleSelections(t))},P.prototype.getSelection=function(){return this.cm.display.wrapper.ownerDocument.getSelection()},P.prototype.showPrimarySelection=function(){var t=this.getSelection(),e=this.cm,r=e.doc.sel.primary(),n=r.from(),i=r.to();if(e.display.viewTo==e.display.viewFrom||n.line>=e.display.viewTo||i.line<e.display.viewFrom){t.removeAllRanges();return}var o=Jn(e,t.anchorNode,t.anchorOffset),l=Jn(e,t.focusNode,t.focusOffset);if(!(o&&!o.bad&&l&&!l.bad&&N(wn(o,l),n)==0&&N(bn(o,l),i)==0)){var a=e.display.view,s=n.line>=e.display.viewFrom&&kl(e,n)||{node:a[0].measure.map[2],offset:0},c=i.line<e.display.viewTo&&kl(e,i);if(!c){var h=a[a.length-1].measure,d=h.maps?h.maps[h.maps.length-1]:h.map;c={node:d[d.length-1],offset:d[d.length-2]-d[d.length-3]}}if(!s||!c){t.removeAllRanges();return}var p=t.rangeCount&&t.getRangeAt(0),f;try{f=ge(s.node,s.offset,c.offset,c.node)}catch{}f&&(!It&&e.state.focused?(t.collapse(s.node,s.offset),f.collapsed||(t.removeAllRanges(),t.addRange(f))):(t.removeAllRanges(),t.addRange(f)),p&&t.anchorNode==null?t.addRange(p):It&&this.startGracePeriod()),this.rememberSelection()}},P.prototype.startGracePeriod=function(){var t=this;clearTimeout(this.gracePeriod),this.gracePeriod=setTimeout(function(){t.gracePeriod=!1,t.selectionChanged()&&t.cm.operation(function(){return t.cm.curOp.selectionChanged=!0})},20)},P.prototype.showMultipleSelections=function(t){gt(this.cm.display.cursorDiv,t.cursors),gt(this.cm.display.selectionDiv,t.selection)},P.prototype.rememberSelection=function(){var t=this.getSelection();this.lastAnchorNode=t.anchorNode,this.lastAnchorOffset=t.anchorOffset,this.lastFocusNode=t.focusNode,this.lastFocusOffset=t.focusOffset},P.prototype.selectionInEditor=function(){var t=this.getSelection();if(!t.rangeCount)return!1;var e=t.getRangeAt(0).commonAncestorContainer;return zt(this.div,e)},P.prototype.focus=function(){this.cm.options.readOnly!=\"nocursor\"&&((!this.selectionInEditor()||vt()!=this.div)&&this.showSelection(this.prepareSelection(),!0),this.div.focus())},P.prototype.blur=function(){this.div.blur()},P.prototype.getField=function(){return this.div},P.prototype.supportsTouch=function(){return!0},P.prototype.receivedFocus=function(){var t=this,e=this;this.selectionInEditor()?setTimeout(function(){return t.pollSelection()},20):ut(this.cm,function(){return e.cm.curOp.selectionChanged=!0});function r(){e.cm.state.focused&&(e.pollSelection(),e.polling.set(e.cm.options.pollInterval,r))}u(r,\"poll\"),this.polling.set(this.cm.options.pollInterval,r)},P.prototype.selectionChanged=function(){var t=this.getSelection();return t.anchorNode!=this.lastAnchorNode||t.anchorOffset!=this.lastAnchorOffset||t.focusNode!=this.lastFocusNode||t.focusOffset!=this.lastFocusOffset},P.prototype.pollSelection=function(){if(!(this.readDOMTimeout!=null||this.gracePeriod||!this.selectionChanged())){var t=this.getSelection(),e=this.cm;if(ir&&nr&&this.cm.display.gutterSpecs.length&&Is(t.anchorNode)){this.cm.triggerOnKeyDown({type:\"keydown\",keyCode:8,preventDefault:Math.abs}),this.blur(),this.focus();return}if(!this.composing){this.rememberSelection();var r=Jn(e,t.anchorNode,t.anchorOffset),n=Jn(e,t.focusNode,t.focusOffset);r&&n&&ut(e,function(){tt(e.doc,jt(r,n),Dt),(r.bad||n.bad)&&(e.curOp.selectionChanged=!0)})}}},P.prototype.pollContent=function(){this.readDOMTimeout!=null&&(clearTimeout(this.readDOMTimeout),this.readDOMTimeout=null);var t=this.cm,e=t.display,r=t.doc.sel.primary(),n=r.from(),i=r.to();if(n.ch==0&&n.line>t.firstLine()&&(n=v(n.line-1,S(t.doc,n.line-1).length)),i.ch==S(t.doc,i.line).text.length&&i.line<t.lastLine()&&(i=v(i.line+1,0)),n.line<e.viewFrom||i.line>e.viewTo-1)return!1;var o,l,a;n.line==e.viewFrom||(o=ie(t,n.line))==0?(l=F(e.view[0].line),a=e.view[0].node):(l=F(e.view[o].line),a=e.view[o-1].node.nextSibling);var s=ie(t,i.line),c,h;if(s==e.view.length-1?(c=e.viewTo-1,h=e.lineDiv.lastChild):(c=F(e.view[s+1].line)-1,h=e.view[s+1].node.previousSibling),!a)return!1;for(var d=t.doc.splitLines(Rs(t,a,h,l,c)),p=te(t.doc,v(l,0),v(c,S(t.doc,c).text.length));d.length>1&&p.length>1;)if(W(d)==W(p))d.pop(),p.pop(),c--;else if(d[0]==p[0])d.shift(),p.shift(),l++;else break;for(var f=0,g=0,m=d[0],y=p[0],b=Math.min(m.length,y.length);f<b&&m.charCodeAt(f)==y.charCodeAt(f);)++f;for(var x=W(d),w=W(p),C=Math.min(x.length-(d.length==1?f:0),w.length-(p.length==1?f:0));g<C&&x.charCodeAt(x.length-g-1)==w.charCodeAt(w.length-g-1);)++g;if(d.length==1&&p.length==1&&l==n.line)for(;f&&f>n.ch&&x.charCodeAt(x.length-g-1)==w.charCodeAt(w.length-g-1);)f--,g++;d[d.length-1]=x.slice(0,x.length-g).replace(/^\\u200b+/,\"\"),d[0]=d[0].slice(f).replace(/\\u200b+$/,\"\");var T=v(l,f),L=v(c,p.length?W(p).length-g:0);if(d.length>1||d[0]||N(T,L))return Ne(t.doc,d,T,L,\"+input\"),!0},P.prototype.ensurePolled=function(){this.forceCompositionEnd()},P.prototype.reset=function(){this.forceCompositionEnd()},P.prototype.forceCompositionEnd=function(){this.composing&&(clearTimeout(this.readDOMTimeout),this.composing=null,this.updateFromDOM(),this.div.blur(),this.div.focus())},P.prototype.readFromDOMSoon=function(){var t=this;this.readDOMTimeout==null&&(this.readDOMTimeout=setTimeout(function(){if(t.readDOMTimeout=null,t.composing)if(t.composing.done)t.composing=null;else return;t.updateFromDOM()},80))},P.prototype.updateFromDOM=function(){var t=this;(this.cm.isReadOnly()||!this.pollContent())&&ut(this.cm,function(){return at(t.cm)})},P.prototype.setUneditable=function(t){t.contentEditable=\"false\"},P.prototype.onKeyPress=function(t){t.charCode==0||this.composing||(t.preventDefault(),this.cm.isReadOnly()||q(this.cm,di)(this.cm,String.fromCharCode(t.charCode==null?t.keyCode:t.charCode),0))},P.prototype.readOnlyChanged=function(t){this.div.contentEditable=String(t!=\"nocursor\")},P.prototype.onContextMenu=function(){},P.prototype.resetPosition=function(){},P.prototype.needsContentAttribute=!0;function kl(t,e){var r=Hr(t,e.line);if(!r||r.hidden)return null;var n=S(t.doc,e.line),i=eo(r,n,e.line),o=At(n,t.doc.direction),l=\"left\";if(o){var a=Ee(o,e.ch);l=a%2?\"right\":\"left\"}var s=ro(i.map,e.ch,l);return s.offset=s.collapse==\"right\"?s.end:s.start,s}u(kl,\"posToDOM\");function Is(t){for(var e=t;e;e=e.parentNode)if(/CodeMirror-gutter-wrapper/.test(e.className))return!0;return!1}u(Is,\"isInGutter\");function We(t,e){return e&&(t.bad=!0),t}u(We,\"badPos\");function Rs(t,e,r,n,i){var o=\"\",l=!1,a=t.doc.lineSeparator(),s=!1;function c(f){return function(g){return g.id==f}}u(c,\"recognizeMarker\");function h(){l&&(o+=a,s&&(o+=a),l=s=!1)}u(h,\"close\");function d(f){f&&(h(),o+=f)}u(d,\"addText\");function p(f){if(f.nodeType==1){var g=f.getAttribute(\"cm-text\");if(g){d(g);return}var m=f.getAttribute(\"cm-marker\"),y;if(m){var b=t.findMarks(v(n,0),v(i+1,0),c(+m));b.length&&(y=b[0].find(0))&&d(te(t.doc,y.from,y.to).join(a));return}if(f.getAttribute(\"contenteditable\")==\"false\")return;var x=/^(pre|div|p|li|table|br)$/i.test(f.nodeName);if(!/^br$/i.test(f.nodeName)&&f.textContent.length==0)return;x&&h();for(var w=0;w<f.childNodes.length;w++)p(f.childNodes[w]);/^(pre|p)$/i.test(f.nodeName)&&(s=!0),x&&(l=!0)}else f.nodeType==3&&d(f.nodeValue.replace(/\\u200b/g,\"\").replace(/\\u00a0/g,\" \"))}for(u(p,\"walk\");p(e),e!=r;)e=e.nextSibling,s=!1;return o}u(Rs,\"domTextBetween\");function Jn(t,e,r){var n;if(e==t.display.lineDiv){if(n=t.display.lineDiv.childNodes[r],!n)return We(t.clipPos(v(t.display.viewTo-1)),!0);e=null,r=0}else for(n=e;;n=n.parentNode){if(!n||n==t.display.lineDiv)return null;if(n.parentNode&&n.parentNode==t.display.lineDiv)break}for(var i=0;i<t.display.view.length;i++){var o=t.display.view[i];if(o.node==n)return zs(o,e,r)}}u(Jn,\"domToPos\");function zs(t,e,r){var n=t.text.firstChild,i=!1;if(!e||!zt(n,e))return We(v(F(t.line),0),!0);if(e==n&&(i=!0,e=n.childNodes[r],r=0,!e)){var o=t.rest?W(t.rest):t.line;return We(v(F(o),o.text.length),i)}var l=e.nodeType==3?e:null,a=e;for(!l&&e.childNodes.length==1&&e.firstChild.nodeType==3&&(l=e.firstChild,r&&(r=l.nodeValue.length));a.parentNode!=n;)a=a.parentNode;var s=t.measure,c=s.maps;function h(y,b,x){for(var w=-1;w<(c?c.length:0);w++)for(var C=w<0?s.map:c[w],T=0;T<C.length;T+=3){var L=C[T+2];if(L==y||L==b){var D=F(w<0?t.line:t.rest[w]),E=C[T]+x;return(x<0||L!=y)&&(E=C[T+(x?1:0)]),v(D,E)}}}u(h,\"find\");var d=h(l,a,r);if(d)return We(d,i);for(var p=a.nextSibling,f=l?l.nodeValue.length-r:0;p;p=p.nextSibling){if(d=h(p,p.firstChild,0),d)return We(v(d.line,d.ch-f),i);f+=p.textContent.length}for(var g=a.previousSibling,m=r;g;g=g.previousSibling){if(d=h(g,g.firstChild,-1),d)return We(v(d.line,d.ch+m),i);m+=g.textContent.length}}u(zs,\"locateNodeInLineView\");var G=u(function(t){this.cm=t,this.prevInput=\"\",this.pollingFast=!1,this.polling=new Qt,this.hasSelection=!1,this.composing=null},\"TextareaInput\");G.prototype.init=function(t){var e=this,r=this,n=this.cm;this.createField(t);var i=this.textarea;t.wrapper.insertBefore(this.wrapper,t.wrapper.firstChild),hn&&(i.style.width=\"0px\"),M(i,\"input\",function(){A&&I>=9&&e.hasSelection&&(e.hasSelection=null),r.poll()}),M(i,\"paste\",function(l){X(n,l)||bl(l,n)||(n.state.pasteIncoming=+new Date,r.fastPoll())});function o(l){if(!X(n,l)){if(n.somethingSelected())Qn({lineWise:!1,text:n.getSelections()});else if(n.options.lineWiseCopyCut){var a=xl(n);Qn({lineWise:!0,text:a.text}),l.type==\"cut\"?n.setSelections(a.ranges,null,Dt):(r.prevInput=\"\",i.value=a.text.join(`\n`),fn(i))}else return;l.type==\"cut\"&&(n.state.cutIncoming=+new Date)}}u(o,\"prepareCopyCut\"),M(i,\"cut\",o),M(i,\"copy\",o),M(t.scroller,\"paste\",function(l){if(!(Ft(t,l)||X(n,l))){if(!i.dispatchEvent){n.state.pasteIncoming=+new Date,r.focus();return}var a=new Event(\"paste\");a.clipboardData=l.clipboardData,i.dispatchEvent(a)}}),M(t.lineSpace,\"selectstart\",function(l){Ft(t,l)||lt(l)}),M(i,\"compositionstart\",function(){var l=n.getCursor(\"from\");r.composing&&r.composing.range.clear(),r.composing={start:l,range:n.markText(l,n.getCursor(\"to\"),{className:\"CodeMirror-composing\"})}}),M(i,\"compositionend\",function(){r.composing&&(r.poll(),r.composing.range.clear(),r.composing=null)})},G.prototype.createField=function(t){this.wrapper=Sl(),this.textarea=this.wrapper.firstChild},G.prototype.screenReaderLabelChanged=function(t){t?this.textarea.setAttribute(\"aria-label\",t):this.textarea.removeAttribute(\"aria-label\")},G.prototype.prepareSelection=function(){var t=this.cm,e=t.display,r=t.doc,n=go(t);if(t.options.moveInputWithCursor){var i=St(t,r.sel.primary().head,\"div\"),o=e.wrapper.getBoundingClientRect(),l=e.lineDiv.getBoundingClientRect();n.teTop=Math.max(0,Math.min(e.wrapper.clientHeight-10,i.top+l.top-o.top)),n.teLeft=Math.max(0,Math.min(e.wrapper.clientWidth-10,i.left+l.left-o.left))}return n},G.prototype.showSelection=function(t){var e=this.cm,r=e.display;gt(r.cursorDiv,t.cursors),gt(r.selectionDiv,t.selection),t.teTop!=null&&(this.wrapper.style.top=t.teTop+\"px\",this.wrapper.style.left=t.teLeft+\"px\")},G.prototype.reset=function(t){if(!(this.contextMenuPending||this.composing)){var e=this.cm;if(e.somethingSelected()){this.prevInput=\"\";var r=e.getSelection();this.textarea.value=r,e.state.focused&&fn(this.textarea),A&&I>=9&&(this.hasSelection=r)}else t||(this.prevInput=this.textarea.value=\"\",A&&I>=9&&(this.hasSelection=null))}},G.prototype.getField=function(){return this.textarea},G.prototype.supportsTouch=function(){return!1},G.prototype.focus=function(){if(this.cm.options.readOnly!=\"nocursor\"&&(!dn||vt()!=this.textarea))try{this.textarea.focus()}catch{}},G.prototype.blur=function(){this.textarea.blur()},G.prototype.resetPosition=function(){this.wrapper.style.top=this.wrapper.style.left=0},G.prototype.receivedFocus=function(){this.slowPoll()},G.prototype.slowPoll=function(){var t=this;this.pollingFast||this.polling.set(this.cm.options.pollInterval,function(){t.poll(),t.cm.state.focused&&t.slowPoll()})},G.prototype.fastPoll=function(){var t=!1,e=this;e.pollingFast=!0;function r(){var n=e.poll();!n&&!t?(t=!0,e.polling.set(60,r)):(e.pollingFast=!1,e.slowPoll())}u(r,\"p\"),e.polling.set(20,r)},G.prototype.poll=function(){var t=this,e=this.cm,r=this.textarea,n=this.prevInput;if(this.contextMenuPending||!e.state.focused||Js(r)&&!n&&!this.composing||e.isReadOnly()||e.options.disableInput||e.state.keySeq)return!1;var i=r.value;if(i==n&&!e.somethingSelected())return!1;if(A&&I>=9&&this.hasSelection===i||xt&&/[\\uf700-\\uf7ff]/.test(i))return e.display.input.reset(),!1;if(e.doc.sel==e.display.selForContextMenu){var o=i.charCodeAt(0);if(o==8203&&!n&&(n=\"​\"),o==8666)return this.reset(),this.cm.execCommand(\"undo\")}for(var l=0,a=Math.min(n.length,i.length);l<a&&n.charCodeAt(l)==i.charCodeAt(l);)++l;return ut(e,function(){di(e,i.slice(l),n.length-l,null,t.composing?\"*compose\":null),i.length>1e3||i.indexOf(`\n`)>-1?r.value=t.prevInput=\"\":t.prevInput=i,t.composing&&(t.composing.range.clear(),t.composing.range=e.markText(t.composing.start,e.getCursor(\"to\"),{className:\"CodeMirror-composing\"}))}),!0},G.prototype.ensurePolled=function(){this.pollingFast&&this.poll()&&(this.pollingFast=!1)},G.prototype.onKeyPress=function(){A&&I>=9&&(this.hasSelection=null),this.fastPoll()},G.prototype.onContextMenu=function(t){var e=this,r=e.cm,n=r.display,i=e.textarea;e.contextMenuPending&&e.contextMenuPending();var o=re(r,t),l=n.scroller.scrollTop;if(!o||kt)return;var a=r.options.resetSelectionOnContextMenu;a&&r.doc.sel.contains(o)==-1&&q(r,tt)(r.doc,jt(o),Dt);var s=i.style.cssText,c=e.wrapper.style.cssText,h=e.wrapper.offsetParent.getBoundingClientRect();e.wrapper.style.cssText=\"position: static\",i.style.cssText=`position: absolute; width: 30px; height: 30px;\n      top: `+(t.clientY-h.top-5)+\"px; left: \"+(t.clientX-h.left-5)+`px;\n      z-index: 1000; background: `+(A?\"rgba(255, 255, 255, .05)\":\"transparent\")+`;\n      outline: none; border-width: 0; outline: none; overflow: hidden; opacity: .05; filter: alpha(opacity=5);`;var d;ot&&(d=window.scrollY),n.input.focus(),ot&&window.scrollTo(null,d),n.input.reset(),r.somethingSelected()||(i.value=e.prevInput=\" \"),e.contextMenuPending=f,n.selForContextMenu=r.doc.sel,clearTimeout(n.detectingSelectAll);function p(){if(i.selectionStart!=null){var m=r.somethingSelected(),y=\"​\"+(m?i.value:\"\");i.value=\"⇚\",i.value=y,e.prevInput=m?\"\":\"​\",i.selectionStart=1,i.selectionEnd=y.length,n.selForContextMenu=r.doc.sel}}u(p,\"prepareSelectAllHack\");function f(){if(e.contextMenuPending==f&&(e.contextMenuPending=!1,e.wrapper.style.cssText=c,i.style.cssText=s,A&&I<9&&n.scrollbars.setScrollTop(n.scroller.scrollTop=l),i.selectionStart!=null)){(!A||A&&I<9)&&p();var m=0,y=u(function(){n.selForContextMenu==r.doc.sel&&i.selectionStart==0&&i.selectionEnd>0&&e.prevInput==\"​\"?q(r,Vo)(r):m++<10?n.detectingSelectAll=setTimeout(y,500):(n.selForContextMenu=null,n.input.reset())},\"poll\");n.detectingSelectAll=setTimeout(y,200)}}if(u(f,\"rehide\"),A&&I>=9&&p(),gi){Ie(t);var g=u(function(){mt(window,\"mouseup\",g),setTimeout(f,20)},\"mouseup\");M(window,\"mouseup\",g)}else setTimeout(f,50)},G.prototype.readOnlyChanged=function(t){t||this.reset(),this.textarea.disabled=t==\"nocursor\",this.textarea.readOnly=!!t},G.prototype.setUneditable=function(){},G.prototype.needsContentAttribute=!1;function Bs(t,e){if(e=e?$t(e):{},e.value=t.value,!e.tabindex&&t.tabIndex&&(e.tabindex=t.tabIndex),!e.placeholder&&t.placeholder&&(e.placeholder=t.placeholder),e.autofocus==null){var r=vt();e.autofocus=r==t||t.getAttribute(\"autofocus\")!=null&&r==document.body}function n(){t.value=a.getValue()}u(n,\"save\");var i;if(t.form&&(M(t.form,\"submit\",n),!e.leaveSubmitMethodAlone)){var o=t.form;i=o.submit;try{var l=o.submit=function(){n(),o.submit=i,o.submit(),o.submit=l}}catch{}}e.finishInit=function(s){s.save=n,s.getTextArea=function(){return t},s.toTextArea=function(){s.toTextArea=isNaN,n(),t.parentNode.removeChild(s.getWrapperElement()),t.style.display=\"\",t.form&&(mt(t.form,\"submit\",n),!e.leaveSubmitMethodAlone&&typeof t.form.submit==\"function\"&&(t.form.submit=i))}},t.style.display=\"none\";var a=R(function(s){return t.parentNode.insertBefore(s,t.nextSibling)},e);return a}u(Bs,\"fromTextArea\");function Us(t){t.off=mt,t.on=M,t.wheelEventPixels=_a,t.Doc=ct,t.splitLines=Ti,t.countColumn=yt,t.findColumn=sr,t.isWordChar=hr,t.Pass=ar,t.signal=U,t.Line=Ke,t.changeEnd=Xt,t.scrollbarModel=Fa,t.Pos=v,t.cmpPos=N,t.modes=Ni,t.mimeModes=Re,t.resolveMode=yn,t.getMode=mr,t.modeExtensions=ze,t.extendMode=Ul,t.copyState=Jt,t.startState=Oi,t.innerMode=vr,t.commands=qn,t.keyMap=qt,t.keyName=rl,t.isModifierKey=el,t.lookupKey=De,t.normalizeKeyMap=vs,t.StringStream=K,t.SharedTextMarker=Vn,t.TextMarker=se,t.LineWidget=Kn,t.e_preventDefault=lt,t.e_stopPropagation=Ci,t.e_stop=Ie,t.addClass=Zt,t.contains=zt,t.rmClass=fe,t.keyNames=ue}u(Us,\"addLegacyProps\"),Ws(R),Es(R);var au=\"iter insert remove copy getEditor constructor\".split(\" \");for(var pi in ct.prototype)ct.prototype.hasOwnProperty(pi)&&J(au,pi)<0&&(R.prototype[pi]=function(t){return function(){return t.apply(this.doc,arguments)}}(ct.prototype[pi]));return me(ct),R.inputStyles={textarea:G,contenteditable:P},R.defineMode=function(t){!R.defaults.mode&&t!=\"null\"&&(R.defaults.mode=t),zl.apply(this,arguments)},R.defineMIME=Bl,R.defineMode(\"null\",function(){return{token:function(t){return t.skipToEnd()}}}),R.defineMIME(\"text/plain\",\"null\"),R.defineExtension=function(t,e){R.prototype[t]=e},R.defineDocExtension=function(t,e){ct.prototype[t]=e},R.fromTextArea=Bs,Us(R),R.version=\"5.65.3\",R})}(Gs)),Gs.exports}u(hu,\"requireCodemirror\");export{hu as c,cu as h};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/comment.es-39699bae.js",
    "content": "import{c as K,h as Q}from\"./codemirror.es2-5884f31a.js\";var X=Object.defineProperty,I=(S,A)=>X(S,\"name\",{value:A,configurable:!0});function q(S,A){for(var f=0;f<A.length;f++){const p=A[f];if(typeof p!=\"string\"&&!Array.isArray(p)){for(const s in p)if(s!==\"default\"&&!(s in S)){const r=Object.getOwnPropertyDescriptor(p,s);r&&Object.defineProperty(S,s,r.get?r:{enumerable:!0,get:()=>p[s]})}}}return Object.freeze(Object.defineProperty(S,Symbol.toStringTag,{value:\"Module\"}))}I(q,\"_mergeNamespaces\");var $={exports:{}};(function(S,A){(function(f){f(K())})(function(f){var p={},s=/[^\\s\\u00a0]/,r=f.Pos,J=f.cmpPos;function N(t){var i=t.search(s);return i==-1?0:i}I(N,\"firstNonWS\"),f.commands.toggleComment=function(t){t.toggleComment()},f.defineExtension(\"toggleComment\",function(t){t||(t=p);for(var i=this,n=1/0,e=this.listSelections(),g=null,m=e.length-1;m>=0;m--){var o=e[m].from(),l=e[m].to();o.line>=n||(l.line>=n&&(l=r(n,0)),n=o.line,g==null?i.uncomment(o,l,t)?g=\"un\":(i.lineComment(o,l,t),g=\"line\"):g==\"un\"?i.uncomment(o,l,t):i.lineComment(o,l,t))}});function z(t,i,n){return/\\bstring\\b/.test(t.getTokenTypeAt(r(i.line,0)))&&!/^[\\'\\\"\\`]/.test(n)}I(z,\"probablyInsideString\");function j(t,i){var n=t.getMode();return n.useInnerComments===!1||!n.innerMode?n:t.getModeAt(i)}I(j,\"getMode\"),f.defineExtension(\"lineComment\",function(t,i,n){n||(n=p);var e=this,g=j(e,t),m=e.getLine(t.line);if(!(m==null||z(e,t,m))){var o=n.lineComment||g.lineComment;if(!o){(n.blockCommentStart||g.blockCommentStart)&&(n.fullLines=!0,e.blockComment(t,i,n));return}var l=Math.min(i.ch!=0||i.line==t.line?i.line+1:i.line,e.lastLine()+1),b=n.padding==null?\" \":n.padding,c=n.commentBlankLines||t.line==i.line;e.operation(function(){if(n.indent){for(var d=null,a=t.line;a<l;++a){var u=e.getLine(a),h=u.slice(0,N(u));(d==null||d.length>h.length)&&(d=h)}for(var a=t.line;a<l;++a){var u=e.getLine(a),v=d.length;!c&&!s.test(u)||(u.slice(0,v)!=d&&(v=N(u)),e.replaceRange(d+o+b,r(a,0),r(a,v)))}}else for(var a=t.line;a<l;++a)(c||s.test(e.getLine(a)))&&e.replaceRange(o+b,r(a,0))})}}),f.defineExtension(\"blockComment\",function(t,i,n){n||(n=p);var e=this,g=j(e,t),m=n.blockCommentStart||g.blockCommentStart,o=n.blockCommentEnd||g.blockCommentEnd;if(!m||!o){(n.lineComment||g.lineComment)&&n.fullLines!=!1&&e.lineComment(t,i,n);return}if(!/\\bcomment\\b/.test(e.getTokenTypeAt(r(t.line,0)))){var l=Math.min(i.line,e.lastLine());l!=t.line&&i.ch==0&&s.test(e.getLine(l))&&--l;var b=n.padding==null?\" \":n.padding;t.line>l||e.operation(function(){if(n.fullLines!=!1){var c=s.test(e.getLine(l));e.replaceRange(b+o,r(l)),e.replaceRange(m+b,r(t.line,0));var d=n.blockCommentLead||g.blockCommentLead;if(d!=null)for(var a=t.line+1;a<=l;++a)(a!=l||c)&&e.replaceRange(d+b,r(a,0))}else{var u=J(e.getCursor(\"to\"),i)==0,h=!e.somethingSelected();e.replaceRange(o,i),u&&e.setSelection(h?i:e.getCursor(\"from\"),i),e.replaceRange(m,t)}})}}),f.defineExtension(\"uncomment\",function(t,i,n){n||(n=p);var e=this,g=j(e,t),m=Math.min(i.ch!=0||i.line==t.line?i.line:i.line-1,e.lastLine()),o=Math.min(t.line,m),l=n.lineComment||g.lineComment,b=[],c=n.padding==null?\" \":n.padding,d;e:{if(!l)break e;for(var a=o;a<=m;++a){var u=e.getLine(a),h=u.indexOf(l);if(h>-1&&!/comment/.test(e.getTokenTypeAt(r(a,h+1)))&&(h=-1),h==-1&&s.test(u)||h>-1&&s.test(u.slice(0,h)))break e;b.push(u)}if(e.operation(function(){for(var C=o;C<=m;++C){var y=b[C-o],O=y.indexOf(l),k=O+l.length;O<0||(y.slice(k,k+c.length)==c&&(k+=c.length),d=!0,e.replaceRange(\"\",r(C,O),r(C,k)))}}),d)return!0}var v=n.blockCommentStart||g.blockCommentStart,L=n.blockCommentEnd||g.blockCommentEnd;if(!v||!L)return!1;var w=n.blockCommentLead||g.blockCommentLead,E=e.getLine(o),P=E.indexOf(v);if(P==-1)return!1;var M=m==o?E:e.getLine(m),R=M.indexOf(L,m==o?P+v.length:0),B=r(o,P+1),D=r(m,R+1);if(R==-1||!/comment/.test(e.getTokenTypeAt(B))||!/comment/.test(e.getTokenTypeAt(D))||e.getRange(B,D,`\n`).indexOf(L)>-1)return!1;var x=E.lastIndexOf(v,t.ch),T=x==-1?-1:E.slice(0,t.ch).indexOf(L,x+v.length);if(x!=-1&&T!=-1&&T+L.length!=t.ch)return!1;T=M.indexOf(L,i.ch);var W=M.slice(i.ch).lastIndexOf(v,T-i.ch);return x=T==-1||W==-1?-1:i.ch+W,T!=-1&&x!=-1&&x!=i.ch?!1:(e.operation(function(){e.replaceRange(\"\",r(m,R-(c&&M.slice(R-c.length,R)==c?c.length:0)),r(m,R+L.length));var C=P+v.length;if(c&&E.slice(C,C+c.length)==c&&(C+=c.length),e.replaceRange(\"\",r(o,P),r(o,C)),w)for(var y=o+1;y<=m;++y){var O=e.getLine(y),k=O.indexOf(w);if(!(k==-1||s.test(O.slice(0,k)))){var _=k+w.length;c&&O.slice(_,_+c.length)==c&&(_+=c.length),e.replaceRange(\"\",r(y,k),r(y,_))}}}),!0)})})})();var F=$.exports;const G=Q(F),U=q({__proto__:null,default:G},[F]);export{U as c};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/dialog.es-b2776d29.js",
    "content": "import{c as b,h as O}from\"./codemirror.es2-5884f31a.js\";var T=Object.defineProperty,g=(p,m)=>T(p,\"name\",{value:m,configurable:!0});function C(p,m){for(var o=0;o<m.length;o++){const c=m[o];if(typeof c!=\"string\"&&!Array.isArray(c)){for(const s in c)if(s!==\"default\"&&!(s in p)){const u=Object.getOwnPropertyDescriptor(c,s);u&&Object.defineProperty(p,s,u.get?u:{enumerable:!0,get:()=>c[s]})}}}return Object.freeze(Object.defineProperty(p,Symbol.toStringTag,{value:\"Module\"}))}g(C,\"_mergeNamespaces\");var k={exports:{}};(function(p,m){(function(o){o(b())})(function(o){function c(u,l,e){var r=u.getWrapperElement(),a;return a=r.appendChild(document.createElement(\"div\")),e?a.className=\"CodeMirror-dialog CodeMirror-dialog-bottom\":a.className=\"CodeMirror-dialog CodeMirror-dialog-top\",typeof l==\"string\"?a.innerHTML=l:a.appendChild(l),o.addClass(r,\"dialog-opened\"),a}g(c,\"dialogDiv\");function s(u,l){u.state.currentNotificationClose&&u.state.currentNotificationClose(),u.state.currentNotificationClose=l}g(s,\"closeNotification\"),o.defineExtension(\"openDialog\",function(u,l,e){e||(e={}),s(this,null);var r=c(this,u,e.bottom),a=!1,f=this;function i(t){if(typeof t==\"string\")n.value=t;else{if(a)return;a=!0,o.rmClass(r.parentNode,\"dialog-opened\"),r.parentNode.removeChild(r),f.focus(),e.onClose&&e.onClose(r)}}g(i,\"close\");var n=r.getElementsByTagName(\"input\")[0],d;return n?(n.focus(),e.value&&(n.value=e.value,e.selectValueOnOpen!==!1&&n.select()),e.onInput&&o.on(n,\"input\",function(t){e.onInput(t,n.value,i)}),e.onKeyUp&&o.on(n,\"keyup\",function(t){e.onKeyUp(t,n.value,i)}),o.on(n,\"keydown\",function(t){e&&e.onKeyDown&&e.onKeyDown(t,n.value,i)||((t.keyCode==27||e.closeOnEnter!==!1&&t.keyCode==13)&&(n.blur(),o.e_stop(t),i()),t.keyCode==13&&l(n.value,t))}),e.closeOnBlur!==!1&&o.on(r,\"focusout\",function(t){t.relatedTarget!==null&&i()})):(d=r.getElementsByTagName(\"button\")[0])&&(o.on(d,\"click\",function(){i(),f.focus()}),e.closeOnBlur!==!1&&o.on(d,\"blur\",i),d.focus()),i}),o.defineExtension(\"openConfirm\",function(u,l,e){s(this,null);var r=c(this,u,e&&e.bottom),a=r.getElementsByTagName(\"button\"),f=!1,i=this,n=1;function d(){f||(f=!0,o.rmClass(r.parentNode,\"dialog-opened\"),r.parentNode.removeChild(r),i.focus())}g(d,\"close\"),a[0].focus();for(var t=0;t<a.length;++t){var v=a[t];(function(y){o.on(v,\"click\",function(N){o.e_preventDefault(N),d(),y&&y(i)})})(l[t]),o.on(v,\"blur\",function(){--n,setTimeout(function(){n<=0&&d()},200)}),o.on(v,\"focus\",function(){++n})}}),o.defineExtension(\"openNotification\",function(u,l){s(this,i);var e=c(this,u,l&&l.bottom),r=!1,a,f=l&&typeof l.duration<\"u\"?l.duration:5e3;function i(){r||(r=!0,clearTimeout(a),o.rmClass(e.parentNode,\"dialog-opened\"),e.parentNode.removeChild(e))}return g(i,\"close\"),o.on(e,\"click\",function(n){o.e_preventDefault(n),i()}),f&&(a=setTimeout(i,f)),i})})})();var h=k.exports;const E=O(h),x=C({__proto__:null,default:E},[h]);export{h as a,x as d};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/foldgutter.es-b6cee46a.js",
    "content": "import{c as P,h as A}from\"./codemirror.es2-5884f31a.js\";var j=Object.defineProperty,d=(C,y)=>j(C,\"name\",{value:y,configurable:!0});function U(C,y){for(var a=0;a<y.length;a++){const c=y[a];if(typeof c!=\"string\"&&!Array.isArray(c)){for(const g in c)if(g!==\"default\"&&!(g in C)){const F=Object.getOwnPropertyDescriptor(c,g);F&&Object.defineProperty(C,g,F.get?F:{enumerable:!0,get:()=>c[g]})}}}return Object.freeze(Object.defineProperty(C,Symbol.toStringTag,{value:\"Module\"}))}d(U,\"_mergeNamespaces\");var L={exports:{}},V={exports:{}},E;function S(){return E||(E=1,function(C,y){(function(a){a(P())})(function(a){function c(e,t,i,f){if(i&&i.call){var s=i;i=null}else var s=m(e,i,\"rangeFinder\");typeof t==\"number\"&&(t=a.Pos(t,0));var O=m(e,i,\"minFoldSize\");function w(l){var r=s(e,t);if(!r||r.to.line-r.from.line<O)return null;if(f===\"fold\")return r;for(var p=e.findMarksAt(r.from),v=0;v<p.length;++v)if(p[v].__isFold){if(!l)return null;r.cleared=!0,p[v].clear()}return r}d(w,\"getRange\");var u=w(!0);if(m(e,i,\"scanUp\"))for(;!u&&t.line>e.firstLine();)t=a.Pos(t.line-1,0),u=w(!1);if(!(!u||u.cleared||f===\"unfold\")){var o=g(e,i,u);a.on(o,\"mousedown\",function(l){n.clear(),a.e_preventDefault(l)});var n=e.markText(u.from,u.to,{replacedWith:o,clearOnEnter:m(e,i,\"clearOnEnter\"),__isFold:!0});n.on(\"clear\",function(l,r){a.signal(e,\"unfold\",e,l,r)}),a.signal(e,\"fold\",e,u.from,u.to)}}d(c,\"doFold\");function g(e,t,i){var f=m(e,t,\"widget\");if(typeof f==\"function\"&&(f=f(i.from,i.to)),typeof f==\"string\"){var s=document.createTextNode(f);f=document.createElement(\"span\"),f.appendChild(s),f.className=\"CodeMirror-foldmarker\"}else f&&(f=f.cloneNode(!0));return f}d(g,\"makeWidget\"),a.newFoldFunction=function(e,t){return function(i,f){c(i,f,{rangeFinder:e,widget:t})}},a.defineExtension(\"foldCode\",function(e,t,i){c(this,e,t,i)}),a.defineExtension(\"isFolded\",function(e){for(var t=this.findMarksAt(e),i=0;i<t.length;++i)if(t[i].__isFold)return!0}),a.commands.toggleFold=function(e){e.foldCode(e.getCursor())},a.commands.fold=function(e){e.foldCode(e.getCursor(),null,\"fold\")},a.commands.unfold=function(e){e.foldCode(e.getCursor(),{scanUp:!1},\"unfold\")},a.commands.foldAll=function(e){e.operation(function(){for(var t=e.firstLine(),i=e.lastLine();t<=i;t++)e.foldCode(a.Pos(t,0),{scanUp:!1},\"fold\")})},a.commands.unfoldAll=function(e){e.operation(function(){for(var t=e.firstLine(),i=e.lastLine();t<=i;t++)e.foldCode(a.Pos(t,0),{scanUp:!1},\"unfold\")})},a.registerHelper(\"fold\",\"combine\",function(){var e=Array.prototype.slice.call(arguments,0);return function(t,i){for(var f=0;f<e.length;++f){var s=e[f](t,i);if(s)return s}}}),a.registerHelper(\"fold\",\"auto\",function(e,t){for(var i=e.getHelpers(t,\"fold\"),f=0;f<i.length;f++){var s=i[f](e,t);if(s)return s}});var F={rangeFinder:a.fold.auto,widget:\"↔\",minFoldSize:0,scanUp:!1,clearOnEnter:!0};a.defineOption(\"foldOptions\",null);function m(e,t,i){if(t&&t[i]!==void 0)return t[i];var f=e.options.foldOptions;return f&&f[i]!==void 0?f[i]:F[i]}d(m,\"getOption\"),a.defineExtension(\"foldOption\",function(e,t){return m(this,e,t)})})}()),V.exports}d(S,\"requireFoldcode\");(function(C,y){(function(a){a(P(),S())})(function(a){a.defineOption(\"foldGutter\",!1,function(o,n,l){l&&l!=a.Init&&(o.clearGutter(o.state.foldGutter.options.gutter),o.state.foldGutter=null,o.off(\"gutterClick\",s),o.off(\"changes\",O),o.off(\"viewportChange\",w),o.off(\"fold\",u),o.off(\"unfold\",u),o.off(\"swapDoc\",O)),n&&(o.state.foldGutter=new g(F(n)),f(o),o.on(\"gutterClick\",s),o.on(\"changes\",O),o.on(\"viewportChange\",w),o.on(\"fold\",u),o.on(\"unfold\",u),o.on(\"swapDoc\",O))});var c=a.Pos;function g(o){this.options=o,this.from=this.to=0}d(g,\"State\");function F(o){return o===!0&&(o={}),o.gutter==null&&(o.gutter=\"CodeMirror-foldgutter\"),o.indicatorOpen==null&&(o.indicatorOpen=\"CodeMirror-foldgutter-open\"),o.indicatorFolded==null&&(o.indicatorFolded=\"CodeMirror-foldgutter-folded\"),o}d(F,\"parseOptions\");function m(o,n){for(var l=o.findMarks(c(n,0),c(n+1,0)),r=0;r<l.length;++r)if(l[r].__isFold){var p=l[r].find(-1);if(p&&p.line===n)return l[r]}}d(m,\"isFolded\");function e(o){if(typeof o==\"string\"){var n=document.createElement(\"div\");return n.className=o+\" CodeMirror-guttermarker-subtle\",n}else return o.cloneNode(!0)}d(e,\"marker\");function t(o,n,l){var r=o.state.foldGutter.options,p=n-1,v=o.foldOption(r,\"minFoldSize\"),G=o.foldOption(r,\"rangeFinder\"),x=typeof r.indicatorFolded==\"string\"&&i(r.indicatorFolded),b=typeof r.indicatorOpen==\"string\"&&i(r.indicatorOpen);o.eachLine(n,l,function(M){++p;var _=null,h=M.gutterMarkers;if(h&&(h=h[r.gutter]),m(o,p)){if(x&&h&&x.test(h.className))return;_=e(r.indicatorFolded)}else{var N=c(p,0),k=G&&G(o,N);if(k&&k.to.line-k.from.line>=v){if(b&&h&&b.test(h.className))return;_=e(r.indicatorOpen)}}!_&&!h||o.setGutterMarker(M,r.gutter,_)})}d(t,\"updateFoldInfo\");function i(o){return new RegExp(\"(^|\\\\s)\"+o+\"(?:$|\\\\s)\\\\s*\")}d(i,\"classTest\");function f(o){var n=o.getViewport(),l=o.state.foldGutter;l&&(o.operation(function(){t(o,n.from,n.to)}),l.from=n.from,l.to=n.to)}d(f,\"updateInViewport\");function s(o,n,l){var r=o.state.foldGutter;if(r){var p=r.options;if(l==p.gutter){var v=m(o,n);v?v.clear():o.foldCode(c(n,0),p)}}}d(s,\"onGutterClick\");function O(o){var n=o.state.foldGutter;if(n){var l=n.options;n.from=n.to=0,clearTimeout(n.changeUpdate),n.changeUpdate=setTimeout(function(){f(o)},l.foldOnChangeTimeSpan||600)}}d(O,\"onChange\");function w(o){var n=o.state.foldGutter;if(n){var l=n.options;clearTimeout(n.changeUpdate),n.changeUpdate=setTimeout(function(){var r=o.getViewport();n.from==n.to||r.from-n.to>20||n.from-r.to>20?f(o):o.operation(function(){r.from<n.from&&(t(o,r.from,n.from),n.from=r.from),r.to>n.to&&(t(o,n.to,r.to),n.to=r.to)})},l.updateViewportTimeSpan||400)}}d(w,\"onViewportChange\");function u(o,n){var l=o.state.foldGutter;if(l){var r=n.line;r>=l.from&&r<l.to&&t(o,r,r+1)}}d(u,\"onFold\")})})();var T=L.exports;const z=A(T),H=U({__proto__:null,default:z},[T]);export{H as f};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/forEachState.es-b2033c2b.js",
    "content": "var a=Object.defineProperty,l=(t,n)=>a(t,\"name\",{value:n,configurable:!0});function f(t,n){const r=[];let e=t;for(;e!=null&&e.kind;)r.push(e),e=e.prevState;for(let o=r.length-1;o>=0;o--)n(r[o])}l(f,\"forEachState\");export{f as s};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/hint.es-1418191b.js",
    "content": "import{C as n}from\"./codemirror.es-52e8b92d.js\";import\"./show-hint.es-b981493e.js\";import{g as c}from\"./index-27dc12ba.js\";import{P as g}from\"./Range-52ddcb6a.js\";import\"./codemirror.es2-5884f31a.js\";n.registerHelper(\"hint\",\"graphql\",(i,a)=>{const{schema:s,externalFragments:p}=a;if(!s)return;const r=i.getCursor(),t=i.getTokenAt(r),l=t.type!==null&&/\"|\\w/.test(t.string[0])?t.start:t.end,m=new g(r.line,l),e={list:c(s,i.getValue(),m,t,p).map(o=>({text:o.label,type:o.type,description:o.documentation,isDeprecated:o.isDeprecated,deprecationReason:o.deprecationReason})),from:{line:r.line,ch:l},to:{line:r.line,ch:t.end}};return e!=null&&e.list&&e.list.length>0&&(e.from=n.Pos(e.from.line,e.from.ch),e.to=n.Pos(e.to.line,e.to.ch),n.signal(i,\"hasCompletion\",i,e,t)),e});\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/hint.es2-598d3bfe.js",
    "content": "import{C as f}from\"./codemirror.es-52e8b92d.js\";import{s as L}from\"./forEachState.es-b2033c2b.js\";import\"./codemirror.es2-5884f31a.js\";import{l as h,X as b,Y as T,a3 as d,F as j,W as D}from\"./index-27dc12ba.js\";var N=Object.defineProperty,p=(i,n)=>N(i,\"name\",{value:n,configurable:!0});function u(i,n,t){const r=x(t,m(n.string));if(!r)return;const e=n.type!==null&&/\"|\\w/.test(n.string[0])?n.start:n.end;return{list:r,from:{line:i.line,ch:e},to:{line:i.line,ch:n.end}}}p(u,\"hintList\");function x(i,n){if(!n)return y(i,r=>!r.isDeprecated);const t=i.map(r=>({proximity:V(m(r.text),n),entry:r}));return y(y(t,r=>r.proximity<=2),r=>!r.entry.isDeprecated).sort((r,e)=>(r.entry.isDeprecated?1:0)-(e.entry.isDeprecated?1:0)||r.proximity-e.proximity||r.entry.text.length-e.entry.text.length).map(r=>r.entry)}p(x,\"filterAndSortList\");function y(i,n){const t=i.filter(n);return t.length===0?i:t}p(y,\"filterNonEmpty\");function m(i){return i.toLowerCase().replaceAll(/\\W/g,\"\")}p(m,\"normalizeText\");function V(i,n){let t=v(n,i);return i.length>n.length&&(t-=i.length-n.length-1,t+=i.indexOf(n)===0?0:.5),t}p(V,\"getProximity\");function v(i,n){let t,r;const e=[],a=i.length,s=n.length;for(t=0;t<=a;t++)e[t]=[t];for(r=1;r<=s;r++)e[0][r]=r;for(t=1;t<=a;t++)for(r=1;r<=s;r++){const c=i[t-1]===n[r-1]?0:1;e[t][r]=Math.min(e[t-1][r]+1,e[t][r-1]+1,e[t-1][r-1]+c),t>1&&r>1&&i[t-1]===n[r-2]&&i[t-2]===n[r-1]&&(e[t][r]=Math.min(e[t][r],e[t-2][r-2]+c))}return e[a][s]}p(v,\"lexicalDistance\");f.registerHelper(\"hint\",\"graphql-variables\",(i,n)=>{const t=i.getCursor(),r=i.getTokenAt(t),e=O(t,r,n);return e!=null&&e.list&&e.list.length>0&&(e.from=f.Pos(e.from.line,e.from.ch),e.to=f.Pos(e.to.line,e.to.ch),f.signal(i,\"hasCompletion\",i,e,r)),e});function O(i,n,t){const r=n.state.kind===\"Invalid\"?n.state.prevState:n.state,{kind:e,step:a}=r;if(e===\"Document\"&&a===0)return u(i,n,[{text:\"{\"}]);const{variableToType:s}=t;if(!s)return;const c=k(s,n.state);if(e===\"Document\"||e===\"Variable\"&&a===0){const o=Object.keys(s);return u(i,n,o.map(l=>({text:`\"${l}\": `,type:s[l]})))}if((e===\"ObjectValue\"||e===\"ObjectField\"&&a===0)&&c.fields){const o=Object.keys(c.fields).map(l=>c.fields[l]);return u(i,n,o.map(l=>({text:`\"${l.name}\": `,type:l.type,description:l.description})))}if(e===\"StringValue\"||e===\"NumberValue\"||e===\"BooleanValue\"||e===\"NullValue\"||e===\"ListValue\"&&a===1||e===\"ObjectField\"&&a===2||e===\"Variable\"&&a===2){const o=c.type?h(c.type):void 0;if(o instanceof b)return u(i,n,[{text:\"{\"}]);if(o instanceof T){const l=o.getValues();return u(i,n,l.map(g=>({text:`\"${g.name}\"`,type:o,description:g.description})))}if(o===d)return u(i,n,[{text:\"true\",type:d,description:\"Not false.\"},{text:\"false\",type:d,description:\"Not true.\"}])}}p(O,\"getVariablesHint\");function k(i,n){const t={type:null,fields:null};return L(n,r=>{switch(r.kind){case\"Variable\":{t.type=i[r.name];break}case\"ListValue\":{const e=t.type?j(t.type):void 0;t.type=e instanceof D?e.ofType:null;break}case\"ObjectValue\":{const e=t.type?h(t.type):void 0;t.fields=e instanceof b?e.getFields():null;break}case\"ObjectField\":{const e=r.name&&t.fields?t.fields[r.name]:null;t.type=e==null?void 0:e.type;break}}}),t}p(k,\"getTypeInfo\");\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/index-27dc12ba.js",
    "content": "function G2(e,t){for(var n=0;n<t.length;n++){const r=t[n];if(typeof r!=\"string\"&&!Array.isArray(r)){for(const o in r)if(o!==\"default\"&&!(o in e)){const i=Object.getOwnPropertyDescriptor(r,o);i&&Object.defineProperty(e,o,i.get?i:{enumerable:!0,get:()=>r[o]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}))}(function(){const t=document.createElement(\"link\").relList;if(t&&t.supports&&t.supports(\"modulepreload\"))return;for(const o of document.querySelectorAll('link[rel=\"modulepreload\"]'))r(o);new MutationObserver(o=>{for(const i of o)if(i.type===\"childList\")for(const s of i.addedNodes)s.tagName===\"LINK\"&&s.rel===\"modulepreload\"&&r(s)}).observe(document,{childList:!0,subtree:!0});function n(o){const i={};return o.integrity&&(i.integrity=o.integrity),o.referrerPolicy&&(i.referrerPolicy=o.referrerPolicy),o.crossOrigin===\"use-credentials\"?i.credentials=\"include\":o.crossOrigin===\"anonymous\"?i.credentials=\"omit\":i.credentials=\"same-origin\",i}function r(o){if(o.ep)return;o.ep=!0;const i=n(o);fetch(o.href,i)}})();function Wi(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,\"default\")?e.default:e}function W2(e){if(e.__esModule)return e;var t=e.default;if(typeof t==\"function\"){var n=function r(){return this instanceof r?Reflect.construct(t,arguments,this.constructor):t.apply(this,arguments)};n.prototype=t.prototype}else n={};return Object.defineProperty(n,\"__esModule\",{value:!0}),Object.keys(e).forEach(function(r){var o=Object.getOwnPropertyDescriptor(e,r);Object.defineProperty(n,r,o.get?o:{enumerable:!0,get:function(){return e[r]}})}),n}var _b={exports:{}},Su={},Sb={exports:{}},ue={};/**\n * @license React\n * react.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var Oa=Symbol.for(\"react.element\"),Q2=Symbol.for(\"react.portal\"),Y2=Symbol.for(\"react.fragment\"),Z2=Symbol.for(\"react.strict_mode\"),X2=Symbol.for(\"react.profiler\"),J2=Symbol.for(\"react.provider\"),K2=Symbol.for(\"react.context\"),ek=Symbol.for(\"react.forward_ref\"),tk=Symbol.for(\"react.suspense\"),nk=Symbol.for(\"react.memo\"),rk=Symbol.for(\"react.lazy\"),x0=Symbol.iterator;function ok(e){return e===null||typeof e!=\"object\"?null:(e=x0&&e[x0]||e[\"@@iterator\"],typeof e==\"function\"?e:null)}var Cb={isMounted:function(){return!1},enqueueForceUpdate:function(){},enqueueReplaceState:function(){},enqueueSetState:function(){}},Tb=Object.assign,kb={};function Qi(e,t,n){this.props=e,this.context=t,this.refs=kb,this.updater=n||Cb}Qi.prototype.isReactComponent={};Qi.prototype.setState=function(e,t){if(typeof e!=\"object\"&&typeof e!=\"function\"&&e!=null)throw Error(\"setState(...): takes an object of state variables to update or a function which returns an object of state variables.\");this.updater.enqueueSetState(this,e,t,\"setState\")};Qi.prototype.forceUpdate=function(e){this.updater.enqueueForceUpdate(this,e,\"forceUpdate\")};function Nb(){}Nb.prototype=Qi.prototype;function Kh(e,t,n){this.props=e,this.context=t,this.refs=kb,this.updater=n||Cb}var em=Kh.prototype=new Nb;em.constructor=Kh;Tb(em,Qi.prototype);em.isPureReactComponent=!0;var w0=Array.isArray,Ab=Object.prototype.hasOwnProperty,tm={current:null},Db={key:!0,ref:!0,__self:!0,__source:!0};function Ib(e,t,n){var r,o={},i=null,s=null;if(t!=null)for(r in t.ref!==void 0&&(s=t.ref),t.key!==void 0&&(i=\"\"+t.key),t)Ab.call(t,r)&&!Db.hasOwnProperty(r)&&(o[r]=t[r]);var a=arguments.length-2;if(a===1)o.children=n;else if(1<a){for(var l=Array(a),c=0;c<a;c++)l[c]=arguments[c+2];o.children=l}if(e&&e.defaultProps)for(r in a=e.defaultProps,a)o[r]===void 0&&(o[r]=a[r]);return{$$typeof:Oa,type:e,key:i,ref:s,props:o,_owner:tm.current}}function ik(e,t){return{$$typeof:Oa,type:e.type,key:t,ref:e.ref,props:e.props,_owner:e._owner}}function nm(e){return typeof e==\"object\"&&e!==null&&e.$$typeof===Oa}function sk(e){var t={\"=\":\"=0\",\":\":\"=2\"};return\"$\"+e.replace(/[=:]/g,function(n){return t[n]})}var _0=/\\/+/g;function Af(e,t){return typeof e==\"object\"&&e!==null&&e.key!=null?sk(\"\"+e.key):t.toString(36)}function Yl(e,t,n,r,o){var i=typeof e;(i===\"undefined\"||i===\"boolean\")&&(e=null);var s=!1;if(e===null)s=!0;else switch(i){case\"string\":case\"number\":s=!0;break;case\"object\":switch(e.$$typeof){case Oa:case Q2:s=!0}}if(s)return s=e,o=o(s),e=r===\"\"?\".\"+Af(s,0):r,w0(o)?(n=\"\",e!=null&&(n=e.replace(_0,\"$&/\")+\"/\"),Yl(o,t,n,\"\",function(c){return c})):o!=null&&(nm(o)&&(o=ik(o,n+(!o.key||s&&s.key===o.key?\"\":(\"\"+o.key).replace(_0,\"$&/\")+\"/\")+e)),t.push(o)),1;if(s=0,r=r===\"\"?\".\":r+\":\",w0(e))for(var a=0;a<e.length;a++){i=e[a];var l=r+Af(i,a);s+=Yl(i,t,n,l,o)}else if(l=ok(e),typeof l==\"function\")for(e=l.call(e),a=0;!(i=e.next()).done;)i=i.value,l=r+Af(i,a++),s+=Yl(i,t,n,l,o);else if(i===\"object\")throw t=String(e),Error(\"Objects are not valid as a React child (found: \"+(t===\"[object Object]\"?\"object with keys {\"+Object.keys(e).join(\", \")+\"}\":t)+\"). If you meant to render a collection of children, use an array instead.\");return s}function il(e,t,n){if(e==null)return e;var r=[],o=0;return Yl(e,r,\"\",\"\",function(i){return t.call(n,i,o++)}),r}function ak(e){if(e._status===-1){var t=e._result;t=t(),t.then(function(n){(e._status===0||e._status===-1)&&(e._status=1,e._result=n)},function(n){(e._status===0||e._status===-1)&&(e._status=2,e._result=n)}),e._status===-1&&(e._status=0,e._result=t)}if(e._status===1)return e._result.default;throw e._result}var _t={current:null},Zl={transition:null},lk={ReactCurrentDispatcher:_t,ReactCurrentBatchConfig:Zl,ReactCurrentOwner:tm};ue.Children={map:il,forEach:function(e,t,n){il(e,function(){t.apply(this,arguments)},n)},count:function(e){var t=0;return il(e,function(){t++}),t},toArray:function(e){return il(e,function(t){return t})||[]},only:function(e){if(!nm(e))throw Error(\"React.Children.only expected to receive a single React element child.\");return e}};ue.Component=Qi;ue.Fragment=Y2;ue.Profiler=X2;ue.PureComponent=Kh;ue.StrictMode=Z2;ue.Suspense=tk;ue.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=lk;ue.cloneElement=function(e,t,n){if(e==null)throw Error(\"React.cloneElement(...): The argument must be a React element, but you passed \"+e+\".\");var r=Tb({},e.props),o=e.key,i=e.ref,s=e._owner;if(t!=null){if(t.ref!==void 0&&(i=t.ref,s=tm.current),t.key!==void 0&&(o=\"\"+t.key),e.type&&e.type.defaultProps)var a=e.type.defaultProps;for(l in t)Ab.call(t,l)&&!Db.hasOwnProperty(l)&&(r[l]=t[l]===void 0&&a!==void 0?a[l]:t[l])}var l=arguments.length-2;if(l===1)r.children=n;else if(1<l){a=Array(l);for(var c=0;c<l;c++)a[c]=arguments[c+2];r.children=a}return{$$typeof:Oa,type:e.type,key:o,ref:i,props:r,_owner:s}};ue.createContext=function(e){return e={$$typeof:K2,_currentValue:e,_currentValue2:e,_threadCount:0,Provider:null,Consumer:null,_defaultValue:null,_globalName:null},e.Provider={$$typeof:J2,_context:e},e.Consumer=e};ue.createElement=Ib;ue.createFactory=function(e){var t=Ib.bind(null,e);return t.type=e,t};ue.createRef=function(){return{current:null}};ue.forwardRef=function(e){return{$$typeof:ek,render:e}};ue.isValidElement=nm;ue.lazy=function(e){return{$$typeof:rk,_payload:{_status:-1,_result:e},_init:ak}};ue.memo=function(e,t){return{$$typeof:nk,type:e,compare:t===void 0?null:t}};ue.startTransition=function(e){var t=Zl.transition;Zl.transition={};try{e()}finally{Zl.transition=t}};ue.unstable_act=function(){throw Error(\"act(...) is not supported in production builds of React.\")};ue.useCallback=function(e,t){return _t.current.useCallback(e,t)};ue.useContext=function(e){return _t.current.useContext(e)};ue.useDebugValue=function(){};ue.useDeferredValue=function(e){return _t.current.useDeferredValue(e)};ue.useEffect=function(e,t){return _t.current.useEffect(e,t)};ue.useId=function(){return _t.current.useId()};ue.useImperativeHandle=function(e,t,n){return _t.current.useImperativeHandle(e,t,n)};ue.useInsertionEffect=function(e,t){return _t.current.useInsertionEffect(e,t)};ue.useLayoutEffect=function(e,t){return _t.current.useLayoutEffect(e,t)};ue.useMemo=function(e,t){return _t.current.useMemo(e,t)};ue.useReducer=function(e,t,n){return _t.current.useReducer(e,t,n)};ue.useRef=function(e){return _t.current.useRef(e)};ue.useState=function(e){return _t.current.useState(e)};ue.useSyncExternalStore=function(e,t,n){return _t.current.useSyncExternalStore(e,t,n)};ue.useTransition=function(){return _t.current.useTransition()};ue.version=\"18.2.0\";Sb.exports=ue;var h=Sb.exports;const $=Wi(h),Wd=G2({__proto__:null,default:$},[h]);/**\n * @license React\n * react-jsx-runtime.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var ck=h,uk=Symbol.for(\"react.element\"),fk=Symbol.for(\"react.fragment\"),dk=Object.prototype.hasOwnProperty,pk=ck.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,hk={key:!0,ref:!0,__self:!0,__source:!0};function Rb(e,t,n){var r,o={},i=null,s=null;n!==void 0&&(i=\"\"+n),t.key!==void 0&&(i=\"\"+t.key),t.ref!==void 0&&(s=t.ref);for(r in t)dk.call(t,r)&&!hk.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps,t)o[r]===void 0&&(o[r]=t[r]);return{$$typeof:uk,type:e,key:i,ref:s,props:o,_owner:pk.current}}Su.Fragment=fk;Su.jsx=Rb;Su.jsxs=Rb;_b.exports=Su;var _=_b.exports,Qd={},Lb={exports:{}},Ht={},Ob={exports:{}},Pb={};/**\n * @license React\n * scheduler.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */(function(e){function t(D,P){var U=D.length;D.push(P);e:for(;0<U;){var Z=U-1>>>1,ee=D[Z];if(0<o(ee,P))D[Z]=P,D[U]=ee,U=Z;else break e}}function n(D){return D.length===0?null:D[0]}function r(D){if(D.length===0)return null;var P=D[0],U=D.pop();if(U!==P){D[0]=U;e:for(var Z=0,ee=D.length,te=ee>>>1;Z<te;){var j=2*(Z+1)-1,z=D[j],Y=j+1,be=D[Y];if(0>o(z,U))Y<ee&&0>o(be,z)?(D[Z]=be,D[Y]=U,Z=Y):(D[Z]=z,D[j]=U,Z=j);else if(Y<ee&&0>o(be,U))D[Z]=be,D[Y]=U,Z=Y;else break e}}return P}function o(D,P){var U=D.sortIndex-P.sortIndex;return U!==0?U:D.id-P.id}if(typeof performance==\"object\"&&typeof performance.now==\"function\"){var i=performance;e.unstable_now=function(){return i.now()}}else{var s=Date,a=s.now();e.unstable_now=function(){return s.now()-a}}var l=[],c=[],u=1,d=null,p=3,f=!1,m=!1,v=!1,b=typeof setTimeout==\"function\"?setTimeout:null,y=typeof clearTimeout==\"function\"?clearTimeout:null,g=typeof setImmediate<\"u\"?setImmediate:null;typeof navigator<\"u\"&&navigator.scheduling!==void 0&&navigator.scheduling.isInputPending!==void 0&&navigator.scheduling.isInputPending.bind(navigator.scheduling);function E(D){for(var P=n(c);P!==null;){if(P.callback===null)r(c);else if(P.startTime<=D)r(c),P.sortIndex=P.expirationTime,t(l,P);else break;P=n(c)}}function x(D){if(v=!1,E(D),!m)if(n(l)!==null)m=!0,R(w);else{var P=n(c);P!==null&&I(x,P.startTime-D)}}function w(D,P){m=!1,v&&(v=!1,y(A),A=-1),f=!0;var U=p;try{for(E(P),d=n(l);d!==null&&(!(d.expirationTime>P)||D&&!q());){var Z=d.callback;if(typeof Z==\"function\"){d.callback=null,p=d.priorityLevel;var ee=Z(d.expirationTime<=P);P=e.unstable_now(),typeof ee==\"function\"?d.callback=ee:d===n(l)&&r(l),E(P)}else r(l);d=n(l)}if(d!==null)var te=!0;else{var j=n(c);j!==null&&I(x,j.startTime-P),te=!1}return te}finally{d=null,p=U,f=!1}}var C=!1,T=null,A=-1,S=5,k=-1;function q(){return!(e.unstable_now()-k<S)}function H(){if(T!==null){var D=e.unstable_now();k=D;var P=!0;try{P=T(!0,D)}finally{P?V():(C=!1,T=null)}}else C=!1}var V;if(typeof g==\"function\")V=function(){g(H)};else if(typeof MessageChannel<\"u\"){var N=new MessageChannel,M=N.port2;N.port1.onmessage=H,V=function(){M.postMessage(null)}}else V=function(){b(H,0)};function R(D){T=D,C||(C=!0,V())}function I(D,P){A=b(function(){D(e.unstable_now())},P)}e.unstable_IdlePriority=5,e.unstable_ImmediatePriority=1,e.unstable_LowPriority=4,e.unstable_NormalPriority=3,e.unstable_Profiling=null,e.unstable_UserBlockingPriority=2,e.unstable_cancelCallback=function(D){D.callback=null},e.unstable_continueExecution=function(){m||f||(m=!0,R(w))},e.unstable_forceFrameRate=function(D){0>D||125<D?console.error(\"forceFrameRate takes a positive int between 0 and 125, forcing frame rates higher than 125 fps is not supported\"):S=0<D?Math.floor(1e3/D):5},e.unstable_getCurrentPriorityLevel=function(){return p},e.unstable_getFirstCallbackNode=function(){return n(l)},e.unstable_next=function(D){switch(p){case 1:case 2:case 3:var P=3;break;default:P=p}var U=p;p=P;try{return D()}finally{p=U}},e.unstable_pauseExecution=function(){},e.unstable_requestPaint=function(){},e.unstable_runWithPriority=function(D,P){switch(D){case 1:case 2:case 3:case 4:case 5:break;default:D=3}var U=p;p=D;try{return P()}finally{p=U}},e.unstable_scheduleCallback=function(D,P,U){var Z=e.unstable_now();switch(typeof U==\"object\"&&U!==null?(U=U.delay,U=typeof U==\"number\"&&0<U?Z+U:Z):U=Z,D){case 1:var ee=-1;break;case 2:ee=250;break;case 5:ee=1073741823;break;case 4:ee=1e4;break;default:ee=5e3}return ee=U+ee,D={id:u++,callback:P,priorityLevel:D,startTime:U,expirationTime:ee,sortIndex:-1},U>Z?(D.sortIndex=U,t(c,D),n(l)===null&&D===n(c)&&(v?(y(A),A=-1):v=!0,I(x,U-Z))):(D.sortIndex=ee,t(l,D),m||f||(m=!0,R(w))),D},e.unstable_shouldYield=q,e.unstable_wrapCallback=function(D){var P=p;return function(){var U=p;p=P;try{return D.apply(this,arguments)}finally{p=U}}}})(Pb);Ob.exports=Pb;var mk=Ob.exports;/**\n * @license React\n * react-dom.production.min.js\n *\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */var $b=h,qt=mk;function W(e){for(var t=\"https://reactjs.org/docs/error-decoder.html?invariant=\"+e,n=1;n<arguments.length;n++)t+=\"&args[]=\"+encodeURIComponent(arguments[n]);return\"Minified React error #\"+e+\"; visit \"+t+\" for the full message or use the non-minified dev environment for full errors and additional helpful warnings.\"}var Fb=new Set,Gs={};function Vo(e,t){Li(e,t),Li(e+\"Capture\",t)}function Li(e,t){for(Gs[e]=t,e=0;e<t.length;e++)Fb.add(t[e])}var rr=!(typeof window>\"u\"||typeof window.document>\"u\"||typeof window.document.createElement>\"u\"),Yd=Object.prototype.hasOwnProperty,vk=/^[:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD][:A-Z_a-z\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u02FF\\u0370-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD\\-.0-9\\u00B7\\u0300-\\u036F\\u203F-\\u2040]*$/,S0={},C0={};function gk(e){return Yd.call(C0,e)?!0:Yd.call(S0,e)?!1:vk.test(e)?C0[e]=!0:(S0[e]=!0,!1)}function yk(e,t,n,r){if(n!==null&&n.type===0)return!1;switch(typeof t){case\"function\":case\"symbol\":return!0;case\"boolean\":return r?!1:n!==null?!n.acceptsBooleans:(e=e.toLowerCase().slice(0,5),e!==\"data-\"&&e!==\"aria-\");default:return!1}}function Ek(e,t,n,r){if(t===null||typeof t>\"u\"||yk(e,t,n,r))return!0;if(r)return!1;if(n!==null)switch(n.type){case 3:return!t;case 4:return t===!1;case 5:return isNaN(t);case 6:return isNaN(t)||1>t}return!1}function St(e,t,n,r,o,i,s){this.acceptsBooleans=t===2||t===3||t===4,this.attributeName=r,this.attributeNamespace=o,this.mustUseProperty=n,this.propertyName=e,this.type=t,this.sanitizeURL=i,this.removeEmptyString=s}var st={};\"children dangerouslySetInnerHTML defaultValue defaultChecked innerHTML suppressContentEditableWarning suppressHydrationWarning style\".split(\" \").forEach(function(e){st[e]=new St(e,0,!1,e,null,!1,!1)});[[\"acceptCharset\",\"accept-charset\"],[\"className\",\"class\"],[\"htmlFor\",\"for\"],[\"httpEquiv\",\"http-equiv\"]].forEach(function(e){var t=e[0];st[t]=new St(t,1,!1,e[1],null,!1,!1)});[\"contentEditable\",\"draggable\",\"spellCheck\",\"value\"].forEach(function(e){st[e]=new St(e,2,!1,e.toLowerCase(),null,!1,!1)});[\"autoReverse\",\"externalResourcesRequired\",\"focusable\",\"preserveAlpha\"].forEach(function(e){st[e]=new St(e,2,!1,e,null,!1,!1)});\"allowFullScreen async autoFocus autoPlay controls default defer disabled disablePictureInPicture disableRemotePlayback formNoValidate hidden loop noModule noValidate open playsInline readOnly required reversed scoped seamless itemScope\".split(\" \").forEach(function(e){st[e]=new St(e,3,!1,e.toLowerCase(),null,!1,!1)});[\"checked\",\"multiple\",\"muted\",\"selected\"].forEach(function(e){st[e]=new St(e,3,!0,e,null,!1,!1)});[\"capture\",\"download\"].forEach(function(e){st[e]=new St(e,4,!1,e,null,!1,!1)});[\"cols\",\"rows\",\"size\",\"span\"].forEach(function(e){st[e]=new St(e,6,!1,e,null,!1,!1)});[\"rowSpan\",\"start\"].forEach(function(e){st[e]=new St(e,5,!1,e.toLowerCase(),null,!1,!1)});var rm=/[\\-:]([a-z])/g;function om(e){return e[1].toUpperCase()}\"accent-height alignment-baseline arabic-form baseline-shift cap-height clip-path clip-rule color-interpolation color-interpolation-filters color-profile color-rendering dominant-baseline enable-background fill-opacity fill-rule flood-color flood-opacity font-family font-size font-size-adjust font-stretch font-style font-variant font-weight glyph-name glyph-orientation-horizontal glyph-orientation-vertical horiz-adv-x horiz-origin-x image-rendering letter-spacing lighting-color marker-end marker-mid marker-start overline-position overline-thickness paint-order panose-1 pointer-events rendering-intent shape-rendering stop-color stop-opacity strikethrough-position strikethrough-thickness stroke-dasharray stroke-dashoffset stroke-linecap stroke-linejoin stroke-miterlimit stroke-opacity stroke-width text-anchor text-decoration text-rendering underline-position underline-thickness unicode-bidi unicode-range units-per-em v-alphabetic v-hanging v-ideographic v-mathematical vector-effect vert-adv-y vert-origin-x vert-origin-y word-spacing writing-mode xmlns:xlink x-height\".split(\" \").forEach(function(e){var t=e.replace(rm,om);st[t]=new St(t,1,!1,e,null,!1,!1)});\"xlink:actuate xlink:arcrole xlink:role xlink:show xlink:title xlink:type\".split(\" \").forEach(function(e){var t=e.replace(rm,om);st[t]=new St(t,1,!1,e,\"http://www.w3.org/1999/xlink\",!1,!1)});[\"xml:base\",\"xml:lang\",\"xml:space\"].forEach(function(e){var t=e.replace(rm,om);st[t]=new St(t,1,!1,e,\"http://www.w3.org/XML/1998/namespace\",!1,!1)});[\"tabIndex\",\"crossOrigin\"].forEach(function(e){st[e]=new St(e,1,!1,e.toLowerCase(),null,!1,!1)});st.xlinkHref=new St(\"xlinkHref\",1,!1,\"xlink:href\",\"http://www.w3.org/1999/xlink\",!0,!1);[\"src\",\"href\",\"action\",\"formAction\"].forEach(function(e){st[e]=new St(e,1,!1,e.toLowerCase(),null,!0,!0)});function im(e,t,n,r){var o=st.hasOwnProperty(t)?st[t]:null;(o!==null?o.type!==0:r||!(2<t.length)||t[0]!==\"o\"&&t[0]!==\"O\"||t[1]!==\"n\"&&t[1]!==\"N\")&&(Ek(t,n,o,r)&&(n=null),r||o===null?gk(t)&&(n===null?e.removeAttribute(t):e.setAttribute(t,\"\"+n)):o.mustUseProperty?e[o.propertyName]=n===null?o.type===3?!1:\"\":n:(t=o.attributeName,r=o.attributeNamespace,n===null?e.removeAttribute(t):(o=o.type,n=o===3||o===4&&n===!0?\"\":\"\"+n,r?e.setAttributeNS(r,t,n):e.setAttribute(t,n))))}var pr=$b.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED,sl=Symbol.for(\"react.element\"),ri=Symbol.for(\"react.portal\"),oi=Symbol.for(\"react.fragment\"),sm=Symbol.for(\"react.strict_mode\"),Zd=Symbol.for(\"react.profiler\"),Mb=Symbol.for(\"react.provider\"),Vb=Symbol.for(\"react.context\"),am=Symbol.for(\"react.forward_ref\"),Xd=Symbol.for(\"react.suspense\"),Jd=Symbol.for(\"react.suspense_list\"),lm=Symbol.for(\"react.memo\"),Er=Symbol.for(\"react.lazy\"),jb=Symbol.for(\"react.offscreen\"),T0=Symbol.iterator;function cs(e){return e===null||typeof e!=\"object\"?null:(e=T0&&e[T0]||e[\"@@iterator\"],typeof e==\"function\"?e:null)}var $e=Object.assign,Df;function bs(e){if(Df===void 0)try{throw Error()}catch(n){var t=n.stack.trim().match(/\\n( *(at )?)/);Df=t&&t[1]||\"\"}return`\n`+Df+e}var If=!1;function Rf(e,t){if(!e||If)return\"\";If=!0;var n=Error.prepareStackTrace;Error.prepareStackTrace=void 0;try{if(t)if(t=function(){throw Error()},Object.defineProperty(t.prototype,\"props\",{set:function(){throw Error()}}),typeof Reflect==\"object\"&&Reflect.construct){try{Reflect.construct(t,[])}catch(c){var r=c}Reflect.construct(e,[],t)}else{try{t.call()}catch(c){r=c}e.call(t.prototype)}else{try{throw Error()}catch(c){r=c}e()}}catch(c){if(c&&r&&typeof c.stack==\"string\"){for(var o=c.stack.split(`\n`),i=r.stack.split(`\n`),s=o.length-1,a=i.length-1;1<=s&&0<=a&&o[s]!==i[a];)a--;for(;1<=s&&0<=a;s--,a--)if(o[s]!==i[a]){if(s!==1||a!==1)do if(s--,a--,0>a||o[s]!==i[a]){var l=`\n`+o[s].replace(\" at new \",\" at \");return e.displayName&&l.includes(\"<anonymous>\")&&(l=l.replace(\"<anonymous>\",e.displayName)),l}while(1<=s&&0<=a);break}}}finally{If=!1,Error.prepareStackTrace=n}return(e=e?e.displayName||e.name:\"\")?bs(e):\"\"}function bk(e){switch(e.tag){case 5:return bs(e.type);case 16:return bs(\"Lazy\");case 13:return bs(\"Suspense\");case 19:return bs(\"SuspenseList\");case 0:case 2:case 15:return e=Rf(e.type,!1),e;case 11:return e=Rf(e.type.render,!1),e;case 1:return e=Rf(e.type,!0),e;default:return\"\"}}function Kd(e){if(e==null)return null;if(typeof e==\"function\")return e.displayName||e.name||null;if(typeof e==\"string\")return e;switch(e){case oi:return\"Fragment\";case ri:return\"Portal\";case Zd:return\"Profiler\";case sm:return\"StrictMode\";case Xd:return\"Suspense\";case Jd:return\"SuspenseList\"}if(typeof e==\"object\")switch(e.$$typeof){case Vb:return(e.displayName||\"Context\")+\".Consumer\";case Mb:return(e._context.displayName||\"Context\")+\".Provider\";case am:var t=e.render;return e=e.displayName,e||(e=t.displayName||t.name||\"\",e=e!==\"\"?\"ForwardRef(\"+e+\")\":\"ForwardRef\"),e;case lm:return t=e.displayName||null,t!==null?t:Kd(e.type)||\"Memo\";case Er:t=e._payload,e=e._init;try{return Kd(e(t))}catch{}}return null}function xk(e){var t=e.type;switch(e.tag){case 24:return\"Cache\";case 9:return(t.displayName||\"Context\")+\".Consumer\";case 10:return(t._context.displayName||\"Context\")+\".Provider\";case 18:return\"DehydratedFragment\";case 11:return e=t.render,e=e.displayName||e.name||\"\",t.displayName||(e!==\"\"?\"ForwardRef(\"+e+\")\":\"ForwardRef\");case 7:return\"Fragment\";case 5:return t;case 4:return\"Portal\";case 3:return\"Root\";case 6:return\"Text\";case 16:return Kd(t);case 8:return t===sm?\"StrictMode\":\"Mode\";case 22:return\"Offscreen\";case 12:return\"Profiler\";case 21:return\"Scope\";case 13:return\"Suspense\";case 19:return\"SuspenseList\";case 25:return\"TracingMarker\";case 1:case 0:case 17:case 2:case 14:case 15:if(typeof t==\"function\")return t.displayName||t.name||null;if(typeof t==\"string\")return t}return null}function Ur(e){switch(typeof e){case\"boolean\":case\"number\":case\"string\":case\"undefined\":return e;case\"object\":return e;default:return\"\"}}function qb(e){var t=e.type;return(e=e.nodeName)&&e.toLowerCase()===\"input\"&&(t===\"checkbox\"||t===\"radio\")}function wk(e){var t=qb(e)?\"checked\":\"value\",n=Object.getOwnPropertyDescriptor(e.constructor.prototype,t),r=\"\"+e[t];if(!e.hasOwnProperty(t)&&typeof n<\"u\"&&typeof n.get==\"function\"&&typeof n.set==\"function\"){var o=n.get,i=n.set;return Object.defineProperty(e,t,{configurable:!0,get:function(){return o.call(this)},set:function(s){r=\"\"+s,i.call(this,s)}}),Object.defineProperty(e,t,{enumerable:n.enumerable}),{getValue:function(){return r},setValue:function(s){r=\"\"+s},stopTracking:function(){e._valueTracker=null,delete e[t]}}}}function al(e){e._valueTracker||(e._valueTracker=wk(e))}function Ub(e){if(!e)return!1;var t=e._valueTracker;if(!t)return!0;var n=t.getValue(),r=\"\";return e&&(r=qb(e)?e.checked?\"true\":\"false\":e.value),e=r,e!==n?(t.setValue(e),!0):!1}function bc(e){if(e=e||(typeof document<\"u\"?document:void 0),typeof e>\"u\")return null;try{return e.activeElement||e.body}catch{return e.body}}function ep(e,t){var n=t.checked;return $e({},t,{defaultChecked:void 0,defaultValue:void 0,value:void 0,checked:n??e._wrapperState.initialChecked})}function k0(e,t){var n=t.defaultValue==null?\"\":t.defaultValue,r=t.checked!=null?t.checked:t.defaultChecked;n=Ur(t.value!=null?t.value:n),e._wrapperState={initialChecked:r,initialValue:n,controlled:t.type===\"checkbox\"||t.type===\"radio\"?t.checked!=null:t.value!=null}}function Bb(e,t){t=t.checked,t!=null&&im(e,\"checked\",t,!1)}function tp(e,t){Bb(e,t);var n=Ur(t.value),r=t.type;if(n!=null)r===\"number\"?(n===0&&e.value===\"\"||e.value!=n)&&(e.value=\"\"+n):e.value!==\"\"+n&&(e.value=\"\"+n);else if(r===\"submit\"||r===\"reset\"){e.removeAttribute(\"value\");return}t.hasOwnProperty(\"value\")?np(e,t.type,n):t.hasOwnProperty(\"defaultValue\")&&np(e,t.type,Ur(t.defaultValue)),t.checked==null&&t.defaultChecked!=null&&(e.defaultChecked=!!t.defaultChecked)}function N0(e,t,n){if(t.hasOwnProperty(\"value\")||t.hasOwnProperty(\"defaultValue\")){var r=t.type;if(!(r!==\"submit\"&&r!==\"reset\"||t.value!==void 0&&t.value!==null))return;t=\"\"+e._wrapperState.initialValue,n||t===e.value||(e.value=t),e.defaultValue=t}n=e.name,n!==\"\"&&(e.name=\"\"),e.defaultChecked=!!e._wrapperState.initialChecked,n!==\"\"&&(e.name=n)}function np(e,t,n){(t!==\"number\"||bc(e.ownerDocument)!==e)&&(n==null?e.defaultValue=\"\"+e._wrapperState.initialValue:e.defaultValue!==\"\"+n&&(e.defaultValue=\"\"+n))}var xs=Array.isArray;function bi(e,t,n,r){if(e=e.options,t){t={};for(var o=0;o<n.length;o++)t[\"$\"+n[o]]=!0;for(n=0;n<e.length;n++)o=t.hasOwnProperty(\"$\"+e[n].value),e[n].selected!==o&&(e[n].selected=o),o&&r&&(e[n].defaultSelected=!0)}else{for(n=\"\"+Ur(n),t=null,o=0;o<e.length;o++){if(e[o].value===n){e[o].selected=!0,r&&(e[o].defaultSelected=!0);return}t!==null||e[o].disabled||(t=e[o])}t!==null&&(t.selected=!0)}}function rp(e,t){if(t.dangerouslySetInnerHTML!=null)throw Error(W(91));return $e({},t,{value:void 0,defaultValue:void 0,children:\"\"+e._wrapperState.initialValue})}function A0(e,t){var n=t.value;if(n==null){if(n=t.children,t=t.defaultValue,n!=null){if(t!=null)throw Error(W(92));if(xs(n)){if(1<n.length)throw Error(W(93));n=n[0]}t=n}t==null&&(t=\"\"),n=t}e._wrapperState={initialValue:Ur(n)}}function zb(e,t){var n=Ur(t.value),r=Ur(t.defaultValue);n!=null&&(n=\"\"+n,n!==e.value&&(e.value=n),t.defaultValue==null&&e.defaultValue!==n&&(e.defaultValue=n)),r!=null&&(e.defaultValue=\"\"+r)}function D0(e){var t=e.textContent;t===e._wrapperState.initialValue&&t!==\"\"&&t!==null&&(e.value=t)}function Hb(e){switch(e){case\"svg\":return\"http://www.w3.org/2000/svg\";case\"math\":return\"http://www.w3.org/1998/Math/MathML\";default:return\"http://www.w3.org/1999/xhtml\"}}function op(e,t){return e==null||e===\"http://www.w3.org/1999/xhtml\"?Hb(t):e===\"http://www.w3.org/2000/svg\"&&t===\"foreignObject\"?\"http://www.w3.org/1999/xhtml\":e}var ll,Gb=function(e){return typeof MSApp<\"u\"&&MSApp.execUnsafeLocalFunction?function(t,n,r,o){MSApp.execUnsafeLocalFunction(function(){return e(t,n,r,o)})}:e}(function(e,t){if(e.namespaceURI!==\"http://www.w3.org/2000/svg\"||\"innerHTML\"in e)e.innerHTML=t;else{for(ll=ll||document.createElement(\"div\"),ll.innerHTML=\"<svg>\"+t.valueOf().toString()+\"</svg>\",t=ll.firstChild;e.firstChild;)e.removeChild(e.firstChild);for(;t.firstChild;)e.appendChild(t.firstChild)}});function Ws(e,t){if(t){var n=e.firstChild;if(n&&n===e.lastChild&&n.nodeType===3){n.nodeValue=t;return}}e.textContent=t}var Ns={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,columns:!0,flex:!0,flexGrow:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,flexOrder:!0,gridArea:!0,gridRow:!0,gridRowEnd:!0,gridRowSpan:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnSpan:!0,gridColumnStart:!0,fontWeight:!0,lineClamp:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},_k=[\"Webkit\",\"ms\",\"Moz\",\"O\"];Object.keys(Ns).forEach(function(e){_k.forEach(function(t){t=t+e.charAt(0).toUpperCase()+e.substring(1),Ns[t]=Ns[e]})});function Wb(e,t,n){return t==null||typeof t==\"boolean\"||t===\"\"?\"\":n||typeof t!=\"number\"||t===0||Ns.hasOwnProperty(e)&&Ns[e]?(\"\"+t).trim():t+\"px\"}function Qb(e,t){e=e.style;for(var n in t)if(t.hasOwnProperty(n)){var r=n.indexOf(\"--\")===0,o=Wb(n,t[n],r);n===\"float\"&&(n=\"cssFloat\"),r?e.setProperty(n,o):e[n]=o}}var Sk=$e({menuitem:!0},{area:!0,base:!0,br:!0,col:!0,embed:!0,hr:!0,img:!0,input:!0,keygen:!0,link:!0,meta:!0,param:!0,source:!0,track:!0,wbr:!0});function ip(e,t){if(t){if(Sk[e]&&(t.children!=null||t.dangerouslySetInnerHTML!=null))throw Error(W(137,e));if(t.dangerouslySetInnerHTML!=null){if(t.children!=null)throw Error(W(60));if(typeof t.dangerouslySetInnerHTML!=\"object\"||!(\"__html\"in t.dangerouslySetInnerHTML))throw Error(W(61))}if(t.style!=null&&typeof t.style!=\"object\")throw Error(W(62))}}function sp(e,t){if(e.indexOf(\"-\")===-1)return typeof t.is==\"string\";switch(e){case\"annotation-xml\":case\"color-profile\":case\"font-face\":case\"font-face-src\":case\"font-face-uri\":case\"font-face-format\":case\"font-face-name\":case\"missing-glyph\":return!1;default:return!0}}var ap=null;function cm(e){return e=e.target||e.srcElement||window,e.correspondingUseElement&&(e=e.correspondingUseElement),e.nodeType===3?e.parentNode:e}var lp=null,xi=null,wi=null;function I0(e){if(e=Fa(e)){if(typeof lp!=\"function\")throw Error(W(280));var t=e.stateNode;t&&(t=Au(t),lp(e.stateNode,e.type,t))}}function Yb(e){xi?wi?wi.push(e):wi=[e]:xi=e}function Zb(){if(xi){var e=xi,t=wi;if(wi=xi=null,I0(e),t)for(e=0;e<t.length;e++)I0(t[e])}}function Xb(e,t){return e(t)}function Jb(){}var Lf=!1;function Kb(e,t,n){if(Lf)return e(t,n);Lf=!0;try{return Xb(e,t,n)}finally{Lf=!1,(xi!==null||wi!==null)&&(Jb(),Zb())}}function Qs(e,t){var n=e.stateNode;if(n===null)return null;var r=Au(n);if(r===null)return null;n=r[t];e:switch(t){case\"onClick\":case\"onClickCapture\":case\"onDoubleClick\":case\"onDoubleClickCapture\":case\"onMouseDown\":case\"onMouseDownCapture\":case\"onMouseMove\":case\"onMouseMoveCapture\":case\"onMouseUp\":case\"onMouseUpCapture\":case\"onMouseEnter\":(r=!r.disabled)||(e=e.type,r=!(e===\"button\"||e===\"input\"||e===\"select\"||e===\"textarea\")),e=!r;break e;default:e=!1}if(e)return null;if(n&&typeof n!=\"function\")throw Error(W(231,t,typeof n));return n}var cp=!1;if(rr)try{var us={};Object.defineProperty(us,\"passive\",{get:function(){cp=!0}}),window.addEventListener(\"test\",us,us),window.removeEventListener(\"test\",us,us)}catch{cp=!1}function Ck(e,t,n,r,o,i,s,a,l){var c=Array.prototype.slice.call(arguments,3);try{t.apply(n,c)}catch(u){this.onError(u)}}var As=!1,xc=null,wc=!1,up=null,Tk={onError:function(e){As=!0,xc=e}};function kk(e,t,n,r,o,i,s,a,l){As=!1,xc=null,Ck.apply(Tk,arguments)}function Nk(e,t,n,r,o,i,s,a,l){if(kk.apply(this,arguments),As){if(As){var c=xc;As=!1,xc=null}else throw Error(W(198));wc||(wc=!0,up=c)}}function jo(e){var t=e,n=e;if(e.alternate)for(;t.return;)t=t.return;else{e=t;do t=e,t.flags&4098&&(n=t.return),e=t.return;while(e)}return t.tag===3?n:null}function ex(e){if(e.tag===13){var t=e.memoizedState;if(t===null&&(e=e.alternate,e!==null&&(t=e.memoizedState)),t!==null)return t.dehydrated}return null}function R0(e){if(jo(e)!==e)throw Error(W(188))}function Ak(e){var t=e.alternate;if(!t){if(t=jo(e),t===null)throw Error(W(188));return t!==e?null:e}for(var n=e,r=t;;){var o=n.return;if(o===null)break;var i=o.alternate;if(i===null){if(r=o.return,r!==null){n=r;continue}break}if(o.child===i.child){for(i=o.child;i;){if(i===n)return R0(o),e;if(i===r)return R0(o),t;i=i.sibling}throw Error(W(188))}if(n.return!==r.return)n=o,r=i;else{for(var s=!1,a=o.child;a;){if(a===n){s=!0,n=o,r=i;break}if(a===r){s=!0,r=o,n=i;break}a=a.sibling}if(!s){for(a=i.child;a;){if(a===n){s=!0,n=i,r=o;break}if(a===r){s=!0,r=i,n=o;break}a=a.sibling}if(!s)throw Error(W(189))}}if(n.alternate!==r)throw Error(W(190))}if(n.tag!==3)throw Error(W(188));return n.stateNode.current===n?e:t}function tx(e){return e=Ak(e),e!==null?nx(e):null}function nx(e){if(e.tag===5||e.tag===6)return e;for(e=e.child;e!==null;){var t=nx(e);if(t!==null)return t;e=e.sibling}return null}var rx=qt.unstable_scheduleCallback,L0=qt.unstable_cancelCallback,Dk=qt.unstable_shouldYield,Ik=qt.unstable_requestPaint,je=qt.unstable_now,Rk=qt.unstable_getCurrentPriorityLevel,um=qt.unstable_ImmediatePriority,ox=qt.unstable_UserBlockingPriority,_c=qt.unstable_NormalPriority,Lk=qt.unstable_LowPriority,ix=qt.unstable_IdlePriority,Cu=null,Fn=null;function Ok(e){if(Fn&&typeof Fn.onCommitFiberRoot==\"function\")try{Fn.onCommitFiberRoot(Cu,e,void 0,(e.current.flags&128)===128)}catch{}}var xn=Math.clz32?Math.clz32:Fk,Pk=Math.log,$k=Math.LN2;function Fk(e){return e>>>=0,e===0?32:31-(Pk(e)/$k|0)|0}var cl=64,ul=4194304;function ws(e){switch(e&-e){case 1:return 1;case 2:return 2;case 4:return 4;case 8:return 8;case 16:return 16;case 32:return 32;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return e&4194240;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return e&130023424;case 134217728:return 134217728;case 268435456:return 268435456;case 536870912:return 536870912;case 1073741824:return 1073741824;default:return e}}function Sc(e,t){var n=e.pendingLanes;if(n===0)return 0;var r=0,o=e.suspendedLanes,i=e.pingedLanes,s=n&268435455;if(s!==0){var a=s&~o;a!==0?r=ws(a):(i&=s,i!==0&&(r=ws(i)))}else s=n&~o,s!==0?r=ws(s):i!==0&&(r=ws(i));if(r===0)return 0;if(t!==0&&t!==r&&!(t&o)&&(o=r&-r,i=t&-t,o>=i||o===16&&(i&4194240)!==0))return t;if(r&4&&(r|=n&16),t=e.entangledLanes,t!==0)for(e=e.entanglements,t&=r;0<t;)n=31-xn(t),o=1<<n,r|=e[n],t&=~o;return r}function Mk(e,t){switch(e){case 1:case 2:case 4:return t+250;case 8:case 16:case 32:case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:return t+5e3;case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:return-1;case 134217728:case 268435456:case 536870912:case 1073741824:return-1;default:return-1}}function Vk(e,t){for(var n=e.suspendedLanes,r=e.pingedLanes,o=e.expirationTimes,i=e.pendingLanes;0<i;){var s=31-xn(i),a=1<<s,l=o[s];l===-1?(!(a&n)||a&r)&&(o[s]=Mk(a,t)):l<=t&&(e.expiredLanes|=a),i&=~a}}function fp(e){return e=e.pendingLanes&-1073741825,e!==0?e:e&1073741824?1073741824:0}function sx(){var e=cl;return cl<<=1,!(cl&4194240)&&(cl=64),e}function Of(e){for(var t=[],n=0;31>n;n++)t.push(e);return t}function Pa(e,t,n){e.pendingLanes|=t,t!==536870912&&(e.suspendedLanes=0,e.pingedLanes=0),e=e.eventTimes,t=31-xn(t),e[t]=n}function jk(e,t){var n=e.pendingLanes&~t;e.pendingLanes=t,e.suspendedLanes=0,e.pingedLanes=0,e.expiredLanes&=t,e.mutableReadLanes&=t,e.entangledLanes&=t,t=e.entanglements;var r=e.eventTimes;for(e=e.expirationTimes;0<n;){var o=31-xn(n),i=1<<o;t[o]=0,r[o]=-1,e[o]=-1,n&=~i}}function fm(e,t){var n=e.entangledLanes|=t;for(e=e.entanglements;n;){var r=31-xn(n),o=1<<r;o&t|e[r]&t&&(e[r]|=t),n&=~o}}var Ee=0;function ax(e){return e&=-e,1<e?4<e?e&268435455?16:536870912:4:1}var lx,dm,cx,ux,fx,dp=!1,fl=[],Rr=null,Lr=null,Or=null,Ys=new Map,Zs=new Map,Sr=[],qk=\"mousedown mouseup touchcancel touchend touchstart auxclick dblclick pointercancel pointerdown pointerup dragend dragstart drop compositionend compositionstart keydown keypress keyup input textInput copy cut paste click change contextmenu reset submit\".split(\" \");function O0(e,t){switch(e){case\"focusin\":case\"focusout\":Rr=null;break;case\"dragenter\":case\"dragleave\":Lr=null;break;case\"mouseover\":case\"mouseout\":Or=null;break;case\"pointerover\":case\"pointerout\":Ys.delete(t.pointerId);break;case\"gotpointercapture\":case\"lostpointercapture\":Zs.delete(t.pointerId)}}function fs(e,t,n,r,o,i){return e===null||e.nativeEvent!==i?(e={blockedOn:t,domEventName:n,eventSystemFlags:r,nativeEvent:i,targetContainers:[o]},t!==null&&(t=Fa(t),t!==null&&dm(t)),e):(e.eventSystemFlags|=r,t=e.targetContainers,o!==null&&t.indexOf(o)===-1&&t.push(o),e)}function Uk(e,t,n,r,o){switch(t){case\"focusin\":return Rr=fs(Rr,e,t,n,r,o),!0;case\"dragenter\":return Lr=fs(Lr,e,t,n,r,o),!0;case\"mouseover\":return Or=fs(Or,e,t,n,r,o),!0;case\"pointerover\":var i=o.pointerId;return Ys.set(i,fs(Ys.get(i)||null,e,t,n,r,o)),!0;case\"gotpointercapture\":return i=o.pointerId,Zs.set(i,fs(Zs.get(i)||null,e,t,n,r,o)),!0}return!1}function dx(e){var t=po(e.target);if(t!==null){var n=jo(t);if(n!==null){if(t=n.tag,t===13){if(t=ex(n),t!==null){e.blockedOn=t,fx(e.priority,function(){cx(n)});return}}else if(t===3&&n.stateNode.current.memoizedState.isDehydrated){e.blockedOn=n.tag===3?n.stateNode.containerInfo:null;return}}}e.blockedOn=null}function Xl(e){if(e.blockedOn!==null)return!1;for(var t=e.targetContainers;0<t.length;){var n=pp(e.domEventName,e.eventSystemFlags,t[0],e.nativeEvent);if(n===null){n=e.nativeEvent;var r=new n.constructor(n.type,n);ap=r,n.target.dispatchEvent(r),ap=null}else return t=Fa(n),t!==null&&dm(t),e.blockedOn=n,!1;t.shift()}return!0}function P0(e,t,n){Xl(e)&&n.delete(t)}function Bk(){dp=!1,Rr!==null&&Xl(Rr)&&(Rr=null),Lr!==null&&Xl(Lr)&&(Lr=null),Or!==null&&Xl(Or)&&(Or=null),Ys.forEach(P0),Zs.forEach(P0)}function ds(e,t){e.blockedOn===t&&(e.blockedOn=null,dp||(dp=!0,qt.unstable_scheduleCallback(qt.unstable_NormalPriority,Bk)))}function Xs(e){function t(o){return ds(o,e)}if(0<fl.length){ds(fl[0],e);for(var n=1;n<fl.length;n++){var r=fl[n];r.blockedOn===e&&(r.blockedOn=null)}}for(Rr!==null&&ds(Rr,e),Lr!==null&&ds(Lr,e),Or!==null&&ds(Or,e),Ys.forEach(t),Zs.forEach(t),n=0;n<Sr.length;n++)r=Sr[n],r.blockedOn===e&&(r.blockedOn=null);for(;0<Sr.length&&(n=Sr[0],n.blockedOn===null);)dx(n),n.blockedOn===null&&Sr.shift()}var _i=pr.ReactCurrentBatchConfig,Cc=!0;function zk(e,t,n,r){var o=Ee,i=_i.transition;_i.transition=null;try{Ee=1,pm(e,t,n,r)}finally{Ee=o,_i.transition=i}}function Hk(e,t,n,r){var o=Ee,i=_i.transition;_i.transition=null;try{Ee=4,pm(e,t,n,r)}finally{Ee=o,_i.transition=i}}function pm(e,t,n,r){if(Cc){var o=pp(e,t,n,r);if(o===null)zf(e,t,r,Tc,n),O0(e,r);else if(Uk(o,e,t,n,r))r.stopPropagation();else if(O0(e,r),t&4&&-1<qk.indexOf(e)){for(;o!==null;){var i=Fa(o);if(i!==null&&lx(i),i=pp(e,t,n,r),i===null&&zf(e,t,r,Tc,n),i===o)break;o=i}o!==null&&r.stopPropagation()}else zf(e,t,r,null,n)}}var Tc=null;function pp(e,t,n,r){if(Tc=null,e=cm(r),e=po(e),e!==null)if(t=jo(e),t===null)e=null;else if(n=t.tag,n===13){if(e=ex(t),e!==null)return e;e=null}else if(n===3){if(t.stateNode.current.memoizedState.isDehydrated)return t.tag===3?t.stateNode.containerInfo:null;e=null}else t!==e&&(e=null);return Tc=e,null}function px(e){switch(e){case\"cancel\":case\"click\":case\"close\":case\"contextmenu\":case\"copy\":case\"cut\":case\"auxclick\":case\"dblclick\":case\"dragend\":case\"dragstart\":case\"drop\":case\"focusin\":case\"focusout\":case\"input\":case\"invalid\":case\"keydown\":case\"keypress\":case\"keyup\":case\"mousedown\":case\"mouseup\":case\"paste\":case\"pause\":case\"play\":case\"pointercancel\":case\"pointerdown\":case\"pointerup\":case\"ratechange\":case\"reset\":case\"resize\":case\"seeked\":case\"submit\":case\"touchcancel\":case\"touchend\":case\"touchstart\":case\"volumechange\":case\"change\":case\"selectionchange\":case\"textInput\":case\"compositionstart\":case\"compositionend\":case\"compositionupdate\":case\"beforeblur\":case\"afterblur\":case\"beforeinput\":case\"blur\":case\"fullscreenchange\":case\"focus\":case\"hashchange\":case\"popstate\":case\"select\":case\"selectstart\":return 1;case\"drag\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"mousemove\":case\"mouseout\":case\"mouseover\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"scroll\":case\"toggle\":case\"touchmove\":case\"wheel\":case\"mouseenter\":case\"mouseleave\":case\"pointerenter\":case\"pointerleave\":return 4;case\"message\":switch(Rk()){case um:return 1;case ox:return 4;case _c:case Lk:return 16;case ix:return 536870912;default:return 16}default:return 16}}var Tr=null,hm=null,Jl=null;function hx(){if(Jl)return Jl;var e,t=hm,n=t.length,r,o=\"value\"in Tr?Tr.value:Tr.textContent,i=o.length;for(e=0;e<n&&t[e]===o[e];e++);var s=n-e;for(r=1;r<=s&&t[n-r]===o[i-r];r++);return Jl=o.slice(e,1<r?1-r:void 0)}function Kl(e){var t=e.keyCode;return\"charCode\"in e?(e=e.charCode,e===0&&t===13&&(e=13)):e=t,e===10&&(e=13),32<=e||e===13?e:0}function dl(){return!0}function $0(){return!1}function Gt(e){function t(n,r,o,i,s){this._reactName=n,this._targetInst=o,this.type=r,this.nativeEvent=i,this.target=s,this.currentTarget=null;for(var a in e)e.hasOwnProperty(a)&&(n=e[a],this[a]=n?n(i):i[a]);return this.isDefaultPrevented=(i.defaultPrevented!=null?i.defaultPrevented:i.returnValue===!1)?dl:$0,this.isPropagationStopped=$0,this}return $e(t.prototype,{preventDefault:function(){this.defaultPrevented=!0;var n=this.nativeEvent;n&&(n.preventDefault?n.preventDefault():typeof n.returnValue!=\"unknown\"&&(n.returnValue=!1),this.isDefaultPrevented=dl)},stopPropagation:function(){var n=this.nativeEvent;n&&(n.stopPropagation?n.stopPropagation():typeof n.cancelBubble!=\"unknown\"&&(n.cancelBubble=!0),this.isPropagationStopped=dl)},persist:function(){},isPersistent:dl}),t}var Yi={eventPhase:0,bubbles:0,cancelable:0,timeStamp:function(e){return e.timeStamp||Date.now()},defaultPrevented:0,isTrusted:0},mm=Gt(Yi),$a=$e({},Yi,{view:0,detail:0}),Gk=Gt($a),Pf,$f,ps,Tu=$e({},$a,{screenX:0,screenY:0,clientX:0,clientY:0,pageX:0,pageY:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,getModifierState:vm,button:0,buttons:0,relatedTarget:function(e){return e.relatedTarget===void 0?e.fromElement===e.srcElement?e.toElement:e.fromElement:e.relatedTarget},movementX:function(e){return\"movementX\"in e?e.movementX:(e!==ps&&(ps&&e.type===\"mousemove\"?(Pf=e.screenX-ps.screenX,$f=e.screenY-ps.screenY):$f=Pf=0,ps=e),Pf)},movementY:function(e){return\"movementY\"in e?e.movementY:$f}}),F0=Gt(Tu),Wk=$e({},Tu,{dataTransfer:0}),Qk=Gt(Wk),Yk=$e({},$a,{relatedTarget:0}),Ff=Gt(Yk),Zk=$e({},Yi,{animationName:0,elapsedTime:0,pseudoElement:0}),Xk=Gt(Zk),Jk=$e({},Yi,{clipboardData:function(e){return\"clipboardData\"in e?e.clipboardData:window.clipboardData}}),Kk=Gt(Jk),eN=$e({},Yi,{data:0}),M0=Gt(eN),tN={Esc:\"Escape\",Spacebar:\" \",Left:\"ArrowLeft\",Up:\"ArrowUp\",Right:\"ArrowRight\",Down:\"ArrowDown\",Del:\"Delete\",Win:\"OS\",Menu:\"ContextMenu\",Apps:\"ContextMenu\",Scroll:\"ScrollLock\",MozPrintableKey:\"Unidentified\"},nN={8:\"Backspace\",9:\"Tab\",12:\"Clear\",13:\"Enter\",16:\"Shift\",17:\"Control\",18:\"Alt\",19:\"Pause\",20:\"CapsLock\",27:\"Escape\",32:\" \",33:\"PageUp\",34:\"PageDown\",35:\"End\",36:\"Home\",37:\"ArrowLeft\",38:\"ArrowUp\",39:\"ArrowRight\",40:\"ArrowDown\",45:\"Insert\",46:\"Delete\",112:\"F1\",113:\"F2\",114:\"F3\",115:\"F4\",116:\"F5\",117:\"F6\",118:\"F7\",119:\"F8\",120:\"F9\",121:\"F10\",122:\"F11\",123:\"F12\",144:\"NumLock\",145:\"ScrollLock\",224:\"Meta\"},rN={Alt:\"altKey\",Control:\"ctrlKey\",Meta:\"metaKey\",Shift:\"shiftKey\"};function oN(e){var t=this.nativeEvent;return t.getModifierState?t.getModifierState(e):(e=rN[e])?!!t[e]:!1}function vm(){return oN}var iN=$e({},$a,{key:function(e){if(e.key){var t=tN[e.key]||e.key;if(t!==\"Unidentified\")return t}return e.type===\"keypress\"?(e=Kl(e),e===13?\"Enter\":String.fromCharCode(e)):e.type===\"keydown\"||e.type===\"keyup\"?nN[e.keyCode]||\"Unidentified\":\"\"},code:0,location:0,ctrlKey:0,shiftKey:0,altKey:0,metaKey:0,repeat:0,locale:0,getModifierState:vm,charCode:function(e){return e.type===\"keypress\"?Kl(e):0},keyCode:function(e){return e.type===\"keydown\"||e.type===\"keyup\"?e.keyCode:0},which:function(e){return e.type===\"keypress\"?Kl(e):e.type===\"keydown\"||e.type===\"keyup\"?e.keyCode:0}}),sN=Gt(iN),aN=$e({},Tu,{pointerId:0,width:0,height:0,pressure:0,tangentialPressure:0,tiltX:0,tiltY:0,twist:0,pointerType:0,isPrimary:0}),V0=Gt(aN),lN=$e({},$a,{touches:0,targetTouches:0,changedTouches:0,altKey:0,metaKey:0,ctrlKey:0,shiftKey:0,getModifierState:vm}),cN=Gt(lN),uN=$e({},Yi,{propertyName:0,elapsedTime:0,pseudoElement:0}),fN=Gt(uN),dN=$e({},Tu,{deltaX:function(e){return\"deltaX\"in e?e.deltaX:\"wheelDeltaX\"in e?-e.wheelDeltaX:0},deltaY:function(e){return\"deltaY\"in e?e.deltaY:\"wheelDeltaY\"in e?-e.wheelDeltaY:\"wheelDelta\"in e?-e.wheelDelta:0},deltaZ:0,deltaMode:0}),pN=Gt(dN),hN=[9,13,27,32],gm=rr&&\"CompositionEvent\"in window,Ds=null;rr&&\"documentMode\"in document&&(Ds=document.documentMode);var mN=rr&&\"TextEvent\"in window&&!Ds,mx=rr&&(!gm||Ds&&8<Ds&&11>=Ds),j0=String.fromCharCode(32),q0=!1;function vx(e,t){switch(e){case\"keyup\":return hN.indexOf(t.keyCode)!==-1;case\"keydown\":return t.keyCode!==229;case\"keypress\":case\"mousedown\":case\"focusout\":return!0;default:return!1}}function gx(e){return e=e.detail,typeof e==\"object\"&&\"data\"in e?e.data:null}var ii=!1;function vN(e,t){switch(e){case\"compositionend\":return gx(t);case\"keypress\":return t.which!==32?null:(q0=!0,j0);case\"textInput\":return e=t.data,e===j0&&q0?null:e;default:return null}}function gN(e,t){if(ii)return e===\"compositionend\"||!gm&&vx(e,t)?(e=hx(),Jl=hm=Tr=null,ii=!1,e):null;switch(e){case\"paste\":return null;case\"keypress\":if(!(t.ctrlKey||t.altKey||t.metaKey)||t.ctrlKey&&t.altKey){if(t.char&&1<t.char.length)return t.char;if(t.which)return String.fromCharCode(t.which)}return null;case\"compositionend\":return mx&&t.locale!==\"ko\"?null:t.data;default:return null}}var yN={color:!0,date:!0,datetime:!0,\"datetime-local\":!0,email:!0,month:!0,number:!0,password:!0,range:!0,search:!0,tel:!0,text:!0,time:!0,url:!0,week:!0};function U0(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t===\"input\"?!!yN[e.type]:t===\"textarea\"}function yx(e,t,n,r){Yb(r),t=kc(t,\"onChange\"),0<t.length&&(n=new mm(\"onChange\",\"change\",null,n,r),e.push({event:n,listeners:t}))}var Is=null,Js=null;function EN(e){Ax(e,0)}function ku(e){var t=li(e);if(Ub(t))return e}function bN(e,t){if(e===\"change\")return t}var Ex=!1;if(rr){var Mf;if(rr){var Vf=\"oninput\"in document;if(!Vf){var B0=document.createElement(\"div\");B0.setAttribute(\"oninput\",\"return;\"),Vf=typeof B0.oninput==\"function\"}Mf=Vf}else Mf=!1;Ex=Mf&&(!document.documentMode||9<document.documentMode)}function z0(){Is&&(Is.detachEvent(\"onpropertychange\",bx),Js=Is=null)}function bx(e){if(e.propertyName===\"value\"&&ku(Js)){var t=[];yx(t,Js,e,cm(e)),Kb(EN,t)}}function xN(e,t,n){e===\"focusin\"?(z0(),Is=t,Js=n,Is.attachEvent(\"onpropertychange\",bx)):e===\"focusout\"&&z0()}function wN(e){if(e===\"selectionchange\"||e===\"keyup\"||e===\"keydown\")return ku(Js)}function _N(e,t){if(e===\"click\")return ku(t)}function SN(e,t){if(e===\"input\"||e===\"change\")return ku(t)}function CN(e,t){return e===t&&(e!==0||1/e===1/t)||e!==e&&t!==t}var Cn=typeof Object.is==\"function\"?Object.is:CN;function Ks(e,t){if(Cn(e,t))return!0;if(typeof e!=\"object\"||e===null||typeof t!=\"object\"||t===null)return!1;var n=Object.keys(e),r=Object.keys(t);if(n.length!==r.length)return!1;for(r=0;r<n.length;r++){var o=n[r];if(!Yd.call(t,o)||!Cn(e[o],t[o]))return!1}return!0}function H0(e){for(;e&&e.firstChild;)e=e.firstChild;return e}function G0(e,t){var n=H0(e);e=0;for(var r;n;){if(n.nodeType===3){if(r=e+n.textContent.length,e<=t&&r>=t)return{node:n,offset:t-e};e=r}e:{for(;n;){if(n.nextSibling){n=n.nextSibling;break e}n=n.parentNode}n=void 0}n=H0(n)}}function xx(e,t){return e&&t?e===t?!0:e&&e.nodeType===3?!1:t&&t.nodeType===3?xx(e,t.parentNode):\"contains\"in e?e.contains(t):e.compareDocumentPosition?!!(e.compareDocumentPosition(t)&16):!1:!1}function wx(){for(var e=window,t=bc();t instanceof e.HTMLIFrameElement;){try{var n=typeof t.contentWindow.location.href==\"string\"}catch{n=!1}if(n)e=t.contentWindow;else break;t=bc(e.document)}return t}function ym(e){var t=e&&e.nodeName&&e.nodeName.toLowerCase();return t&&(t===\"input\"&&(e.type===\"text\"||e.type===\"search\"||e.type===\"tel\"||e.type===\"url\"||e.type===\"password\")||t===\"textarea\"||e.contentEditable===\"true\")}function TN(e){var t=wx(),n=e.focusedElem,r=e.selectionRange;if(t!==n&&n&&n.ownerDocument&&xx(n.ownerDocument.documentElement,n)){if(r!==null&&ym(n)){if(t=r.start,e=r.end,e===void 0&&(e=t),\"selectionStart\"in n)n.selectionStart=t,n.selectionEnd=Math.min(e,n.value.length);else if(e=(t=n.ownerDocument||document)&&t.defaultView||window,e.getSelection){e=e.getSelection();var o=n.textContent.length,i=Math.min(r.start,o);r=r.end===void 0?i:Math.min(r.end,o),!e.extend&&i>r&&(o=r,r=i,i=o),o=G0(n,i);var s=G0(n,r);o&&s&&(e.rangeCount!==1||e.anchorNode!==o.node||e.anchorOffset!==o.offset||e.focusNode!==s.node||e.focusOffset!==s.offset)&&(t=t.createRange(),t.setStart(o.node,o.offset),e.removeAllRanges(),i>r?(e.addRange(t),e.extend(s.node,s.offset)):(t.setEnd(s.node,s.offset),e.addRange(t)))}}for(t=[],e=n;e=e.parentNode;)e.nodeType===1&&t.push({element:e,left:e.scrollLeft,top:e.scrollTop});for(typeof n.focus==\"function\"&&n.focus(),n=0;n<t.length;n++)e=t[n],e.element.scrollLeft=e.left,e.element.scrollTop=e.top}}var kN=rr&&\"documentMode\"in document&&11>=document.documentMode,si=null,hp=null,Rs=null,mp=!1;function W0(e,t,n){var r=n.window===n?n.document:n.nodeType===9?n:n.ownerDocument;mp||si==null||si!==bc(r)||(r=si,\"selectionStart\"in r&&ym(r)?r={start:r.selectionStart,end:r.selectionEnd}:(r=(r.ownerDocument&&r.ownerDocument.defaultView||window).getSelection(),r={anchorNode:r.anchorNode,anchorOffset:r.anchorOffset,focusNode:r.focusNode,focusOffset:r.focusOffset}),Rs&&Ks(Rs,r)||(Rs=r,r=kc(hp,\"onSelect\"),0<r.length&&(t=new mm(\"onSelect\",\"select\",null,t,n),e.push({event:t,listeners:r}),t.target=si)))}function pl(e,t){var n={};return n[e.toLowerCase()]=t.toLowerCase(),n[\"Webkit\"+e]=\"webkit\"+t,n[\"Moz\"+e]=\"moz\"+t,n}var ai={animationend:pl(\"Animation\",\"AnimationEnd\"),animationiteration:pl(\"Animation\",\"AnimationIteration\"),animationstart:pl(\"Animation\",\"AnimationStart\"),transitionend:pl(\"Transition\",\"TransitionEnd\")},jf={},_x={};rr&&(_x=document.createElement(\"div\").style,\"AnimationEvent\"in window||(delete ai.animationend.animation,delete ai.animationiteration.animation,delete ai.animationstart.animation),\"TransitionEvent\"in window||delete ai.transitionend.transition);function Nu(e){if(jf[e])return jf[e];if(!ai[e])return e;var t=ai[e],n;for(n in t)if(t.hasOwnProperty(n)&&n in _x)return jf[e]=t[n];return e}var Sx=Nu(\"animationend\"),Cx=Nu(\"animationiteration\"),Tx=Nu(\"animationstart\"),kx=Nu(\"transitionend\"),Nx=new Map,Q0=\"abort auxClick cancel canPlay canPlayThrough click close contextMenu copy cut drag dragEnd dragEnter dragExit dragLeave dragOver dragStart drop durationChange emptied encrypted ended error gotPointerCapture input invalid keyDown keyPress keyUp load loadedData loadedMetadata loadStart lostPointerCapture mouseDown mouseMove mouseOut mouseOver mouseUp paste pause play playing pointerCancel pointerDown pointerMove pointerOut pointerOver pointerUp progress rateChange reset resize seeked seeking stalled submit suspend timeUpdate touchCancel touchEnd touchStart volumeChange scroll toggle touchMove waiting wheel\".split(\" \");function Wr(e,t){Nx.set(e,t),Vo(t,[e])}for(var qf=0;qf<Q0.length;qf++){var Uf=Q0[qf],NN=Uf.toLowerCase(),AN=Uf[0].toUpperCase()+Uf.slice(1);Wr(NN,\"on\"+AN)}Wr(Sx,\"onAnimationEnd\");Wr(Cx,\"onAnimationIteration\");Wr(Tx,\"onAnimationStart\");Wr(\"dblclick\",\"onDoubleClick\");Wr(\"focusin\",\"onFocus\");Wr(\"focusout\",\"onBlur\");Wr(kx,\"onTransitionEnd\");Li(\"onMouseEnter\",[\"mouseout\",\"mouseover\"]);Li(\"onMouseLeave\",[\"mouseout\",\"mouseover\"]);Li(\"onPointerEnter\",[\"pointerout\",\"pointerover\"]);Li(\"onPointerLeave\",[\"pointerout\",\"pointerover\"]);Vo(\"onChange\",\"change click focusin focusout input keydown keyup selectionchange\".split(\" \"));Vo(\"onSelect\",\"focusout contextmenu dragend focusin keydown keyup mousedown mouseup selectionchange\".split(\" \"));Vo(\"onBeforeInput\",[\"compositionend\",\"keypress\",\"textInput\",\"paste\"]);Vo(\"onCompositionEnd\",\"compositionend focusout keydown keypress keyup mousedown\".split(\" \"));Vo(\"onCompositionStart\",\"compositionstart focusout keydown keypress keyup mousedown\".split(\" \"));Vo(\"onCompositionUpdate\",\"compositionupdate focusout keydown keypress keyup mousedown\".split(\" \"));var _s=\"abort canplay canplaythrough durationchange emptied encrypted ended error loadeddata loadedmetadata loadstart pause play playing progress ratechange resize seeked seeking stalled suspend timeupdate volumechange waiting\".split(\" \"),DN=new Set(\"cancel close invalid load scroll toggle\".split(\" \").concat(_s));function Y0(e,t,n){var r=e.type||\"unknown-event\";e.currentTarget=n,Nk(r,t,void 0,e),e.currentTarget=null}function Ax(e,t){t=(t&4)!==0;for(var n=0;n<e.length;n++){var r=e[n],o=r.event;r=r.listeners;e:{var i=void 0;if(t)for(var s=r.length-1;0<=s;s--){var a=r[s],l=a.instance,c=a.currentTarget;if(a=a.listener,l!==i&&o.isPropagationStopped())break e;Y0(o,a,c),i=l}else for(s=0;s<r.length;s++){if(a=r[s],l=a.instance,c=a.currentTarget,a=a.listener,l!==i&&o.isPropagationStopped())break e;Y0(o,a,c),i=l}}}if(wc)throw e=up,wc=!1,up=null,e}function Te(e,t){var n=t[bp];n===void 0&&(n=t[bp]=new Set);var r=e+\"__bubble\";n.has(r)||(Dx(t,e,2,!1),n.add(r))}function Bf(e,t,n){var r=0;t&&(r|=4),Dx(n,e,r,t)}var hl=\"_reactListening\"+Math.random().toString(36).slice(2);function ea(e){if(!e[hl]){e[hl]=!0,Fb.forEach(function(n){n!==\"selectionchange\"&&(DN.has(n)||Bf(n,!1,e),Bf(n,!0,e))});var t=e.nodeType===9?e:e.ownerDocument;t===null||t[hl]||(t[hl]=!0,Bf(\"selectionchange\",!1,t))}}function Dx(e,t,n,r){switch(px(t)){case 1:var o=zk;break;case 4:o=Hk;break;default:o=pm}n=o.bind(null,t,n,e),o=void 0,!cp||t!==\"touchstart\"&&t!==\"touchmove\"&&t!==\"wheel\"||(o=!0),r?o!==void 0?e.addEventListener(t,n,{capture:!0,passive:o}):e.addEventListener(t,n,!0):o!==void 0?e.addEventListener(t,n,{passive:o}):e.addEventListener(t,n,!1)}function zf(e,t,n,r,o){var i=r;if(!(t&1)&&!(t&2)&&r!==null)e:for(;;){if(r===null)return;var s=r.tag;if(s===3||s===4){var a=r.stateNode.containerInfo;if(a===o||a.nodeType===8&&a.parentNode===o)break;if(s===4)for(s=r.return;s!==null;){var l=s.tag;if((l===3||l===4)&&(l=s.stateNode.containerInfo,l===o||l.nodeType===8&&l.parentNode===o))return;s=s.return}for(;a!==null;){if(s=po(a),s===null)return;if(l=s.tag,l===5||l===6){r=i=s;continue e}a=a.parentNode}}r=r.return}Kb(function(){var c=i,u=cm(n),d=[];e:{var p=Nx.get(e);if(p!==void 0){var f=mm,m=e;switch(e){case\"keypress\":if(Kl(n)===0)break e;case\"keydown\":case\"keyup\":f=sN;break;case\"focusin\":m=\"focus\",f=Ff;break;case\"focusout\":m=\"blur\",f=Ff;break;case\"beforeblur\":case\"afterblur\":f=Ff;break;case\"click\":if(n.button===2)break e;case\"auxclick\":case\"dblclick\":case\"mousedown\":case\"mousemove\":case\"mouseup\":case\"mouseout\":case\"mouseover\":case\"contextmenu\":f=F0;break;case\"drag\":case\"dragend\":case\"dragenter\":case\"dragexit\":case\"dragleave\":case\"dragover\":case\"dragstart\":case\"drop\":f=Qk;break;case\"touchcancel\":case\"touchend\":case\"touchmove\":case\"touchstart\":f=cN;break;case Sx:case Cx:case Tx:f=Xk;break;case kx:f=fN;break;case\"scroll\":f=Gk;break;case\"wheel\":f=pN;break;case\"copy\":case\"cut\":case\"paste\":f=Kk;break;case\"gotpointercapture\":case\"lostpointercapture\":case\"pointercancel\":case\"pointerdown\":case\"pointermove\":case\"pointerout\":case\"pointerover\":case\"pointerup\":f=V0}var v=(t&4)!==0,b=!v&&e===\"scroll\",y=v?p!==null?p+\"Capture\":null:p;v=[];for(var g=c,E;g!==null;){E=g;var x=E.stateNode;if(E.tag===5&&x!==null&&(E=x,y!==null&&(x=Qs(g,y),x!=null&&v.push(ta(g,x,E)))),b)break;g=g.return}0<v.length&&(p=new f(p,m,null,n,u),d.push({event:p,listeners:v}))}}if(!(t&7)){e:{if(p=e===\"mouseover\"||e===\"pointerover\",f=e===\"mouseout\"||e===\"pointerout\",p&&n!==ap&&(m=n.relatedTarget||n.fromElement)&&(po(m)||m[or]))break e;if((f||p)&&(p=u.window===u?u:(p=u.ownerDocument)?p.defaultView||p.parentWindow:window,f?(m=n.relatedTarget||n.toElement,f=c,m=m?po(m):null,m!==null&&(b=jo(m),m!==b||m.tag!==5&&m.tag!==6)&&(m=null)):(f=null,m=c),f!==m)){if(v=F0,x=\"onMouseLeave\",y=\"onMouseEnter\",g=\"mouse\",(e===\"pointerout\"||e===\"pointerover\")&&(v=V0,x=\"onPointerLeave\",y=\"onPointerEnter\",g=\"pointer\"),b=f==null?p:li(f),E=m==null?p:li(m),p=new v(x,g+\"leave\",f,n,u),p.target=b,p.relatedTarget=E,x=null,po(u)===c&&(v=new v(y,g+\"enter\",m,n,u),v.target=E,v.relatedTarget=b,x=v),b=x,f&&m)t:{for(v=f,y=m,g=0,E=v;E;E=Yo(E))g++;for(E=0,x=y;x;x=Yo(x))E++;for(;0<g-E;)v=Yo(v),g--;for(;0<E-g;)y=Yo(y),E--;for(;g--;){if(v===y||y!==null&&v===y.alternate)break t;v=Yo(v),y=Yo(y)}v=null}else v=null;f!==null&&Z0(d,p,f,v,!1),m!==null&&b!==null&&Z0(d,b,m,v,!0)}}e:{if(p=c?li(c):window,f=p.nodeName&&p.nodeName.toLowerCase(),f===\"select\"||f===\"input\"&&p.type===\"file\")var w=bN;else if(U0(p))if(Ex)w=SN;else{w=wN;var C=xN}else(f=p.nodeName)&&f.toLowerCase()===\"input\"&&(p.type===\"checkbox\"||p.type===\"radio\")&&(w=_N);if(w&&(w=w(e,c))){yx(d,w,n,u);break e}C&&C(e,p,c),e===\"focusout\"&&(C=p._wrapperState)&&C.controlled&&p.type===\"number\"&&np(p,\"number\",p.value)}switch(C=c?li(c):window,e){case\"focusin\":(U0(C)||C.contentEditable===\"true\")&&(si=C,hp=c,Rs=null);break;case\"focusout\":Rs=hp=si=null;break;case\"mousedown\":mp=!0;break;case\"contextmenu\":case\"mouseup\":case\"dragend\":mp=!1,W0(d,n,u);break;case\"selectionchange\":if(kN)break;case\"keydown\":case\"keyup\":W0(d,n,u)}var T;if(gm)e:{switch(e){case\"compositionstart\":var A=\"onCompositionStart\";break e;case\"compositionend\":A=\"onCompositionEnd\";break e;case\"compositionupdate\":A=\"onCompositionUpdate\";break e}A=void 0}else ii?vx(e,n)&&(A=\"onCompositionEnd\"):e===\"keydown\"&&n.keyCode===229&&(A=\"onCompositionStart\");A&&(mx&&n.locale!==\"ko\"&&(ii||A!==\"onCompositionStart\"?A===\"onCompositionEnd\"&&ii&&(T=hx()):(Tr=u,hm=\"value\"in Tr?Tr.value:Tr.textContent,ii=!0)),C=kc(c,A),0<C.length&&(A=new M0(A,e,null,n,u),d.push({event:A,listeners:C}),T?A.data=T:(T=gx(n),T!==null&&(A.data=T)))),(T=mN?vN(e,n):gN(e,n))&&(c=kc(c,\"onBeforeInput\"),0<c.length&&(u=new M0(\"onBeforeInput\",\"beforeinput\",null,n,u),d.push({event:u,listeners:c}),u.data=T))}Ax(d,t)})}function ta(e,t,n){return{instance:e,listener:t,currentTarget:n}}function kc(e,t){for(var n=t+\"Capture\",r=[];e!==null;){var o=e,i=o.stateNode;o.tag===5&&i!==null&&(o=i,i=Qs(e,n),i!=null&&r.unshift(ta(e,i,o)),i=Qs(e,t),i!=null&&r.push(ta(e,i,o))),e=e.return}return r}function Yo(e){if(e===null)return null;do e=e.return;while(e&&e.tag!==5);return e||null}function Z0(e,t,n,r,o){for(var i=t._reactName,s=[];n!==null&&n!==r;){var a=n,l=a.alternate,c=a.stateNode;if(l!==null&&l===r)break;a.tag===5&&c!==null&&(a=c,o?(l=Qs(n,i),l!=null&&s.unshift(ta(n,l,a))):o||(l=Qs(n,i),l!=null&&s.push(ta(n,l,a)))),n=n.return}s.length!==0&&e.push({event:t,listeners:s})}var IN=/\\r\\n?/g,RN=/\\u0000|\\uFFFD/g;function X0(e){return(typeof e==\"string\"?e:\"\"+e).replace(IN,`\n`).replace(RN,\"\")}function ml(e,t,n){if(t=X0(t),X0(e)!==t&&n)throw Error(W(425))}function Nc(){}var vp=null,gp=null;function yp(e,t){return e===\"textarea\"||e===\"noscript\"||typeof t.children==\"string\"||typeof t.children==\"number\"||typeof t.dangerouslySetInnerHTML==\"object\"&&t.dangerouslySetInnerHTML!==null&&t.dangerouslySetInnerHTML.__html!=null}var Ep=typeof setTimeout==\"function\"?setTimeout:void 0,LN=typeof clearTimeout==\"function\"?clearTimeout:void 0,J0=typeof Promise==\"function\"?Promise:void 0,ON=typeof queueMicrotask==\"function\"?queueMicrotask:typeof J0<\"u\"?function(e){return J0.resolve(null).then(e).catch(PN)}:Ep;function PN(e){setTimeout(function(){throw e})}function Hf(e,t){var n=t,r=0;do{var o=n.nextSibling;if(e.removeChild(n),o&&o.nodeType===8)if(n=o.data,n===\"/$\"){if(r===0){e.removeChild(o),Xs(t);return}r--}else n!==\"$\"&&n!==\"$?\"&&n!==\"$!\"||r++;n=o}while(n);Xs(t)}function Pr(e){for(;e!=null;e=e.nextSibling){var t=e.nodeType;if(t===1||t===3)break;if(t===8){if(t=e.data,t===\"$\"||t===\"$!\"||t===\"$?\")break;if(t===\"/$\")return null}}return e}function K0(e){e=e.previousSibling;for(var t=0;e;){if(e.nodeType===8){var n=e.data;if(n===\"$\"||n===\"$!\"||n===\"$?\"){if(t===0)return e;t--}else n===\"/$\"&&t++}e=e.previousSibling}return null}var Zi=Math.random().toString(36).slice(2),On=\"__reactFiber$\"+Zi,na=\"__reactProps$\"+Zi,or=\"__reactContainer$\"+Zi,bp=\"__reactEvents$\"+Zi,$N=\"__reactListeners$\"+Zi,FN=\"__reactHandles$\"+Zi;function po(e){var t=e[On];if(t)return t;for(var n=e.parentNode;n;){if(t=n[or]||n[On]){if(n=t.alternate,t.child!==null||n!==null&&n.child!==null)for(e=K0(e);e!==null;){if(n=e[On])return n;e=K0(e)}return t}e=n,n=e.parentNode}return null}function Fa(e){return e=e[On]||e[or],!e||e.tag!==5&&e.tag!==6&&e.tag!==13&&e.tag!==3?null:e}function li(e){if(e.tag===5||e.tag===6)return e.stateNode;throw Error(W(33))}function Au(e){return e[na]||null}var xp=[],ci=-1;function Qr(e){return{current:e}}function ke(e){0>ci||(e.current=xp[ci],xp[ci]=null,ci--)}function Ce(e,t){ci++,xp[ci]=e.current,e.current=t}var Br={},mt=Qr(Br),At=Qr(!1),Co=Br;function Oi(e,t){var n=e.type.contextTypes;if(!n)return Br;var r=e.stateNode;if(r&&r.__reactInternalMemoizedUnmaskedChildContext===t)return r.__reactInternalMemoizedMaskedChildContext;var o={},i;for(i in n)o[i]=t[i];return r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=t,e.__reactInternalMemoizedMaskedChildContext=o),o}function Dt(e){return e=e.childContextTypes,e!=null}function Ac(){ke(At),ke(mt)}function eg(e,t,n){if(mt.current!==Br)throw Error(W(168));Ce(mt,t),Ce(At,n)}function Ix(e,t,n){var r=e.stateNode;if(t=t.childContextTypes,typeof r.getChildContext!=\"function\")return n;r=r.getChildContext();for(var o in r)if(!(o in t))throw Error(W(108,xk(e)||\"Unknown\",o));return $e({},n,r)}function Dc(e){return e=(e=e.stateNode)&&e.__reactInternalMemoizedMergedChildContext||Br,Co=mt.current,Ce(mt,e),Ce(At,At.current),!0}function tg(e,t,n){var r=e.stateNode;if(!r)throw Error(W(169));n?(e=Ix(e,t,Co),r.__reactInternalMemoizedMergedChildContext=e,ke(At),ke(mt),Ce(mt,e)):ke(At),Ce(At,n)}var Xn=null,Du=!1,Gf=!1;function Rx(e){Xn===null?Xn=[e]:Xn.push(e)}function MN(e){Du=!0,Rx(e)}function Yr(){if(!Gf&&Xn!==null){Gf=!0;var e=0,t=Ee;try{var n=Xn;for(Ee=1;e<n.length;e++){var r=n[e];do r=r(!0);while(r!==null)}Xn=null,Du=!1}catch(o){throw Xn!==null&&(Xn=Xn.slice(e+1)),rx(um,Yr),o}finally{Ee=t,Gf=!1}}return null}var ui=[],fi=0,Ic=null,Rc=0,Wt=[],Qt=0,To=null,Kn=1,er=\"\";function lo(e,t){ui[fi++]=Rc,ui[fi++]=Ic,Ic=e,Rc=t}function Lx(e,t,n){Wt[Qt++]=Kn,Wt[Qt++]=er,Wt[Qt++]=To,To=e;var r=Kn;e=er;var o=32-xn(r)-1;r&=~(1<<o),n+=1;var i=32-xn(t)+o;if(30<i){var s=o-o%5;i=(r&(1<<s)-1).toString(32),r>>=s,o-=s,Kn=1<<32-xn(t)+o|n<<o|r,er=i+e}else Kn=1<<i|n<<o|r,er=e}function Em(e){e.return!==null&&(lo(e,1),Lx(e,1,0))}function bm(e){for(;e===Ic;)Ic=ui[--fi],ui[fi]=null,Rc=ui[--fi],ui[fi]=null;for(;e===To;)To=Wt[--Qt],Wt[Qt]=null,er=Wt[--Qt],Wt[Qt]=null,Kn=Wt[--Qt],Wt[Qt]=null}var Mt=null,$t=null,Ne=!1,hn=null;function Ox(e,t){var n=Zt(5,null,null,0);n.elementType=\"DELETED\",n.stateNode=t,n.return=e,t=e.deletions,t===null?(e.deletions=[n],e.flags|=16):t.push(n)}function ng(e,t){switch(e.tag){case 5:var n=e.type;return t=t.nodeType!==1||n.toLowerCase()!==t.nodeName.toLowerCase()?null:t,t!==null?(e.stateNode=t,Mt=e,$t=Pr(t.firstChild),!0):!1;case 6:return t=e.pendingProps===\"\"||t.nodeType!==3?null:t,t!==null?(e.stateNode=t,Mt=e,$t=null,!0):!1;case 13:return t=t.nodeType!==8?null:t,t!==null?(n=To!==null?{id:Kn,overflow:er}:null,e.memoizedState={dehydrated:t,treeContext:n,retryLane:1073741824},n=Zt(18,null,null,0),n.stateNode=t,n.return=e,e.child=n,Mt=e,$t=null,!0):!1;default:return!1}}function wp(e){return(e.mode&1)!==0&&(e.flags&128)===0}function _p(e){if(Ne){var t=$t;if(t){var n=t;if(!ng(e,t)){if(wp(e))throw Error(W(418));t=Pr(n.nextSibling);var r=Mt;t&&ng(e,t)?Ox(r,n):(e.flags=e.flags&-4097|2,Ne=!1,Mt=e)}}else{if(wp(e))throw Error(W(418));e.flags=e.flags&-4097|2,Ne=!1,Mt=e}}}function rg(e){for(e=e.return;e!==null&&e.tag!==5&&e.tag!==3&&e.tag!==13;)e=e.return;Mt=e}function vl(e){if(e!==Mt)return!1;if(!Ne)return rg(e),Ne=!0,!1;var t;if((t=e.tag!==3)&&!(t=e.tag!==5)&&(t=e.type,t=t!==\"head\"&&t!==\"body\"&&!yp(e.type,e.memoizedProps)),t&&(t=$t)){if(wp(e))throw Px(),Error(W(418));for(;t;)Ox(e,t),t=Pr(t.nextSibling)}if(rg(e),e.tag===13){if(e=e.memoizedState,e=e!==null?e.dehydrated:null,!e)throw Error(W(317));e:{for(e=e.nextSibling,t=0;e;){if(e.nodeType===8){var n=e.data;if(n===\"/$\"){if(t===0){$t=Pr(e.nextSibling);break e}t--}else n!==\"$\"&&n!==\"$!\"&&n!==\"$?\"||t++}e=e.nextSibling}$t=null}}else $t=Mt?Pr(e.stateNode.nextSibling):null;return!0}function Px(){for(var e=$t;e;)e=Pr(e.nextSibling)}function Pi(){$t=Mt=null,Ne=!1}function xm(e){hn===null?hn=[e]:hn.push(e)}var VN=pr.ReactCurrentBatchConfig;function fn(e,t){if(e&&e.defaultProps){t=$e({},t),e=e.defaultProps;for(var n in e)t[n]===void 0&&(t[n]=e[n]);return t}return t}var Lc=Qr(null),Oc=null,di=null,wm=null;function _m(){wm=di=Oc=null}function Sm(e){var t=Lc.current;ke(Lc),e._currentValue=t}function Sp(e,t,n){for(;e!==null;){var r=e.alternate;if((e.childLanes&t)!==t?(e.childLanes|=t,r!==null&&(r.childLanes|=t)):r!==null&&(r.childLanes&t)!==t&&(r.childLanes|=t),e===n)break;e=e.return}}function Si(e,t){Oc=e,wm=di=null,e=e.dependencies,e!==null&&e.firstContext!==null&&(e.lanes&t&&(Nt=!0),e.firstContext=null)}function en(e){var t=e._currentValue;if(wm!==e)if(e={context:e,memoizedValue:t,next:null},di===null){if(Oc===null)throw Error(W(308));di=e,Oc.dependencies={lanes:0,firstContext:e}}else di=di.next=e;return t}var ho=null;function Cm(e){ho===null?ho=[e]:ho.push(e)}function $x(e,t,n,r){var o=t.interleaved;return o===null?(n.next=n,Cm(t)):(n.next=o.next,o.next=n),t.interleaved=n,ir(e,r)}function ir(e,t){e.lanes|=t;var n=e.alternate;for(n!==null&&(n.lanes|=t),n=e,e=e.return;e!==null;)e.childLanes|=t,n=e.alternate,n!==null&&(n.childLanes|=t),n=e,e=e.return;return n.tag===3?n.stateNode:null}var br=!1;function Tm(e){e.updateQueue={baseState:e.memoizedState,firstBaseUpdate:null,lastBaseUpdate:null,shared:{pending:null,interleaved:null,lanes:0},effects:null}}function Fx(e,t){e=e.updateQueue,t.updateQueue===e&&(t.updateQueue={baseState:e.baseState,firstBaseUpdate:e.firstBaseUpdate,lastBaseUpdate:e.lastBaseUpdate,shared:e.shared,effects:e.effects})}function tr(e,t){return{eventTime:e,lane:t,tag:0,payload:null,callback:null,next:null}}function $r(e,t,n){var r=e.updateQueue;if(r===null)return null;if(r=r.shared,pe&2){var o=r.pending;return o===null?t.next=t:(t.next=o.next,o.next=t),r.pending=t,ir(e,n)}return o=r.interleaved,o===null?(t.next=t,Cm(r)):(t.next=o.next,o.next=t),r.interleaved=t,ir(e,n)}function ec(e,t,n){if(t=t.updateQueue,t!==null&&(t=t.shared,(n&4194240)!==0)){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,fm(e,n)}}function og(e,t){var n=e.updateQueue,r=e.alternate;if(r!==null&&(r=r.updateQueue,n===r)){var o=null,i=null;if(n=n.firstBaseUpdate,n!==null){do{var s={eventTime:n.eventTime,lane:n.lane,tag:n.tag,payload:n.payload,callback:n.callback,next:null};i===null?o=i=s:i=i.next=s,n=n.next}while(n!==null);i===null?o=i=t:i=i.next=t}else o=i=t;n={baseState:r.baseState,firstBaseUpdate:o,lastBaseUpdate:i,shared:r.shared,effects:r.effects},e.updateQueue=n;return}e=n.lastBaseUpdate,e===null?n.firstBaseUpdate=t:e.next=t,n.lastBaseUpdate=t}function Pc(e,t,n,r){var o=e.updateQueue;br=!1;var i=o.firstBaseUpdate,s=o.lastBaseUpdate,a=o.shared.pending;if(a!==null){o.shared.pending=null;var l=a,c=l.next;l.next=null,s===null?i=c:s.next=c,s=l;var u=e.alternate;u!==null&&(u=u.updateQueue,a=u.lastBaseUpdate,a!==s&&(a===null?u.firstBaseUpdate=c:a.next=c,u.lastBaseUpdate=l))}if(i!==null){var d=o.baseState;s=0,u=c=l=null,a=i;do{var p=a.lane,f=a.eventTime;if((r&p)===p){u!==null&&(u=u.next={eventTime:f,lane:0,tag:a.tag,payload:a.payload,callback:a.callback,next:null});e:{var m=e,v=a;switch(p=t,f=n,v.tag){case 1:if(m=v.payload,typeof m==\"function\"){d=m.call(f,d,p);break e}d=m;break e;case 3:m.flags=m.flags&-65537|128;case 0:if(m=v.payload,p=typeof m==\"function\"?m.call(f,d,p):m,p==null)break e;d=$e({},d,p);break e;case 2:br=!0}}a.callback!==null&&a.lane!==0&&(e.flags|=64,p=o.effects,p===null?o.effects=[a]:p.push(a))}else f={eventTime:f,lane:p,tag:a.tag,payload:a.payload,callback:a.callback,next:null},u===null?(c=u=f,l=d):u=u.next=f,s|=p;if(a=a.next,a===null){if(a=o.shared.pending,a===null)break;p=a,a=p.next,p.next=null,o.lastBaseUpdate=p,o.shared.pending=null}}while(1);if(u===null&&(l=d),o.baseState=l,o.firstBaseUpdate=c,o.lastBaseUpdate=u,t=o.shared.interleaved,t!==null){o=t;do s|=o.lane,o=o.next;while(o!==t)}else i===null&&(o.shared.lanes=0);No|=s,e.lanes=s,e.memoizedState=d}}function ig(e,t,n){if(e=t.effects,t.effects=null,e!==null)for(t=0;t<e.length;t++){var r=e[t],o=r.callback;if(o!==null){if(r.callback=null,r=n,typeof o!=\"function\")throw Error(W(191,o));o.call(r)}}}var Mx=new $b.Component().refs;function Cp(e,t,n,r){t=e.memoizedState,n=n(r,t),n=n==null?t:$e({},t,n),e.memoizedState=n,e.lanes===0&&(e.updateQueue.baseState=n)}var Iu={isMounted:function(e){return(e=e._reactInternals)?jo(e)===e:!1},enqueueSetState:function(e,t,n){e=e._reactInternals;var r=xt(),o=Mr(e),i=tr(r,o);i.payload=t,n!=null&&(i.callback=n),t=$r(e,i,o),t!==null&&(wn(t,e,o,r),ec(t,e,o))},enqueueReplaceState:function(e,t,n){e=e._reactInternals;var r=xt(),o=Mr(e),i=tr(r,o);i.tag=1,i.payload=t,n!=null&&(i.callback=n),t=$r(e,i,o),t!==null&&(wn(t,e,o,r),ec(t,e,o))},enqueueForceUpdate:function(e,t){e=e._reactInternals;var n=xt(),r=Mr(e),o=tr(n,r);o.tag=2,t!=null&&(o.callback=t),t=$r(e,o,r),t!==null&&(wn(t,e,r,n),ec(t,e,r))}};function sg(e,t,n,r,o,i,s){return e=e.stateNode,typeof e.shouldComponentUpdate==\"function\"?e.shouldComponentUpdate(r,i,s):t.prototype&&t.prototype.isPureReactComponent?!Ks(n,r)||!Ks(o,i):!0}function Vx(e,t,n){var r=!1,o=Br,i=t.contextType;return typeof i==\"object\"&&i!==null?i=en(i):(o=Dt(t)?Co:mt.current,r=t.contextTypes,i=(r=r!=null)?Oi(e,o):Br),t=new t(n,i),e.memoizedState=t.state!==null&&t.state!==void 0?t.state:null,t.updater=Iu,e.stateNode=t,t._reactInternals=e,r&&(e=e.stateNode,e.__reactInternalMemoizedUnmaskedChildContext=o,e.__reactInternalMemoizedMaskedChildContext=i),t}function ag(e,t,n,r){e=t.state,typeof t.componentWillReceiveProps==\"function\"&&t.componentWillReceiveProps(n,r),typeof t.UNSAFE_componentWillReceiveProps==\"function\"&&t.UNSAFE_componentWillReceiveProps(n,r),t.state!==e&&Iu.enqueueReplaceState(t,t.state,null)}function Tp(e,t,n,r){var o=e.stateNode;o.props=n,o.state=e.memoizedState,o.refs=Mx,Tm(e);var i=t.contextType;typeof i==\"object\"&&i!==null?o.context=en(i):(i=Dt(t)?Co:mt.current,o.context=Oi(e,i)),o.state=e.memoizedState,i=t.getDerivedStateFromProps,typeof i==\"function\"&&(Cp(e,t,i,n),o.state=e.memoizedState),typeof t.getDerivedStateFromProps==\"function\"||typeof o.getSnapshotBeforeUpdate==\"function\"||typeof o.UNSAFE_componentWillMount!=\"function\"&&typeof o.componentWillMount!=\"function\"||(t=o.state,typeof o.componentWillMount==\"function\"&&o.componentWillMount(),typeof o.UNSAFE_componentWillMount==\"function\"&&o.UNSAFE_componentWillMount(),t!==o.state&&Iu.enqueueReplaceState(o,o.state,null),Pc(e,n,o,r),o.state=e.memoizedState),typeof o.componentDidMount==\"function\"&&(e.flags|=4194308)}function hs(e,t,n){if(e=n.ref,e!==null&&typeof e!=\"function\"&&typeof e!=\"object\"){if(n._owner){if(n=n._owner,n){if(n.tag!==1)throw Error(W(309));var r=n.stateNode}if(!r)throw Error(W(147,e));var o=r,i=\"\"+e;return t!==null&&t.ref!==null&&typeof t.ref==\"function\"&&t.ref._stringRef===i?t.ref:(t=function(s){var a=o.refs;a===Mx&&(a=o.refs={}),s===null?delete a[i]:a[i]=s},t._stringRef=i,t)}if(typeof e!=\"string\")throw Error(W(284));if(!n._owner)throw Error(W(290,e))}return e}function gl(e,t){throw e=Object.prototype.toString.call(t),Error(W(31,e===\"[object Object]\"?\"object with keys {\"+Object.keys(t).join(\", \")+\"}\":e))}function lg(e){var t=e._init;return t(e._payload)}function jx(e){function t(y,g){if(e){var E=y.deletions;E===null?(y.deletions=[g],y.flags|=16):E.push(g)}}function n(y,g){if(!e)return null;for(;g!==null;)t(y,g),g=g.sibling;return null}function r(y,g){for(y=new Map;g!==null;)g.key!==null?y.set(g.key,g):y.set(g.index,g),g=g.sibling;return y}function o(y,g){return y=Vr(y,g),y.index=0,y.sibling=null,y}function i(y,g,E){return y.index=E,e?(E=y.alternate,E!==null?(E=E.index,E<g?(y.flags|=2,g):E):(y.flags|=2,g)):(y.flags|=1048576,g)}function s(y){return e&&y.alternate===null&&(y.flags|=2),y}function a(y,g,E,x){return g===null||g.tag!==6?(g=Kf(E,y.mode,x),g.return=y,g):(g=o(g,E),g.return=y,g)}function l(y,g,E,x){var w=E.type;return w===oi?u(y,g,E.props.children,x,E.key):g!==null&&(g.elementType===w||typeof w==\"object\"&&w!==null&&w.$$typeof===Er&&lg(w)===g.type)?(x=o(g,E.props),x.ref=hs(y,g,E),x.return=y,x):(x=sc(E.type,E.key,E.props,null,y.mode,x),x.ref=hs(y,g,E),x.return=y,x)}function c(y,g,E,x){return g===null||g.tag!==4||g.stateNode.containerInfo!==E.containerInfo||g.stateNode.implementation!==E.implementation?(g=ed(E,y.mode,x),g.return=y,g):(g=o(g,E.children||[]),g.return=y,g)}function u(y,g,E,x,w){return g===null||g.tag!==7?(g=bo(E,y.mode,x,w),g.return=y,g):(g=o(g,E),g.return=y,g)}function d(y,g,E){if(typeof g==\"string\"&&g!==\"\"||typeof g==\"number\")return g=Kf(\"\"+g,y.mode,E),g.return=y,g;if(typeof g==\"object\"&&g!==null){switch(g.$$typeof){case sl:return E=sc(g.type,g.key,g.props,null,y.mode,E),E.ref=hs(y,null,g),E.return=y,E;case ri:return g=ed(g,y.mode,E),g.return=y,g;case Er:var x=g._init;return d(y,x(g._payload),E)}if(xs(g)||cs(g))return g=bo(g,y.mode,E,null),g.return=y,g;gl(y,g)}return null}function p(y,g,E,x){var w=g!==null?g.key:null;if(typeof E==\"string\"&&E!==\"\"||typeof E==\"number\")return w!==null?null:a(y,g,\"\"+E,x);if(typeof E==\"object\"&&E!==null){switch(E.$$typeof){case sl:return E.key===w?l(y,g,E,x):null;case ri:return E.key===w?c(y,g,E,x):null;case Er:return w=E._init,p(y,g,w(E._payload),x)}if(xs(E)||cs(E))return w!==null?null:u(y,g,E,x,null);gl(y,E)}return null}function f(y,g,E,x,w){if(typeof x==\"string\"&&x!==\"\"||typeof x==\"number\")return y=y.get(E)||null,a(g,y,\"\"+x,w);if(typeof x==\"object\"&&x!==null){switch(x.$$typeof){case sl:return y=y.get(x.key===null?E:x.key)||null,l(g,y,x,w);case ri:return y=y.get(x.key===null?E:x.key)||null,c(g,y,x,w);case Er:var C=x._init;return f(y,g,E,C(x._payload),w)}if(xs(x)||cs(x))return y=y.get(E)||null,u(g,y,x,w,null);gl(g,x)}return null}function m(y,g,E,x){for(var w=null,C=null,T=g,A=g=0,S=null;T!==null&&A<E.length;A++){T.index>A?(S=T,T=null):S=T.sibling;var k=p(y,T,E[A],x);if(k===null){T===null&&(T=S);break}e&&T&&k.alternate===null&&t(y,T),g=i(k,g,A),C===null?w=k:C.sibling=k,C=k,T=S}if(A===E.length)return n(y,T),Ne&&lo(y,A),w;if(T===null){for(;A<E.length;A++)T=d(y,E[A],x),T!==null&&(g=i(T,g,A),C===null?w=T:C.sibling=T,C=T);return Ne&&lo(y,A),w}for(T=r(y,T);A<E.length;A++)S=f(T,y,A,E[A],x),S!==null&&(e&&S.alternate!==null&&T.delete(S.key===null?A:S.key),g=i(S,g,A),C===null?w=S:C.sibling=S,C=S);return e&&T.forEach(function(q){return t(y,q)}),Ne&&lo(y,A),w}function v(y,g,E,x){var w=cs(E);if(typeof w!=\"function\")throw Error(W(150));if(E=w.call(E),E==null)throw Error(W(151));for(var C=w=null,T=g,A=g=0,S=null,k=E.next();T!==null&&!k.done;A++,k=E.next()){T.index>A?(S=T,T=null):S=T.sibling;var q=p(y,T,k.value,x);if(q===null){T===null&&(T=S);break}e&&T&&q.alternate===null&&t(y,T),g=i(q,g,A),C===null?w=q:C.sibling=q,C=q,T=S}if(k.done)return n(y,T),Ne&&lo(y,A),w;if(T===null){for(;!k.done;A++,k=E.next())k=d(y,k.value,x),k!==null&&(g=i(k,g,A),C===null?w=k:C.sibling=k,C=k);return Ne&&lo(y,A),w}for(T=r(y,T);!k.done;A++,k=E.next())k=f(T,y,A,k.value,x),k!==null&&(e&&k.alternate!==null&&T.delete(k.key===null?A:k.key),g=i(k,g,A),C===null?w=k:C.sibling=k,C=k);return e&&T.forEach(function(H){return t(y,H)}),Ne&&lo(y,A),w}function b(y,g,E,x){if(typeof E==\"object\"&&E!==null&&E.type===oi&&E.key===null&&(E=E.props.children),typeof E==\"object\"&&E!==null){switch(E.$$typeof){case sl:e:{for(var w=E.key,C=g;C!==null;){if(C.key===w){if(w=E.type,w===oi){if(C.tag===7){n(y,C.sibling),g=o(C,E.props.children),g.return=y,y=g;break e}}else if(C.elementType===w||typeof w==\"object\"&&w!==null&&w.$$typeof===Er&&lg(w)===C.type){n(y,C.sibling),g=o(C,E.props),g.ref=hs(y,C,E),g.return=y,y=g;break e}n(y,C);break}else t(y,C);C=C.sibling}E.type===oi?(g=bo(E.props.children,y.mode,x,E.key),g.return=y,y=g):(x=sc(E.type,E.key,E.props,null,y.mode,x),x.ref=hs(y,g,E),x.return=y,y=x)}return s(y);case ri:e:{for(C=E.key;g!==null;){if(g.key===C)if(g.tag===4&&g.stateNode.containerInfo===E.containerInfo&&g.stateNode.implementation===E.implementation){n(y,g.sibling),g=o(g,E.children||[]),g.return=y,y=g;break e}else{n(y,g);break}else t(y,g);g=g.sibling}g=ed(E,y.mode,x),g.return=y,y=g}return s(y);case Er:return C=E._init,b(y,g,C(E._payload),x)}if(xs(E))return m(y,g,E,x);if(cs(E))return v(y,g,E,x);gl(y,E)}return typeof E==\"string\"&&E!==\"\"||typeof E==\"number\"?(E=\"\"+E,g!==null&&g.tag===6?(n(y,g.sibling),g=o(g,E),g.return=y,y=g):(n(y,g),g=Kf(E,y.mode,x),g.return=y,y=g),s(y)):n(y,g)}return b}var $i=jx(!0),qx=jx(!1),Ma={},Mn=Qr(Ma),ra=Qr(Ma),oa=Qr(Ma);function mo(e){if(e===Ma)throw Error(W(174));return e}function km(e,t){switch(Ce(oa,t),Ce(ra,e),Ce(Mn,Ma),e=t.nodeType,e){case 9:case 11:t=(t=t.documentElement)?t.namespaceURI:op(null,\"\");break;default:e=e===8?t.parentNode:t,t=e.namespaceURI||null,e=e.tagName,t=op(t,e)}ke(Mn),Ce(Mn,t)}function Fi(){ke(Mn),ke(ra),ke(oa)}function Ux(e){mo(oa.current);var t=mo(Mn.current),n=op(t,e.type);t!==n&&(Ce(ra,e),Ce(Mn,n))}function Nm(e){ra.current===e&&(ke(Mn),ke(ra))}var Le=Qr(0);function $c(e){for(var t=e;t!==null;){if(t.tag===13){var n=t.memoizedState;if(n!==null&&(n=n.dehydrated,n===null||n.data===\"$?\"||n.data===\"$!\"))return t}else if(t.tag===19&&t.memoizedProps.revealOrder!==void 0){if(t.flags&128)return t}else if(t.child!==null){t.child.return=t,t=t.child;continue}if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return null;t=t.return}t.sibling.return=t.return,t=t.sibling}return null}var Wf=[];function Am(){for(var e=0;e<Wf.length;e++)Wf[e]._workInProgressVersionPrimary=null;Wf.length=0}var tc=pr.ReactCurrentDispatcher,Qf=pr.ReactCurrentBatchConfig,ko=0,Pe=null,We=null,Ze=null,Fc=!1,Ls=!1,ia=0,jN=0;function ut(){throw Error(W(321))}function Dm(e,t){if(t===null)return!1;for(var n=0;n<t.length&&n<e.length;n++)if(!Cn(e[n],t[n]))return!1;return!0}function Im(e,t,n,r,o,i){if(ko=i,Pe=t,t.memoizedState=null,t.updateQueue=null,t.lanes=0,tc.current=e===null||e.memoizedState===null?zN:HN,e=n(r,o),Ls){i=0;do{if(Ls=!1,ia=0,25<=i)throw Error(W(301));i+=1,Ze=We=null,t.updateQueue=null,tc.current=GN,e=n(r,o)}while(Ls)}if(tc.current=Mc,t=We!==null&&We.next!==null,ko=0,Ze=We=Pe=null,Fc=!1,t)throw Error(W(300));return e}function Rm(){var e=ia!==0;return ia=0,e}function Rn(){var e={memoizedState:null,baseState:null,baseQueue:null,queue:null,next:null};return Ze===null?Pe.memoizedState=Ze=e:Ze=Ze.next=e,Ze}function tn(){if(We===null){var e=Pe.alternate;e=e!==null?e.memoizedState:null}else e=We.next;var t=Ze===null?Pe.memoizedState:Ze.next;if(t!==null)Ze=t,We=e;else{if(e===null)throw Error(W(310));We=e,e={memoizedState:We.memoizedState,baseState:We.baseState,baseQueue:We.baseQueue,queue:We.queue,next:null},Ze===null?Pe.memoizedState=Ze=e:Ze=Ze.next=e}return Ze}function sa(e,t){return typeof t==\"function\"?t(e):t}function Yf(e){var t=tn(),n=t.queue;if(n===null)throw Error(W(311));n.lastRenderedReducer=e;var r=We,o=r.baseQueue,i=n.pending;if(i!==null){if(o!==null){var s=o.next;o.next=i.next,i.next=s}r.baseQueue=o=i,n.pending=null}if(o!==null){i=o.next,r=r.baseState;var a=s=null,l=null,c=i;do{var u=c.lane;if((ko&u)===u)l!==null&&(l=l.next={lane:0,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null}),r=c.hasEagerState?c.eagerState:e(r,c.action);else{var d={lane:u,action:c.action,hasEagerState:c.hasEagerState,eagerState:c.eagerState,next:null};l===null?(a=l=d,s=r):l=l.next=d,Pe.lanes|=u,No|=u}c=c.next}while(c!==null&&c!==i);l===null?s=r:l.next=a,Cn(r,t.memoizedState)||(Nt=!0),t.memoizedState=r,t.baseState=s,t.baseQueue=l,n.lastRenderedState=r}if(e=n.interleaved,e!==null){o=e;do i=o.lane,Pe.lanes|=i,No|=i,o=o.next;while(o!==e)}else o===null&&(n.lanes=0);return[t.memoizedState,n.dispatch]}function Zf(e){var t=tn(),n=t.queue;if(n===null)throw Error(W(311));n.lastRenderedReducer=e;var r=n.dispatch,o=n.pending,i=t.memoizedState;if(o!==null){n.pending=null;var s=o=o.next;do i=e(i,s.action),s=s.next;while(s!==o);Cn(i,t.memoizedState)||(Nt=!0),t.memoizedState=i,t.baseQueue===null&&(t.baseState=i),n.lastRenderedState=i}return[i,r]}function Bx(){}function zx(e,t){var n=Pe,r=tn(),o=t(),i=!Cn(r.memoizedState,o);if(i&&(r.memoizedState=o,Nt=!0),r=r.queue,Lm(Wx.bind(null,n,r,e),[e]),r.getSnapshot!==t||i||Ze!==null&&Ze.memoizedState.tag&1){if(n.flags|=2048,aa(9,Gx.bind(null,n,r,o,t),void 0,null),Je===null)throw Error(W(349));ko&30||Hx(n,t,o)}return o}function Hx(e,t,n){e.flags|=16384,e={getSnapshot:t,value:n},t=Pe.updateQueue,t===null?(t={lastEffect:null,stores:null},Pe.updateQueue=t,t.stores=[e]):(n=t.stores,n===null?t.stores=[e]:n.push(e))}function Gx(e,t,n,r){t.value=n,t.getSnapshot=r,Qx(t)&&Yx(e)}function Wx(e,t,n){return n(function(){Qx(t)&&Yx(e)})}function Qx(e){var t=e.getSnapshot;e=e.value;try{var n=t();return!Cn(e,n)}catch{return!0}}function Yx(e){var t=ir(e,1);t!==null&&wn(t,e,1,-1)}function cg(e){var t=Rn();return typeof e==\"function\"&&(e=e()),t.memoizedState=t.baseState=e,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:sa,lastRenderedState:e},t.queue=e,e=e.dispatch=BN.bind(null,Pe,e),[t.memoizedState,e]}function aa(e,t,n,r){return e={tag:e,create:t,destroy:n,deps:r,next:null},t=Pe.updateQueue,t===null?(t={lastEffect:null,stores:null},Pe.updateQueue=t,t.lastEffect=e.next=e):(n=t.lastEffect,n===null?t.lastEffect=e.next=e:(r=n.next,n.next=e,e.next=r,t.lastEffect=e)),e}function Zx(){return tn().memoizedState}function nc(e,t,n,r){var o=Rn();Pe.flags|=e,o.memoizedState=aa(1|t,n,void 0,r===void 0?null:r)}function Ru(e,t,n,r){var o=tn();r=r===void 0?null:r;var i=void 0;if(We!==null){var s=We.memoizedState;if(i=s.destroy,r!==null&&Dm(r,s.deps)){o.memoizedState=aa(t,n,i,r);return}}Pe.flags|=e,o.memoizedState=aa(1|t,n,i,r)}function ug(e,t){return nc(8390656,8,e,t)}function Lm(e,t){return Ru(2048,8,e,t)}function Xx(e,t){return Ru(4,2,e,t)}function Jx(e,t){return Ru(4,4,e,t)}function Kx(e,t){if(typeof t==\"function\")return e=e(),t(e),function(){t(null)};if(t!=null)return e=e(),t.current=e,function(){t.current=null}}function ew(e,t,n){return n=n!=null?n.concat([e]):null,Ru(4,4,Kx.bind(null,t,e),n)}function Om(){}function tw(e,t){var n=tn();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&Dm(t,r[1])?r[0]:(n.memoizedState=[e,t],e)}function nw(e,t){var n=tn();t=t===void 0?null:t;var r=n.memoizedState;return r!==null&&t!==null&&Dm(t,r[1])?r[0]:(e=e(),n.memoizedState=[e,t],e)}function rw(e,t,n){return ko&21?(Cn(n,t)||(n=sx(),Pe.lanes|=n,No|=n,e.baseState=!0),t):(e.baseState&&(e.baseState=!1,Nt=!0),e.memoizedState=n)}function qN(e,t){var n=Ee;Ee=n!==0&&4>n?n:4,e(!0);var r=Qf.transition;Qf.transition={};try{e(!1),t()}finally{Ee=n,Qf.transition=r}}function ow(){return tn().memoizedState}function UN(e,t,n){var r=Mr(e);if(n={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null},iw(e))sw(t,n);else if(n=$x(e,t,n,r),n!==null){var o=xt();wn(n,e,r,o),aw(n,t,r)}}function BN(e,t,n){var r=Mr(e),o={lane:r,action:n,hasEagerState:!1,eagerState:null,next:null};if(iw(e))sw(t,o);else{var i=e.alternate;if(e.lanes===0&&(i===null||i.lanes===0)&&(i=t.lastRenderedReducer,i!==null))try{var s=t.lastRenderedState,a=i(s,n);if(o.hasEagerState=!0,o.eagerState=a,Cn(a,s)){var l=t.interleaved;l===null?(o.next=o,Cm(t)):(o.next=l.next,l.next=o),t.interleaved=o;return}}catch{}finally{}n=$x(e,t,o,r),n!==null&&(o=xt(),wn(n,e,r,o),aw(n,t,r))}}function iw(e){var t=e.alternate;return e===Pe||t!==null&&t===Pe}function sw(e,t){Ls=Fc=!0;var n=e.pending;n===null?t.next=t:(t.next=n.next,n.next=t),e.pending=t}function aw(e,t,n){if(n&4194240){var r=t.lanes;r&=e.pendingLanes,n|=r,t.lanes=n,fm(e,n)}}var Mc={readContext:en,useCallback:ut,useContext:ut,useEffect:ut,useImperativeHandle:ut,useInsertionEffect:ut,useLayoutEffect:ut,useMemo:ut,useReducer:ut,useRef:ut,useState:ut,useDebugValue:ut,useDeferredValue:ut,useTransition:ut,useMutableSource:ut,useSyncExternalStore:ut,useId:ut,unstable_isNewReconciler:!1},zN={readContext:en,useCallback:function(e,t){return Rn().memoizedState=[e,t===void 0?null:t],e},useContext:en,useEffect:ug,useImperativeHandle:function(e,t,n){return n=n!=null?n.concat([e]):null,nc(4194308,4,Kx.bind(null,t,e),n)},useLayoutEffect:function(e,t){return nc(4194308,4,e,t)},useInsertionEffect:function(e,t){return nc(4,2,e,t)},useMemo:function(e,t){var n=Rn();return t=t===void 0?null:t,e=e(),n.memoizedState=[e,t],e},useReducer:function(e,t,n){var r=Rn();return t=n!==void 0?n(t):t,r.memoizedState=r.baseState=t,e={pending:null,interleaved:null,lanes:0,dispatch:null,lastRenderedReducer:e,lastRenderedState:t},r.queue=e,e=e.dispatch=UN.bind(null,Pe,e),[r.memoizedState,e]},useRef:function(e){var t=Rn();return e={current:e},t.memoizedState=e},useState:cg,useDebugValue:Om,useDeferredValue:function(e){return Rn().memoizedState=e},useTransition:function(){var e=cg(!1),t=e[0];return e=qN.bind(null,e[1]),Rn().memoizedState=e,[t,e]},useMutableSource:function(){},useSyncExternalStore:function(e,t,n){var r=Pe,o=Rn();if(Ne){if(n===void 0)throw Error(W(407));n=n()}else{if(n=t(),Je===null)throw Error(W(349));ko&30||Hx(r,t,n)}o.memoizedState=n;var i={value:n,getSnapshot:t};return o.queue=i,ug(Wx.bind(null,r,i,e),[e]),r.flags|=2048,aa(9,Gx.bind(null,r,i,n,t),void 0,null),n},useId:function(){var e=Rn(),t=Je.identifierPrefix;if(Ne){var n=er,r=Kn;n=(r&~(1<<32-xn(r)-1)).toString(32)+n,t=\":\"+t+\"R\"+n,n=ia++,0<n&&(t+=\"H\"+n.toString(32)),t+=\":\"}else n=jN++,t=\":\"+t+\"r\"+n.toString(32)+\":\";return e.memoizedState=t},unstable_isNewReconciler:!1},HN={readContext:en,useCallback:tw,useContext:en,useEffect:Lm,useImperativeHandle:ew,useInsertionEffect:Xx,useLayoutEffect:Jx,useMemo:nw,useReducer:Yf,useRef:Zx,useState:function(){return Yf(sa)},useDebugValue:Om,useDeferredValue:function(e){var t=tn();return rw(t,We.memoizedState,e)},useTransition:function(){var e=Yf(sa)[0],t=tn().memoizedState;return[e,t]},useMutableSource:Bx,useSyncExternalStore:zx,useId:ow,unstable_isNewReconciler:!1},GN={readContext:en,useCallback:tw,useContext:en,useEffect:Lm,useImperativeHandle:ew,useInsertionEffect:Xx,useLayoutEffect:Jx,useMemo:nw,useReducer:Zf,useRef:Zx,useState:function(){return Zf(sa)},useDebugValue:Om,useDeferredValue:function(e){var t=tn();return We===null?t.memoizedState=e:rw(t,We.memoizedState,e)},useTransition:function(){var e=Zf(sa)[0],t=tn().memoizedState;return[e,t]},useMutableSource:Bx,useSyncExternalStore:zx,useId:ow,unstable_isNewReconciler:!1};function Mi(e,t){try{var n=\"\",r=t;do n+=bk(r),r=r.return;while(r);var o=n}catch(i){o=`\nError generating stack: `+i.message+`\n`+i.stack}return{value:e,source:t,stack:o,digest:null}}function Xf(e,t,n){return{value:e,source:null,stack:n??null,digest:t??null}}function kp(e,t){try{console.error(t.value)}catch(n){setTimeout(function(){throw n})}}var WN=typeof WeakMap==\"function\"?WeakMap:Map;function lw(e,t,n){n=tr(-1,n),n.tag=3,n.payload={element:null};var r=t.value;return n.callback=function(){jc||(jc=!0,Fp=r),kp(e,t)},n}function cw(e,t,n){n=tr(-1,n),n.tag=3;var r=e.type.getDerivedStateFromError;if(typeof r==\"function\"){var o=t.value;n.payload=function(){return r(o)},n.callback=function(){kp(e,t)}}var i=e.stateNode;return i!==null&&typeof i.componentDidCatch==\"function\"&&(n.callback=function(){kp(e,t),typeof r!=\"function\"&&(Fr===null?Fr=new Set([this]):Fr.add(this));var s=t.stack;this.componentDidCatch(t.value,{componentStack:s!==null?s:\"\"})}),n}function fg(e,t,n){var r=e.pingCache;if(r===null){r=e.pingCache=new WN;var o=new Set;r.set(t,o)}else o=r.get(t),o===void 0&&(o=new Set,r.set(t,o));o.has(n)||(o.add(n),e=aA.bind(null,e,t,n),t.then(e,e))}function dg(e){do{var t;if((t=e.tag===13)&&(t=e.memoizedState,t=t!==null?t.dehydrated!==null:!0),t)return e;e=e.return}while(e!==null);return null}function pg(e,t,n,r,o){return e.mode&1?(e.flags|=65536,e.lanes=o,e):(e===t?e.flags|=65536:(e.flags|=128,n.flags|=131072,n.flags&=-52805,n.tag===1&&(n.alternate===null?n.tag=17:(t=tr(-1,1),t.tag=2,$r(n,t,1))),n.lanes|=1),e)}var QN=pr.ReactCurrentOwner,Nt=!1;function bt(e,t,n,r){t.child=e===null?qx(t,null,n,r):$i(t,e.child,n,r)}function hg(e,t,n,r,o){n=n.render;var i=t.ref;return Si(t,o),r=Im(e,t,n,r,i,o),n=Rm(),e!==null&&!Nt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,sr(e,t,o)):(Ne&&n&&Em(t),t.flags|=1,bt(e,t,r,o),t.child)}function mg(e,t,n,r,o){if(e===null){var i=n.type;return typeof i==\"function\"&&!Um(i)&&i.defaultProps===void 0&&n.compare===null&&n.defaultProps===void 0?(t.tag=15,t.type=i,uw(e,t,i,r,o)):(e=sc(n.type,null,r,t,t.mode,o),e.ref=t.ref,e.return=t,t.child=e)}if(i=e.child,!(e.lanes&o)){var s=i.memoizedProps;if(n=n.compare,n=n!==null?n:Ks,n(s,r)&&e.ref===t.ref)return sr(e,t,o)}return t.flags|=1,e=Vr(i,r),e.ref=t.ref,e.return=t,t.child=e}function uw(e,t,n,r,o){if(e!==null){var i=e.memoizedProps;if(Ks(i,r)&&e.ref===t.ref)if(Nt=!1,t.pendingProps=r=i,(e.lanes&o)!==0)e.flags&131072&&(Nt=!0);else return t.lanes=e.lanes,sr(e,t,o)}return Np(e,t,n,r,o)}function fw(e,t,n){var r=t.pendingProps,o=r.children,i=e!==null?e.memoizedState:null;if(r.mode===\"hidden\")if(!(t.mode&1))t.memoizedState={baseLanes:0,cachePool:null,transitions:null},Ce(hi,Ot),Ot|=n;else{if(!(n&1073741824))return e=i!==null?i.baseLanes|n:n,t.lanes=t.childLanes=1073741824,t.memoizedState={baseLanes:e,cachePool:null,transitions:null},t.updateQueue=null,Ce(hi,Ot),Ot|=e,null;t.memoizedState={baseLanes:0,cachePool:null,transitions:null},r=i!==null?i.baseLanes:n,Ce(hi,Ot),Ot|=r}else i!==null?(r=i.baseLanes|n,t.memoizedState=null):r=n,Ce(hi,Ot),Ot|=r;return bt(e,t,o,n),t.child}function dw(e,t){var n=t.ref;(e===null&&n!==null||e!==null&&e.ref!==n)&&(t.flags|=512,t.flags|=2097152)}function Np(e,t,n,r,o){var i=Dt(n)?Co:mt.current;return i=Oi(t,i),Si(t,o),n=Im(e,t,n,r,i,o),r=Rm(),e!==null&&!Nt?(t.updateQueue=e.updateQueue,t.flags&=-2053,e.lanes&=~o,sr(e,t,o)):(Ne&&r&&Em(t),t.flags|=1,bt(e,t,n,o),t.child)}function vg(e,t,n,r,o){if(Dt(n)){var i=!0;Dc(t)}else i=!1;if(Si(t,o),t.stateNode===null)rc(e,t),Vx(t,n,r),Tp(t,n,r,o),r=!0;else if(e===null){var s=t.stateNode,a=t.memoizedProps;s.props=a;var l=s.context,c=n.contextType;typeof c==\"object\"&&c!==null?c=en(c):(c=Dt(n)?Co:mt.current,c=Oi(t,c));var u=n.getDerivedStateFromProps,d=typeof u==\"function\"||typeof s.getSnapshotBeforeUpdate==\"function\";d||typeof s.UNSAFE_componentWillReceiveProps!=\"function\"&&typeof s.componentWillReceiveProps!=\"function\"||(a!==r||l!==c)&&ag(t,s,r,c),br=!1;var p=t.memoizedState;s.state=p,Pc(t,r,s,o),l=t.memoizedState,a!==r||p!==l||At.current||br?(typeof u==\"function\"&&(Cp(t,n,u,r),l=t.memoizedState),(a=br||sg(t,n,a,r,p,l,c))?(d||typeof s.UNSAFE_componentWillMount!=\"function\"&&typeof s.componentWillMount!=\"function\"||(typeof s.componentWillMount==\"function\"&&s.componentWillMount(),typeof s.UNSAFE_componentWillMount==\"function\"&&s.UNSAFE_componentWillMount()),typeof s.componentDidMount==\"function\"&&(t.flags|=4194308)):(typeof s.componentDidMount==\"function\"&&(t.flags|=4194308),t.memoizedProps=r,t.memoizedState=l),s.props=r,s.state=l,s.context=c,r=a):(typeof s.componentDidMount==\"function\"&&(t.flags|=4194308),r=!1)}else{s=t.stateNode,Fx(e,t),a=t.memoizedProps,c=t.type===t.elementType?a:fn(t.type,a),s.props=c,d=t.pendingProps,p=s.context,l=n.contextType,typeof l==\"object\"&&l!==null?l=en(l):(l=Dt(n)?Co:mt.current,l=Oi(t,l));var f=n.getDerivedStateFromProps;(u=typeof f==\"function\"||typeof s.getSnapshotBeforeUpdate==\"function\")||typeof s.UNSAFE_componentWillReceiveProps!=\"function\"&&typeof s.componentWillReceiveProps!=\"function\"||(a!==d||p!==l)&&ag(t,s,r,l),br=!1,p=t.memoizedState,s.state=p,Pc(t,r,s,o);var m=t.memoizedState;a!==d||p!==m||At.current||br?(typeof f==\"function\"&&(Cp(t,n,f,r),m=t.memoizedState),(c=br||sg(t,n,c,r,p,m,l)||!1)?(u||typeof s.UNSAFE_componentWillUpdate!=\"function\"&&typeof s.componentWillUpdate!=\"function\"||(typeof s.componentWillUpdate==\"function\"&&s.componentWillUpdate(r,m,l),typeof s.UNSAFE_componentWillUpdate==\"function\"&&s.UNSAFE_componentWillUpdate(r,m,l)),typeof s.componentDidUpdate==\"function\"&&(t.flags|=4),typeof s.getSnapshotBeforeUpdate==\"function\"&&(t.flags|=1024)):(typeof s.componentDidUpdate!=\"function\"||a===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),typeof s.getSnapshotBeforeUpdate!=\"function\"||a===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),t.memoizedProps=r,t.memoizedState=m),s.props=r,s.state=m,s.context=l,r=c):(typeof s.componentDidUpdate!=\"function\"||a===e.memoizedProps&&p===e.memoizedState||(t.flags|=4),typeof s.getSnapshotBeforeUpdate!=\"function\"||a===e.memoizedProps&&p===e.memoizedState||(t.flags|=1024),r=!1)}return Ap(e,t,n,r,i,o)}function Ap(e,t,n,r,o,i){dw(e,t);var s=(t.flags&128)!==0;if(!r&&!s)return o&&tg(t,n,!1),sr(e,t,i);r=t.stateNode,QN.current=t;var a=s&&typeof n.getDerivedStateFromError!=\"function\"?null:r.render();return t.flags|=1,e!==null&&s?(t.child=$i(t,e.child,null,i),t.child=$i(t,null,a,i)):bt(e,t,a,i),t.memoizedState=r.state,o&&tg(t,n,!0),t.child}function pw(e){var t=e.stateNode;t.pendingContext?eg(e,t.pendingContext,t.pendingContext!==t.context):t.context&&eg(e,t.context,!1),km(e,t.containerInfo)}function gg(e,t,n,r,o){return Pi(),xm(o),t.flags|=256,bt(e,t,n,r),t.child}var Dp={dehydrated:null,treeContext:null,retryLane:0};function Ip(e){return{baseLanes:e,cachePool:null,transitions:null}}function hw(e,t,n){var r=t.pendingProps,o=Le.current,i=!1,s=(t.flags&128)!==0,a;if((a=s)||(a=e!==null&&e.memoizedState===null?!1:(o&2)!==0),a?(i=!0,t.flags&=-129):(e===null||e.memoizedState!==null)&&(o|=1),Ce(Le,o&1),e===null)return _p(t),e=t.memoizedState,e!==null&&(e=e.dehydrated,e!==null)?(t.mode&1?e.data===\"$!\"?t.lanes=8:t.lanes=1073741824:t.lanes=1,null):(s=r.children,e=r.fallback,i?(r=t.mode,i=t.child,s={mode:\"hidden\",children:s},!(r&1)&&i!==null?(i.childLanes=0,i.pendingProps=s):i=Pu(s,r,0,null),e=bo(e,r,n,null),i.return=t,e.return=t,i.sibling=e,t.child=i,t.child.memoizedState=Ip(n),t.memoizedState=Dp,e):Pm(t,s));if(o=e.memoizedState,o!==null&&(a=o.dehydrated,a!==null))return YN(e,t,s,r,a,o,n);if(i){i=r.fallback,s=t.mode,o=e.child,a=o.sibling;var l={mode:\"hidden\",children:r.children};return!(s&1)&&t.child!==o?(r=t.child,r.childLanes=0,r.pendingProps=l,t.deletions=null):(r=Vr(o,l),r.subtreeFlags=o.subtreeFlags&14680064),a!==null?i=Vr(a,i):(i=bo(i,s,n,null),i.flags|=2),i.return=t,r.return=t,r.sibling=i,t.child=r,r=i,i=t.child,s=e.child.memoizedState,s=s===null?Ip(n):{baseLanes:s.baseLanes|n,cachePool:null,transitions:s.transitions},i.memoizedState=s,i.childLanes=e.childLanes&~n,t.memoizedState=Dp,r}return i=e.child,e=i.sibling,r=Vr(i,{mode:\"visible\",children:r.children}),!(t.mode&1)&&(r.lanes=n),r.return=t,r.sibling=null,e!==null&&(n=t.deletions,n===null?(t.deletions=[e],t.flags|=16):n.push(e)),t.child=r,t.memoizedState=null,r}function Pm(e,t){return t=Pu({mode:\"visible\",children:t},e.mode,0,null),t.return=e,e.child=t}function yl(e,t,n,r){return r!==null&&xm(r),$i(t,e.child,null,n),e=Pm(t,t.pendingProps.children),e.flags|=2,t.memoizedState=null,e}function YN(e,t,n,r,o,i,s){if(n)return t.flags&256?(t.flags&=-257,r=Xf(Error(W(422))),yl(e,t,s,r)):t.memoizedState!==null?(t.child=e.child,t.flags|=128,null):(i=r.fallback,o=t.mode,r=Pu({mode:\"visible\",children:r.children},o,0,null),i=bo(i,o,s,null),i.flags|=2,r.return=t,i.return=t,r.sibling=i,t.child=r,t.mode&1&&$i(t,e.child,null,s),t.child.memoizedState=Ip(s),t.memoizedState=Dp,i);if(!(t.mode&1))return yl(e,t,s,null);if(o.data===\"$!\"){if(r=o.nextSibling&&o.nextSibling.dataset,r)var a=r.dgst;return r=a,i=Error(W(419)),r=Xf(i,r,void 0),yl(e,t,s,r)}if(a=(s&e.childLanes)!==0,Nt||a){if(r=Je,r!==null){switch(s&-s){case 4:o=2;break;case 16:o=8;break;case 64:case 128:case 256:case 512:case 1024:case 2048:case 4096:case 8192:case 16384:case 32768:case 65536:case 131072:case 262144:case 524288:case 1048576:case 2097152:case 4194304:case 8388608:case 16777216:case 33554432:case 67108864:o=32;break;case 536870912:o=268435456;break;default:o=0}o=o&(r.suspendedLanes|s)?0:o,o!==0&&o!==i.retryLane&&(i.retryLane=o,ir(e,o),wn(r,e,o,-1))}return qm(),r=Xf(Error(W(421))),yl(e,t,s,r)}return o.data===\"$?\"?(t.flags|=128,t.child=e.child,t=lA.bind(null,e),o._reactRetry=t,null):(e=i.treeContext,$t=Pr(o.nextSibling),Mt=t,Ne=!0,hn=null,e!==null&&(Wt[Qt++]=Kn,Wt[Qt++]=er,Wt[Qt++]=To,Kn=e.id,er=e.overflow,To=t),t=Pm(t,r.children),t.flags|=4096,t)}function yg(e,t,n){e.lanes|=t;var r=e.alternate;r!==null&&(r.lanes|=t),Sp(e.return,t,n)}function Jf(e,t,n,r,o){var i=e.memoizedState;i===null?e.memoizedState={isBackwards:t,rendering:null,renderingStartTime:0,last:r,tail:n,tailMode:o}:(i.isBackwards=t,i.rendering=null,i.renderingStartTime=0,i.last=r,i.tail=n,i.tailMode=o)}function mw(e,t,n){var r=t.pendingProps,o=r.revealOrder,i=r.tail;if(bt(e,t,r.children,n),r=Le.current,r&2)r=r&1|2,t.flags|=128;else{if(e!==null&&e.flags&128)e:for(e=t.child;e!==null;){if(e.tag===13)e.memoizedState!==null&&yg(e,n,t);else if(e.tag===19)yg(e,n,t);else if(e.child!==null){e.child.return=e,e=e.child;continue}if(e===t)break e;for(;e.sibling===null;){if(e.return===null||e.return===t)break e;e=e.return}e.sibling.return=e.return,e=e.sibling}r&=1}if(Ce(Le,r),!(t.mode&1))t.memoizedState=null;else switch(o){case\"forwards\":for(n=t.child,o=null;n!==null;)e=n.alternate,e!==null&&$c(e)===null&&(o=n),n=n.sibling;n=o,n===null?(o=t.child,t.child=null):(o=n.sibling,n.sibling=null),Jf(t,!1,o,n,i);break;case\"backwards\":for(n=null,o=t.child,t.child=null;o!==null;){if(e=o.alternate,e!==null&&$c(e)===null){t.child=o;break}e=o.sibling,o.sibling=n,n=o,o=e}Jf(t,!0,n,null,i);break;case\"together\":Jf(t,!1,null,null,void 0);break;default:t.memoizedState=null}return t.child}function rc(e,t){!(t.mode&1)&&e!==null&&(e.alternate=null,t.alternate=null,t.flags|=2)}function sr(e,t,n){if(e!==null&&(t.dependencies=e.dependencies),No|=t.lanes,!(n&t.childLanes))return null;if(e!==null&&t.child!==e.child)throw Error(W(153));if(t.child!==null){for(e=t.child,n=Vr(e,e.pendingProps),t.child=n,n.return=t;e.sibling!==null;)e=e.sibling,n=n.sibling=Vr(e,e.pendingProps),n.return=t;n.sibling=null}return t.child}function ZN(e,t,n){switch(t.tag){case 3:pw(t),Pi();break;case 5:Ux(t);break;case 1:Dt(t.type)&&Dc(t);break;case 4:km(t,t.stateNode.containerInfo);break;case 10:var r=t.type._context,o=t.memoizedProps.value;Ce(Lc,r._currentValue),r._currentValue=o;break;case 13:if(r=t.memoizedState,r!==null)return r.dehydrated!==null?(Ce(Le,Le.current&1),t.flags|=128,null):n&t.child.childLanes?hw(e,t,n):(Ce(Le,Le.current&1),e=sr(e,t,n),e!==null?e.sibling:null);Ce(Le,Le.current&1);break;case 19:if(r=(n&t.childLanes)!==0,e.flags&128){if(r)return mw(e,t,n);t.flags|=128}if(o=t.memoizedState,o!==null&&(o.rendering=null,o.tail=null,o.lastEffect=null),Ce(Le,Le.current),r)break;return null;case 22:case 23:return t.lanes=0,fw(e,t,n)}return sr(e,t,n)}var vw,Rp,gw,yw;vw=function(e,t){for(var n=t.child;n!==null;){if(n.tag===5||n.tag===6)e.appendChild(n.stateNode);else if(n.tag!==4&&n.child!==null){n.child.return=n,n=n.child;continue}if(n===t)break;for(;n.sibling===null;){if(n.return===null||n.return===t)return;n=n.return}n.sibling.return=n.return,n=n.sibling}};Rp=function(){};gw=function(e,t,n,r){var o=e.memoizedProps;if(o!==r){e=t.stateNode,mo(Mn.current);var i=null;switch(n){case\"input\":o=ep(e,o),r=ep(e,r),i=[];break;case\"select\":o=$e({},o,{value:void 0}),r=$e({},r,{value:void 0}),i=[];break;case\"textarea\":o=rp(e,o),r=rp(e,r),i=[];break;default:typeof o.onClick!=\"function\"&&typeof r.onClick==\"function\"&&(e.onclick=Nc)}ip(n,r);var s;n=null;for(c in o)if(!r.hasOwnProperty(c)&&o.hasOwnProperty(c)&&o[c]!=null)if(c===\"style\"){var a=o[c];for(s in a)a.hasOwnProperty(s)&&(n||(n={}),n[s]=\"\")}else c!==\"dangerouslySetInnerHTML\"&&c!==\"children\"&&c!==\"suppressContentEditableWarning\"&&c!==\"suppressHydrationWarning\"&&c!==\"autoFocus\"&&(Gs.hasOwnProperty(c)?i||(i=[]):(i=i||[]).push(c,null));for(c in r){var l=r[c];if(a=o!=null?o[c]:void 0,r.hasOwnProperty(c)&&l!==a&&(l!=null||a!=null))if(c===\"style\")if(a){for(s in a)!a.hasOwnProperty(s)||l&&l.hasOwnProperty(s)||(n||(n={}),n[s]=\"\");for(s in l)l.hasOwnProperty(s)&&a[s]!==l[s]&&(n||(n={}),n[s]=l[s])}else n||(i||(i=[]),i.push(c,n)),n=l;else c===\"dangerouslySetInnerHTML\"?(l=l?l.__html:void 0,a=a?a.__html:void 0,l!=null&&a!==l&&(i=i||[]).push(c,l)):c===\"children\"?typeof l!=\"string\"&&typeof l!=\"number\"||(i=i||[]).push(c,\"\"+l):c!==\"suppressContentEditableWarning\"&&c!==\"suppressHydrationWarning\"&&(Gs.hasOwnProperty(c)?(l!=null&&c===\"onScroll\"&&Te(\"scroll\",e),i||a===l||(i=[])):(i=i||[]).push(c,l))}n&&(i=i||[]).push(\"style\",n);var c=i;(t.updateQueue=c)&&(t.flags|=4)}};yw=function(e,t,n,r){n!==r&&(t.flags|=4)};function ms(e,t){if(!Ne)switch(e.tailMode){case\"hidden\":t=e.tail;for(var n=null;t!==null;)t.alternate!==null&&(n=t),t=t.sibling;n===null?e.tail=null:n.sibling=null;break;case\"collapsed\":n=e.tail;for(var r=null;n!==null;)n.alternate!==null&&(r=n),n=n.sibling;r===null?t||e.tail===null?e.tail=null:e.tail.sibling=null:r.sibling=null}}function ft(e){var t=e.alternate!==null&&e.alternate.child===e.child,n=0,r=0;if(t)for(var o=e.child;o!==null;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags&14680064,r|=o.flags&14680064,o.return=e,o=o.sibling;else for(o=e.child;o!==null;)n|=o.lanes|o.childLanes,r|=o.subtreeFlags,r|=o.flags,o.return=e,o=o.sibling;return e.subtreeFlags|=r,e.childLanes=n,t}function XN(e,t,n){var r=t.pendingProps;switch(bm(t),t.tag){case 2:case 16:case 15:case 0:case 11:case 7:case 8:case 12:case 9:case 14:return ft(t),null;case 1:return Dt(t.type)&&Ac(),ft(t),null;case 3:return r=t.stateNode,Fi(),ke(At),ke(mt),Am(),r.pendingContext&&(r.context=r.pendingContext,r.pendingContext=null),(e===null||e.child===null)&&(vl(t)?t.flags|=4:e===null||e.memoizedState.isDehydrated&&!(t.flags&256)||(t.flags|=1024,hn!==null&&(jp(hn),hn=null))),Rp(e,t),ft(t),null;case 5:Nm(t);var o=mo(oa.current);if(n=t.type,e!==null&&t.stateNode!=null)gw(e,t,n,r,o),e.ref!==t.ref&&(t.flags|=512,t.flags|=2097152);else{if(!r){if(t.stateNode===null)throw Error(W(166));return ft(t),null}if(e=mo(Mn.current),vl(t)){r=t.stateNode,n=t.type;var i=t.memoizedProps;switch(r[On]=t,r[na]=i,e=(t.mode&1)!==0,n){case\"dialog\":Te(\"cancel\",r),Te(\"close\",r);break;case\"iframe\":case\"object\":case\"embed\":Te(\"load\",r);break;case\"video\":case\"audio\":for(o=0;o<_s.length;o++)Te(_s[o],r);break;case\"source\":Te(\"error\",r);break;case\"img\":case\"image\":case\"link\":Te(\"error\",r),Te(\"load\",r);break;case\"details\":Te(\"toggle\",r);break;case\"input\":k0(r,i),Te(\"invalid\",r);break;case\"select\":r._wrapperState={wasMultiple:!!i.multiple},Te(\"invalid\",r);break;case\"textarea\":A0(r,i),Te(\"invalid\",r)}ip(n,i),o=null;for(var s in i)if(i.hasOwnProperty(s)){var a=i[s];s===\"children\"?typeof a==\"string\"?r.textContent!==a&&(i.suppressHydrationWarning!==!0&&ml(r.textContent,a,e),o=[\"children\",a]):typeof a==\"number\"&&r.textContent!==\"\"+a&&(i.suppressHydrationWarning!==!0&&ml(r.textContent,a,e),o=[\"children\",\"\"+a]):Gs.hasOwnProperty(s)&&a!=null&&s===\"onScroll\"&&Te(\"scroll\",r)}switch(n){case\"input\":al(r),N0(r,i,!0);break;case\"textarea\":al(r),D0(r);break;case\"select\":case\"option\":break;default:typeof i.onClick==\"function\"&&(r.onclick=Nc)}r=o,t.updateQueue=r,r!==null&&(t.flags|=4)}else{s=o.nodeType===9?o:o.ownerDocument,e===\"http://www.w3.org/1999/xhtml\"&&(e=Hb(n)),e===\"http://www.w3.org/1999/xhtml\"?n===\"script\"?(e=s.createElement(\"div\"),e.innerHTML=\"<script><\\/script>\",e=e.removeChild(e.firstChild)):typeof r.is==\"string\"?e=s.createElement(n,{is:r.is}):(e=s.createElement(n),n===\"select\"&&(s=e,r.multiple?s.multiple=!0:r.size&&(s.size=r.size))):e=s.createElementNS(e,n),e[On]=t,e[na]=r,vw(e,t,!1,!1),t.stateNode=e;e:{switch(s=sp(n,r),n){case\"dialog\":Te(\"cancel\",e),Te(\"close\",e),o=r;break;case\"iframe\":case\"object\":case\"embed\":Te(\"load\",e),o=r;break;case\"video\":case\"audio\":for(o=0;o<_s.length;o++)Te(_s[o],e);o=r;break;case\"source\":Te(\"error\",e),o=r;break;case\"img\":case\"image\":case\"link\":Te(\"error\",e),Te(\"load\",e),o=r;break;case\"details\":Te(\"toggle\",e),o=r;break;case\"input\":k0(e,r),o=ep(e,r),Te(\"invalid\",e);break;case\"option\":o=r;break;case\"select\":e._wrapperState={wasMultiple:!!r.multiple},o=$e({},r,{value:void 0}),Te(\"invalid\",e);break;case\"textarea\":A0(e,r),o=rp(e,r),Te(\"invalid\",e);break;default:o=r}ip(n,o),a=o;for(i in a)if(a.hasOwnProperty(i)){var l=a[i];i===\"style\"?Qb(e,l):i===\"dangerouslySetInnerHTML\"?(l=l?l.__html:void 0,l!=null&&Gb(e,l)):i===\"children\"?typeof l==\"string\"?(n!==\"textarea\"||l!==\"\")&&Ws(e,l):typeof l==\"number\"&&Ws(e,\"\"+l):i!==\"suppressContentEditableWarning\"&&i!==\"suppressHydrationWarning\"&&i!==\"autoFocus\"&&(Gs.hasOwnProperty(i)?l!=null&&i===\"onScroll\"&&Te(\"scroll\",e):l!=null&&im(e,i,l,s))}switch(n){case\"input\":al(e),N0(e,r,!1);break;case\"textarea\":al(e),D0(e);break;case\"option\":r.value!=null&&e.setAttribute(\"value\",\"\"+Ur(r.value));break;case\"select\":e.multiple=!!r.multiple,i=r.value,i!=null?bi(e,!!r.multiple,i,!1):r.defaultValue!=null&&bi(e,!!r.multiple,r.defaultValue,!0);break;default:typeof o.onClick==\"function\"&&(e.onclick=Nc)}switch(n){case\"button\":case\"input\":case\"select\":case\"textarea\":r=!!r.autoFocus;break e;case\"img\":r=!0;break e;default:r=!1}}r&&(t.flags|=4)}t.ref!==null&&(t.flags|=512,t.flags|=2097152)}return ft(t),null;case 6:if(e&&t.stateNode!=null)yw(e,t,e.memoizedProps,r);else{if(typeof r!=\"string\"&&t.stateNode===null)throw Error(W(166));if(n=mo(oa.current),mo(Mn.current),vl(t)){if(r=t.stateNode,n=t.memoizedProps,r[On]=t,(i=r.nodeValue!==n)&&(e=Mt,e!==null))switch(e.tag){case 3:ml(r.nodeValue,n,(e.mode&1)!==0);break;case 5:e.memoizedProps.suppressHydrationWarning!==!0&&ml(r.nodeValue,n,(e.mode&1)!==0)}i&&(t.flags|=4)}else r=(n.nodeType===9?n:n.ownerDocument).createTextNode(r),r[On]=t,t.stateNode=r}return ft(t),null;case 13:if(ke(Le),r=t.memoizedState,e===null||e.memoizedState!==null&&e.memoizedState.dehydrated!==null){if(Ne&&$t!==null&&t.mode&1&&!(t.flags&128))Px(),Pi(),t.flags|=98560,i=!1;else if(i=vl(t),r!==null&&r.dehydrated!==null){if(e===null){if(!i)throw Error(W(318));if(i=t.memoizedState,i=i!==null?i.dehydrated:null,!i)throw Error(W(317));i[On]=t}else Pi(),!(t.flags&128)&&(t.memoizedState=null),t.flags|=4;ft(t),i=!1}else hn!==null&&(jp(hn),hn=null),i=!0;if(!i)return t.flags&65536?t:null}return t.flags&128?(t.lanes=n,t):(r=r!==null,r!==(e!==null&&e.memoizedState!==null)&&r&&(t.child.flags|=8192,t.mode&1&&(e===null||Le.current&1?Ye===0&&(Ye=3):qm())),t.updateQueue!==null&&(t.flags|=4),ft(t),null);case 4:return Fi(),Rp(e,t),e===null&&ea(t.stateNode.containerInfo),ft(t),null;case 10:return Sm(t.type._context),ft(t),null;case 17:return Dt(t.type)&&Ac(),ft(t),null;case 19:if(ke(Le),i=t.memoizedState,i===null)return ft(t),null;if(r=(t.flags&128)!==0,s=i.rendering,s===null)if(r)ms(i,!1);else{if(Ye!==0||e!==null&&e.flags&128)for(e=t.child;e!==null;){if(s=$c(e),s!==null){for(t.flags|=128,ms(i,!1),r=s.updateQueue,r!==null&&(t.updateQueue=r,t.flags|=4),t.subtreeFlags=0,r=n,n=t.child;n!==null;)i=n,e=r,i.flags&=14680066,s=i.alternate,s===null?(i.childLanes=0,i.lanes=e,i.child=null,i.subtreeFlags=0,i.memoizedProps=null,i.memoizedState=null,i.updateQueue=null,i.dependencies=null,i.stateNode=null):(i.childLanes=s.childLanes,i.lanes=s.lanes,i.child=s.child,i.subtreeFlags=0,i.deletions=null,i.memoizedProps=s.memoizedProps,i.memoizedState=s.memoizedState,i.updateQueue=s.updateQueue,i.type=s.type,e=s.dependencies,i.dependencies=e===null?null:{lanes:e.lanes,firstContext:e.firstContext}),n=n.sibling;return Ce(Le,Le.current&1|2),t.child}e=e.sibling}i.tail!==null&&je()>Vi&&(t.flags|=128,r=!0,ms(i,!1),t.lanes=4194304)}else{if(!r)if(e=$c(s),e!==null){if(t.flags|=128,r=!0,n=e.updateQueue,n!==null&&(t.updateQueue=n,t.flags|=4),ms(i,!0),i.tail===null&&i.tailMode===\"hidden\"&&!s.alternate&&!Ne)return ft(t),null}else 2*je()-i.renderingStartTime>Vi&&n!==1073741824&&(t.flags|=128,r=!0,ms(i,!1),t.lanes=4194304);i.isBackwards?(s.sibling=t.child,t.child=s):(n=i.last,n!==null?n.sibling=s:t.child=s,i.last=s)}return i.tail!==null?(t=i.tail,i.rendering=t,i.tail=t.sibling,i.renderingStartTime=je(),t.sibling=null,n=Le.current,Ce(Le,r?n&1|2:n&1),t):(ft(t),null);case 22:case 23:return jm(),r=t.memoizedState!==null,e!==null&&e.memoizedState!==null!==r&&(t.flags|=8192),r&&t.mode&1?Ot&1073741824&&(ft(t),t.subtreeFlags&6&&(t.flags|=8192)):ft(t),null;case 24:return null;case 25:return null}throw Error(W(156,t.tag))}function JN(e,t){switch(bm(t),t.tag){case 1:return Dt(t.type)&&Ac(),e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 3:return Fi(),ke(At),ke(mt),Am(),e=t.flags,e&65536&&!(e&128)?(t.flags=e&-65537|128,t):null;case 5:return Nm(t),null;case 13:if(ke(Le),e=t.memoizedState,e!==null&&e.dehydrated!==null){if(t.alternate===null)throw Error(W(340));Pi()}return e=t.flags,e&65536?(t.flags=e&-65537|128,t):null;case 19:return ke(Le),null;case 4:return Fi(),null;case 10:return Sm(t.type._context),null;case 22:case 23:return jm(),null;case 24:return null;default:return null}}var El=!1,ht=!1,KN=typeof WeakSet==\"function\"?WeakSet:Set,X=null;function pi(e,t){var n=e.ref;if(n!==null)if(typeof n==\"function\")try{n(null)}catch(r){Fe(e,t,r)}else n.current=null}function Lp(e,t,n){try{n()}catch(r){Fe(e,t,r)}}var Eg=!1;function eA(e,t){if(vp=Cc,e=wx(),ym(e)){if(\"selectionStart\"in e)var n={start:e.selectionStart,end:e.selectionEnd};else e:{n=(n=e.ownerDocument)&&n.defaultView||window;var r=n.getSelection&&n.getSelection();if(r&&r.rangeCount!==0){n=r.anchorNode;var o=r.anchorOffset,i=r.focusNode;r=r.focusOffset;try{n.nodeType,i.nodeType}catch{n=null;break e}var s=0,a=-1,l=-1,c=0,u=0,d=e,p=null;t:for(;;){for(var f;d!==n||o!==0&&d.nodeType!==3||(a=s+o),d!==i||r!==0&&d.nodeType!==3||(l=s+r),d.nodeType===3&&(s+=d.nodeValue.length),(f=d.firstChild)!==null;)p=d,d=f;for(;;){if(d===e)break t;if(p===n&&++c===o&&(a=s),p===i&&++u===r&&(l=s),(f=d.nextSibling)!==null)break;d=p,p=d.parentNode}d=f}n=a===-1||l===-1?null:{start:a,end:l}}else n=null}n=n||{start:0,end:0}}else n=null;for(gp={focusedElem:e,selectionRange:n},Cc=!1,X=t;X!==null;)if(t=X,e=t.child,(t.subtreeFlags&1028)!==0&&e!==null)e.return=t,X=e;else for(;X!==null;){t=X;try{var m=t.alternate;if(t.flags&1024)switch(t.tag){case 0:case 11:case 15:break;case 1:if(m!==null){var v=m.memoizedProps,b=m.memoizedState,y=t.stateNode,g=y.getSnapshotBeforeUpdate(t.elementType===t.type?v:fn(t.type,v),b);y.__reactInternalSnapshotBeforeUpdate=g}break;case 3:var E=t.stateNode.containerInfo;E.nodeType===1?E.textContent=\"\":E.nodeType===9&&E.documentElement&&E.removeChild(E.documentElement);break;case 5:case 6:case 4:case 17:break;default:throw Error(W(163))}}catch(x){Fe(t,t.return,x)}if(e=t.sibling,e!==null){e.return=t.return,X=e;break}X=t.return}return m=Eg,Eg=!1,m}function Os(e,t,n){var r=t.updateQueue;if(r=r!==null?r.lastEffect:null,r!==null){var o=r=r.next;do{if((o.tag&e)===e){var i=o.destroy;o.destroy=void 0,i!==void 0&&Lp(t,n,i)}o=o.next}while(o!==r)}}function Lu(e,t){if(t=t.updateQueue,t=t!==null?t.lastEffect:null,t!==null){var n=t=t.next;do{if((n.tag&e)===e){var r=n.create;n.destroy=r()}n=n.next}while(n!==t)}}function Op(e){var t=e.ref;if(t!==null){var n=e.stateNode;switch(e.tag){case 5:e=n;break;default:e=n}typeof t==\"function\"?t(e):t.current=e}}function Ew(e){var t=e.alternate;t!==null&&(e.alternate=null,Ew(t)),e.child=null,e.deletions=null,e.sibling=null,e.tag===5&&(t=e.stateNode,t!==null&&(delete t[On],delete t[na],delete t[bp],delete t[$N],delete t[FN])),e.stateNode=null,e.return=null,e.dependencies=null,e.memoizedProps=null,e.memoizedState=null,e.pendingProps=null,e.stateNode=null,e.updateQueue=null}function bw(e){return e.tag===5||e.tag===3||e.tag===4}function bg(e){e:for(;;){for(;e.sibling===null;){if(e.return===null||bw(e.return))return null;e=e.return}for(e.sibling.return=e.return,e=e.sibling;e.tag!==5&&e.tag!==6&&e.tag!==18;){if(e.flags&2||e.child===null||e.tag===4)continue e;e.child.return=e,e=e.child}if(!(e.flags&2))return e.stateNode}}function Pp(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.nodeType===8?n.parentNode.insertBefore(e,t):n.insertBefore(e,t):(n.nodeType===8?(t=n.parentNode,t.insertBefore(e,n)):(t=n,t.appendChild(e)),n=n._reactRootContainer,n!=null||t.onclick!==null||(t.onclick=Nc));else if(r!==4&&(e=e.child,e!==null))for(Pp(e,t,n),e=e.sibling;e!==null;)Pp(e,t,n),e=e.sibling}function $p(e,t,n){var r=e.tag;if(r===5||r===6)e=e.stateNode,t?n.insertBefore(e,t):n.appendChild(e);else if(r!==4&&(e=e.child,e!==null))for($p(e,t,n),e=e.sibling;e!==null;)$p(e,t,n),e=e.sibling}var nt=null,dn=!1;function mr(e,t,n){for(n=n.child;n!==null;)xw(e,t,n),n=n.sibling}function xw(e,t,n){if(Fn&&typeof Fn.onCommitFiberUnmount==\"function\")try{Fn.onCommitFiberUnmount(Cu,n)}catch{}switch(n.tag){case 5:ht||pi(n,t);case 6:var r=nt,o=dn;nt=null,mr(e,t,n),nt=r,dn=o,nt!==null&&(dn?(e=nt,n=n.stateNode,e.nodeType===8?e.parentNode.removeChild(n):e.removeChild(n)):nt.removeChild(n.stateNode));break;case 18:nt!==null&&(dn?(e=nt,n=n.stateNode,e.nodeType===8?Hf(e.parentNode,n):e.nodeType===1&&Hf(e,n),Xs(e)):Hf(nt,n.stateNode));break;case 4:r=nt,o=dn,nt=n.stateNode.containerInfo,dn=!0,mr(e,t,n),nt=r,dn=o;break;case 0:case 11:case 14:case 15:if(!ht&&(r=n.updateQueue,r!==null&&(r=r.lastEffect,r!==null))){o=r=r.next;do{var i=o,s=i.destroy;i=i.tag,s!==void 0&&(i&2||i&4)&&Lp(n,t,s),o=o.next}while(o!==r)}mr(e,t,n);break;case 1:if(!ht&&(pi(n,t),r=n.stateNode,typeof r.componentWillUnmount==\"function\"))try{r.props=n.memoizedProps,r.state=n.memoizedState,r.componentWillUnmount()}catch(a){Fe(n,t,a)}mr(e,t,n);break;case 21:mr(e,t,n);break;case 22:n.mode&1?(ht=(r=ht)||n.memoizedState!==null,mr(e,t,n),ht=r):mr(e,t,n);break;default:mr(e,t,n)}}function xg(e){var t=e.updateQueue;if(t!==null){e.updateQueue=null;var n=e.stateNode;n===null&&(n=e.stateNode=new KN),t.forEach(function(r){var o=cA.bind(null,e,r);n.has(r)||(n.add(r),r.then(o,o))})}}function ln(e,t){var n=t.deletions;if(n!==null)for(var r=0;r<n.length;r++){var o=n[r];try{var i=e,s=t,a=s;e:for(;a!==null;){switch(a.tag){case 5:nt=a.stateNode,dn=!1;break e;case 3:nt=a.stateNode.containerInfo,dn=!0;break e;case 4:nt=a.stateNode.containerInfo,dn=!0;break e}a=a.return}if(nt===null)throw Error(W(160));xw(i,s,o),nt=null,dn=!1;var l=o.alternate;l!==null&&(l.return=null),o.return=null}catch(c){Fe(o,t,c)}}if(t.subtreeFlags&12854)for(t=t.child;t!==null;)ww(t,e),t=t.sibling}function ww(e,t){var n=e.alternate,r=e.flags;switch(e.tag){case 0:case 11:case 14:case 15:if(ln(t,e),In(e),r&4){try{Os(3,e,e.return),Lu(3,e)}catch(v){Fe(e,e.return,v)}try{Os(5,e,e.return)}catch(v){Fe(e,e.return,v)}}break;case 1:ln(t,e),In(e),r&512&&n!==null&&pi(n,n.return);break;case 5:if(ln(t,e),In(e),r&512&&n!==null&&pi(n,n.return),e.flags&32){var o=e.stateNode;try{Ws(o,\"\")}catch(v){Fe(e,e.return,v)}}if(r&4&&(o=e.stateNode,o!=null)){var i=e.memoizedProps,s=n!==null?n.memoizedProps:i,a=e.type,l=e.updateQueue;if(e.updateQueue=null,l!==null)try{a===\"input\"&&i.type===\"radio\"&&i.name!=null&&Bb(o,i),sp(a,s);var c=sp(a,i);for(s=0;s<l.length;s+=2){var u=l[s],d=l[s+1];u===\"style\"?Qb(o,d):u===\"dangerouslySetInnerHTML\"?Gb(o,d):u===\"children\"?Ws(o,d):im(o,u,d,c)}switch(a){case\"input\":tp(o,i);break;case\"textarea\":zb(o,i);break;case\"select\":var p=o._wrapperState.wasMultiple;o._wrapperState.wasMultiple=!!i.multiple;var f=i.value;f!=null?bi(o,!!i.multiple,f,!1):p!==!!i.multiple&&(i.defaultValue!=null?bi(o,!!i.multiple,i.defaultValue,!0):bi(o,!!i.multiple,i.multiple?[]:\"\",!1))}o[na]=i}catch(v){Fe(e,e.return,v)}}break;case 6:if(ln(t,e),In(e),r&4){if(e.stateNode===null)throw Error(W(162));o=e.stateNode,i=e.memoizedProps;try{o.nodeValue=i}catch(v){Fe(e,e.return,v)}}break;case 3:if(ln(t,e),In(e),r&4&&n!==null&&n.memoizedState.isDehydrated)try{Xs(t.containerInfo)}catch(v){Fe(e,e.return,v)}break;case 4:ln(t,e),In(e);break;case 13:ln(t,e),In(e),o=e.child,o.flags&8192&&(i=o.memoizedState!==null,o.stateNode.isHidden=i,!i||o.alternate!==null&&o.alternate.memoizedState!==null||(Mm=je())),r&4&&xg(e);break;case 22:if(u=n!==null&&n.memoizedState!==null,e.mode&1?(ht=(c=ht)||u,ln(t,e),ht=c):ln(t,e),In(e),r&8192){if(c=e.memoizedState!==null,(e.stateNode.isHidden=c)&&!u&&e.mode&1)for(X=e,u=e.child;u!==null;){for(d=X=u;X!==null;){switch(p=X,f=p.child,p.tag){case 0:case 11:case 14:case 15:Os(4,p,p.return);break;case 1:pi(p,p.return);var m=p.stateNode;if(typeof m.componentWillUnmount==\"function\"){r=p,n=p.return;try{t=r,m.props=t.memoizedProps,m.state=t.memoizedState,m.componentWillUnmount()}catch(v){Fe(r,n,v)}}break;case 5:pi(p,p.return);break;case 22:if(p.memoizedState!==null){_g(d);continue}}f!==null?(f.return=p,X=f):_g(d)}u=u.sibling}e:for(u=null,d=e;;){if(d.tag===5){if(u===null){u=d;try{o=d.stateNode,c?(i=o.style,typeof i.setProperty==\"function\"?i.setProperty(\"display\",\"none\",\"important\"):i.display=\"none\"):(a=d.stateNode,l=d.memoizedProps.style,s=l!=null&&l.hasOwnProperty(\"display\")?l.display:null,a.style.display=Wb(\"display\",s))}catch(v){Fe(e,e.return,v)}}}else if(d.tag===6){if(u===null)try{d.stateNode.nodeValue=c?\"\":d.memoizedProps}catch(v){Fe(e,e.return,v)}}else if((d.tag!==22&&d.tag!==23||d.memoizedState===null||d===e)&&d.child!==null){d.child.return=d,d=d.child;continue}if(d===e)break e;for(;d.sibling===null;){if(d.return===null||d.return===e)break e;u===d&&(u=null),d=d.return}u===d&&(u=null),d.sibling.return=d.return,d=d.sibling}}break;case 19:ln(t,e),In(e),r&4&&xg(e);break;case 21:break;default:ln(t,e),In(e)}}function In(e){var t=e.flags;if(t&2){try{e:{for(var n=e.return;n!==null;){if(bw(n)){var r=n;break e}n=n.return}throw Error(W(160))}switch(r.tag){case 5:var o=r.stateNode;r.flags&32&&(Ws(o,\"\"),r.flags&=-33);var i=bg(e);$p(e,i,o);break;case 3:case 4:var s=r.stateNode.containerInfo,a=bg(e);Pp(e,a,s);break;default:throw Error(W(161))}}catch(l){Fe(e,e.return,l)}e.flags&=-3}t&4096&&(e.flags&=-4097)}function tA(e,t,n){X=e,_w(e)}function _w(e,t,n){for(var r=(e.mode&1)!==0;X!==null;){var o=X,i=o.child;if(o.tag===22&&r){var s=o.memoizedState!==null||El;if(!s){var a=o.alternate,l=a!==null&&a.memoizedState!==null||ht;a=El;var c=ht;if(El=s,(ht=l)&&!c)for(X=o;X!==null;)s=X,l=s.child,s.tag===22&&s.memoizedState!==null?Sg(o):l!==null?(l.return=s,X=l):Sg(o);for(;i!==null;)X=i,_w(i),i=i.sibling;X=o,El=a,ht=c}wg(e)}else o.subtreeFlags&8772&&i!==null?(i.return=o,X=i):wg(e)}}function wg(e){for(;X!==null;){var t=X;if(t.flags&8772){var n=t.alternate;try{if(t.flags&8772)switch(t.tag){case 0:case 11:case 15:ht||Lu(5,t);break;case 1:var r=t.stateNode;if(t.flags&4&&!ht)if(n===null)r.componentDidMount();else{var o=t.elementType===t.type?n.memoizedProps:fn(t.type,n.memoizedProps);r.componentDidUpdate(o,n.memoizedState,r.__reactInternalSnapshotBeforeUpdate)}var i=t.updateQueue;i!==null&&ig(t,i,r);break;case 3:var s=t.updateQueue;if(s!==null){if(n=null,t.child!==null)switch(t.child.tag){case 5:n=t.child.stateNode;break;case 1:n=t.child.stateNode}ig(t,s,n)}break;case 5:var a=t.stateNode;if(n===null&&t.flags&4){n=a;var l=t.memoizedProps;switch(t.type){case\"button\":case\"input\":case\"select\":case\"textarea\":l.autoFocus&&n.focus();break;case\"img\":l.src&&(n.src=l.src)}}break;case 6:break;case 4:break;case 12:break;case 13:if(t.memoizedState===null){var c=t.alternate;if(c!==null){var u=c.memoizedState;if(u!==null){var d=u.dehydrated;d!==null&&Xs(d)}}}break;case 19:case 17:case 21:case 22:case 23:case 25:break;default:throw Error(W(163))}ht||t.flags&512&&Op(t)}catch(p){Fe(t,t.return,p)}}if(t===e){X=null;break}if(n=t.sibling,n!==null){n.return=t.return,X=n;break}X=t.return}}function _g(e){for(;X!==null;){var t=X;if(t===e){X=null;break}var n=t.sibling;if(n!==null){n.return=t.return,X=n;break}X=t.return}}function Sg(e){for(;X!==null;){var t=X;try{switch(t.tag){case 0:case 11:case 15:var n=t.return;try{Lu(4,t)}catch(l){Fe(t,n,l)}break;case 1:var r=t.stateNode;if(typeof r.componentDidMount==\"function\"){var o=t.return;try{r.componentDidMount()}catch(l){Fe(t,o,l)}}var i=t.return;try{Op(t)}catch(l){Fe(t,i,l)}break;case 5:var s=t.return;try{Op(t)}catch(l){Fe(t,s,l)}}}catch(l){Fe(t,t.return,l)}if(t===e){X=null;break}var a=t.sibling;if(a!==null){a.return=t.return,X=a;break}X=t.return}}var nA=Math.ceil,Vc=pr.ReactCurrentDispatcher,$m=pr.ReactCurrentOwner,Kt=pr.ReactCurrentBatchConfig,pe=0,Je=null,Ge=null,it=0,Ot=0,hi=Qr(0),Ye=0,la=null,No=0,Ou=0,Fm=0,Ps=null,Tt=null,Mm=0,Vi=1/0,Zn=null,jc=!1,Fp=null,Fr=null,bl=!1,kr=null,qc=0,$s=0,Mp=null,oc=-1,ic=0;function xt(){return pe&6?je():oc!==-1?oc:oc=je()}function Mr(e){return e.mode&1?pe&2&&it!==0?it&-it:VN.transition!==null?(ic===0&&(ic=sx()),ic):(e=Ee,e!==0||(e=window.event,e=e===void 0?16:px(e.type)),e):1}function wn(e,t,n,r){if(50<$s)throw $s=0,Mp=null,Error(W(185));Pa(e,n,r),(!(pe&2)||e!==Je)&&(e===Je&&(!(pe&2)&&(Ou|=n),Ye===4&&Cr(e,it)),It(e,r),n===1&&pe===0&&!(t.mode&1)&&(Vi=je()+500,Du&&Yr()))}function It(e,t){var n=e.callbackNode;Vk(e,t);var r=Sc(e,e===Je?it:0);if(r===0)n!==null&&L0(n),e.callbackNode=null,e.callbackPriority=0;else if(t=r&-r,e.callbackPriority!==t){if(n!=null&&L0(n),t===1)e.tag===0?MN(Cg.bind(null,e)):Rx(Cg.bind(null,e)),ON(function(){!(pe&6)&&Yr()}),n=null;else{switch(ax(r)){case 1:n=um;break;case 4:n=ox;break;case 16:n=_c;break;case 536870912:n=ix;break;default:n=_c}n=Iw(n,Sw.bind(null,e))}e.callbackPriority=t,e.callbackNode=n}}function Sw(e,t){if(oc=-1,ic=0,pe&6)throw Error(W(327));var n=e.callbackNode;if(Ci()&&e.callbackNode!==n)return null;var r=Sc(e,e===Je?it:0);if(r===0)return null;if(r&30||r&e.expiredLanes||t)t=Uc(e,r);else{t=r;var o=pe;pe|=2;var i=Tw();(Je!==e||it!==t)&&(Zn=null,Vi=je()+500,Eo(e,t));do try{iA();break}catch(a){Cw(e,a)}while(1);_m(),Vc.current=i,pe=o,Ge!==null?t=0:(Je=null,it=0,t=Ye)}if(t!==0){if(t===2&&(o=fp(e),o!==0&&(r=o,t=Vp(e,o))),t===1)throw n=la,Eo(e,0),Cr(e,r),It(e,je()),n;if(t===6)Cr(e,r);else{if(o=e.current.alternate,!(r&30)&&!rA(o)&&(t=Uc(e,r),t===2&&(i=fp(e),i!==0&&(r=i,t=Vp(e,i))),t===1))throw n=la,Eo(e,0),Cr(e,r),It(e,je()),n;switch(e.finishedWork=o,e.finishedLanes=r,t){case 0:case 1:throw Error(W(345));case 2:co(e,Tt,Zn);break;case 3:if(Cr(e,r),(r&130023424)===r&&(t=Mm+500-je(),10<t)){if(Sc(e,0)!==0)break;if(o=e.suspendedLanes,(o&r)!==r){xt(),e.pingedLanes|=e.suspendedLanes&o;break}e.timeoutHandle=Ep(co.bind(null,e,Tt,Zn),t);break}co(e,Tt,Zn);break;case 4:if(Cr(e,r),(r&4194240)===r)break;for(t=e.eventTimes,o=-1;0<r;){var s=31-xn(r);i=1<<s,s=t[s],s>o&&(o=s),r&=~i}if(r=o,r=je()-r,r=(120>r?120:480>r?480:1080>r?1080:1920>r?1920:3e3>r?3e3:4320>r?4320:1960*nA(r/1960))-r,10<r){e.timeoutHandle=Ep(co.bind(null,e,Tt,Zn),r);break}co(e,Tt,Zn);break;case 5:co(e,Tt,Zn);break;default:throw Error(W(329))}}}return It(e,je()),e.callbackNode===n?Sw.bind(null,e):null}function Vp(e,t){var n=Ps;return e.current.memoizedState.isDehydrated&&(Eo(e,t).flags|=256),e=Uc(e,t),e!==2&&(t=Tt,Tt=n,t!==null&&jp(t)),e}function jp(e){Tt===null?Tt=e:Tt.push.apply(Tt,e)}function rA(e){for(var t=e;;){if(t.flags&16384){var n=t.updateQueue;if(n!==null&&(n=n.stores,n!==null))for(var r=0;r<n.length;r++){var o=n[r],i=o.getSnapshot;o=o.value;try{if(!Cn(i(),o))return!1}catch{return!1}}}if(n=t.child,t.subtreeFlags&16384&&n!==null)n.return=t,t=n;else{if(t===e)break;for(;t.sibling===null;){if(t.return===null||t.return===e)return!0;t=t.return}t.sibling.return=t.return,t=t.sibling}}return!0}function Cr(e,t){for(t&=~Fm,t&=~Ou,e.suspendedLanes|=t,e.pingedLanes&=~t,e=e.expirationTimes;0<t;){var n=31-xn(t),r=1<<n;e[n]=-1,t&=~r}}function Cg(e){if(pe&6)throw Error(W(327));Ci();var t=Sc(e,0);if(!(t&1))return It(e,je()),null;var n=Uc(e,t);if(e.tag!==0&&n===2){var r=fp(e);r!==0&&(t=r,n=Vp(e,r))}if(n===1)throw n=la,Eo(e,0),Cr(e,t),It(e,je()),n;if(n===6)throw Error(W(345));return e.finishedWork=e.current.alternate,e.finishedLanes=t,co(e,Tt,Zn),It(e,je()),null}function Vm(e,t){var n=pe;pe|=1;try{return e(t)}finally{pe=n,pe===0&&(Vi=je()+500,Du&&Yr())}}function Ao(e){kr!==null&&kr.tag===0&&!(pe&6)&&Ci();var t=pe;pe|=1;var n=Kt.transition,r=Ee;try{if(Kt.transition=null,Ee=1,e)return e()}finally{Ee=r,Kt.transition=n,pe=t,!(pe&6)&&Yr()}}function jm(){Ot=hi.current,ke(hi)}function Eo(e,t){e.finishedWork=null,e.finishedLanes=0;var n=e.timeoutHandle;if(n!==-1&&(e.timeoutHandle=-1,LN(n)),Ge!==null)for(n=Ge.return;n!==null;){var r=n;switch(bm(r),r.tag){case 1:r=r.type.childContextTypes,r!=null&&Ac();break;case 3:Fi(),ke(At),ke(mt),Am();break;case 5:Nm(r);break;case 4:Fi();break;case 13:ke(Le);break;case 19:ke(Le);break;case 10:Sm(r.type._context);break;case 22:case 23:jm()}n=n.return}if(Je=e,Ge=e=Vr(e.current,null),it=Ot=t,Ye=0,la=null,Fm=Ou=No=0,Tt=Ps=null,ho!==null){for(t=0;t<ho.length;t++)if(n=ho[t],r=n.interleaved,r!==null){n.interleaved=null;var o=r.next,i=n.pending;if(i!==null){var s=i.next;i.next=o,r.next=s}n.pending=r}ho=null}return e}function Cw(e,t){do{var n=Ge;try{if(_m(),tc.current=Mc,Fc){for(var r=Pe.memoizedState;r!==null;){var o=r.queue;o!==null&&(o.pending=null),r=r.next}Fc=!1}if(ko=0,Ze=We=Pe=null,Ls=!1,ia=0,$m.current=null,n===null||n.return===null){Ye=1,la=t,Ge=null;break}e:{var i=e,s=n.return,a=n,l=t;if(t=it,a.flags|=32768,l!==null&&typeof l==\"object\"&&typeof l.then==\"function\"){var c=l,u=a,d=u.tag;if(!(u.mode&1)&&(d===0||d===11||d===15)){var p=u.alternate;p?(u.updateQueue=p.updateQueue,u.memoizedState=p.memoizedState,u.lanes=p.lanes):(u.updateQueue=null,u.memoizedState=null)}var f=dg(s);if(f!==null){f.flags&=-257,pg(f,s,a,i,t),f.mode&1&&fg(i,c,t),t=f,l=c;var m=t.updateQueue;if(m===null){var v=new Set;v.add(l),t.updateQueue=v}else m.add(l);break e}else{if(!(t&1)){fg(i,c,t),qm();break e}l=Error(W(426))}}else if(Ne&&a.mode&1){var b=dg(s);if(b!==null){!(b.flags&65536)&&(b.flags|=256),pg(b,s,a,i,t),xm(Mi(l,a));break e}}i=l=Mi(l,a),Ye!==4&&(Ye=2),Ps===null?Ps=[i]:Ps.push(i),i=s;do{switch(i.tag){case 3:i.flags|=65536,t&=-t,i.lanes|=t;var y=lw(i,l,t);og(i,y);break e;case 1:a=l;var g=i.type,E=i.stateNode;if(!(i.flags&128)&&(typeof g.getDerivedStateFromError==\"function\"||E!==null&&typeof E.componentDidCatch==\"function\"&&(Fr===null||!Fr.has(E)))){i.flags|=65536,t&=-t,i.lanes|=t;var x=cw(i,a,t);og(i,x);break e}}i=i.return}while(i!==null)}Nw(n)}catch(w){t=w,Ge===n&&n!==null&&(Ge=n=n.return);continue}break}while(1)}function Tw(){var e=Vc.current;return Vc.current=Mc,e===null?Mc:e}function qm(){(Ye===0||Ye===3||Ye===2)&&(Ye=4),Je===null||!(No&268435455)&&!(Ou&268435455)||Cr(Je,it)}function Uc(e,t){var n=pe;pe|=2;var r=Tw();(Je!==e||it!==t)&&(Zn=null,Eo(e,t));do try{oA();break}catch(o){Cw(e,o)}while(1);if(_m(),pe=n,Vc.current=r,Ge!==null)throw Error(W(261));return Je=null,it=0,Ye}function oA(){for(;Ge!==null;)kw(Ge)}function iA(){for(;Ge!==null&&!Dk();)kw(Ge)}function kw(e){var t=Dw(e.alternate,e,Ot);e.memoizedProps=e.pendingProps,t===null?Nw(e):Ge=t,$m.current=null}function Nw(e){var t=e;do{var n=t.alternate;if(e=t.return,t.flags&32768){if(n=JN(n,t),n!==null){n.flags&=32767,Ge=n;return}if(e!==null)e.flags|=32768,e.subtreeFlags=0,e.deletions=null;else{Ye=6,Ge=null;return}}else if(n=XN(n,t,Ot),n!==null){Ge=n;return}if(t=t.sibling,t!==null){Ge=t;return}Ge=t=e}while(t!==null);Ye===0&&(Ye=5)}function co(e,t,n){var r=Ee,o=Kt.transition;try{Kt.transition=null,Ee=1,sA(e,t,n,r)}finally{Kt.transition=o,Ee=r}return null}function sA(e,t,n,r){do Ci();while(kr!==null);if(pe&6)throw Error(W(327));n=e.finishedWork;var o=e.finishedLanes;if(n===null)return null;if(e.finishedWork=null,e.finishedLanes=0,n===e.current)throw Error(W(177));e.callbackNode=null,e.callbackPriority=0;var i=n.lanes|n.childLanes;if(jk(e,i),e===Je&&(Ge=Je=null,it=0),!(n.subtreeFlags&2064)&&!(n.flags&2064)||bl||(bl=!0,Iw(_c,function(){return Ci(),null})),i=(n.flags&15990)!==0,n.subtreeFlags&15990||i){i=Kt.transition,Kt.transition=null;var s=Ee;Ee=1;var a=pe;pe|=4,$m.current=null,eA(e,n),ww(n,e),TN(gp),Cc=!!vp,gp=vp=null,e.current=n,tA(n),Ik(),pe=a,Ee=s,Kt.transition=i}else e.current=n;if(bl&&(bl=!1,kr=e,qc=o),i=e.pendingLanes,i===0&&(Fr=null),Ok(n.stateNode),It(e,je()),t!==null)for(r=e.onRecoverableError,n=0;n<t.length;n++)o=t[n],r(o.value,{componentStack:o.stack,digest:o.digest});if(jc)throw jc=!1,e=Fp,Fp=null,e;return qc&1&&e.tag!==0&&Ci(),i=e.pendingLanes,i&1?e===Mp?$s++:($s=0,Mp=e):$s=0,Yr(),null}function Ci(){if(kr!==null){var e=ax(qc),t=Kt.transition,n=Ee;try{if(Kt.transition=null,Ee=16>e?16:e,kr===null)var r=!1;else{if(e=kr,kr=null,qc=0,pe&6)throw Error(W(331));var o=pe;for(pe|=4,X=e.current;X!==null;){var i=X,s=i.child;if(X.flags&16){var a=i.deletions;if(a!==null){for(var l=0;l<a.length;l++){var c=a[l];for(X=c;X!==null;){var u=X;switch(u.tag){case 0:case 11:case 15:Os(8,u,i)}var d=u.child;if(d!==null)d.return=u,X=d;else for(;X!==null;){u=X;var p=u.sibling,f=u.return;if(Ew(u),u===c){X=null;break}if(p!==null){p.return=f,X=p;break}X=f}}}var m=i.alternate;if(m!==null){var v=m.child;if(v!==null){m.child=null;do{var b=v.sibling;v.sibling=null,v=b}while(v!==null)}}X=i}}if(i.subtreeFlags&2064&&s!==null)s.return=i,X=s;else e:for(;X!==null;){if(i=X,i.flags&2048)switch(i.tag){case 0:case 11:case 15:Os(9,i,i.return)}var y=i.sibling;if(y!==null){y.return=i.return,X=y;break e}X=i.return}}var g=e.current;for(X=g;X!==null;){s=X;var E=s.child;if(s.subtreeFlags&2064&&E!==null)E.return=s,X=E;else e:for(s=g;X!==null;){if(a=X,a.flags&2048)try{switch(a.tag){case 0:case 11:case 15:Lu(9,a)}}catch(w){Fe(a,a.return,w)}if(a===s){X=null;break e}var x=a.sibling;if(x!==null){x.return=a.return,X=x;break e}X=a.return}}if(pe=o,Yr(),Fn&&typeof Fn.onPostCommitFiberRoot==\"function\")try{Fn.onPostCommitFiberRoot(Cu,e)}catch{}r=!0}return r}finally{Ee=n,Kt.transition=t}}return!1}function Tg(e,t,n){t=Mi(n,t),t=lw(e,t,1),e=$r(e,t,1),t=xt(),e!==null&&(Pa(e,1,t),It(e,t))}function Fe(e,t,n){if(e.tag===3)Tg(e,e,n);else for(;t!==null;){if(t.tag===3){Tg(t,e,n);break}else if(t.tag===1){var r=t.stateNode;if(typeof t.type.getDerivedStateFromError==\"function\"||typeof r.componentDidCatch==\"function\"&&(Fr===null||!Fr.has(r))){e=Mi(n,e),e=cw(t,e,1),t=$r(t,e,1),e=xt(),t!==null&&(Pa(t,1,e),It(t,e));break}}t=t.return}}function aA(e,t,n){var r=e.pingCache;r!==null&&r.delete(t),t=xt(),e.pingedLanes|=e.suspendedLanes&n,Je===e&&(it&n)===n&&(Ye===4||Ye===3&&(it&130023424)===it&&500>je()-Mm?Eo(e,0):Fm|=n),It(e,t)}function Aw(e,t){t===0&&(e.mode&1?(t=ul,ul<<=1,!(ul&130023424)&&(ul=4194304)):t=1);var n=xt();e=ir(e,t),e!==null&&(Pa(e,t,n),It(e,n))}function lA(e){var t=e.memoizedState,n=0;t!==null&&(n=t.retryLane),Aw(e,n)}function cA(e,t){var n=0;switch(e.tag){case 13:var r=e.stateNode,o=e.memoizedState;o!==null&&(n=o.retryLane);break;case 19:r=e.stateNode;break;default:throw Error(W(314))}r!==null&&r.delete(t),Aw(e,n)}var Dw;Dw=function(e,t,n){if(e!==null)if(e.memoizedProps!==t.pendingProps||At.current)Nt=!0;else{if(!(e.lanes&n)&&!(t.flags&128))return Nt=!1,ZN(e,t,n);Nt=!!(e.flags&131072)}else Nt=!1,Ne&&t.flags&1048576&&Lx(t,Rc,t.index);switch(t.lanes=0,t.tag){case 2:var r=t.type;rc(e,t),e=t.pendingProps;var o=Oi(t,mt.current);Si(t,n),o=Im(null,t,r,e,o,n);var i=Rm();return t.flags|=1,typeof o==\"object\"&&o!==null&&typeof o.render==\"function\"&&o.$$typeof===void 0?(t.tag=1,t.memoizedState=null,t.updateQueue=null,Dt(r)?(i=!0,Dc(t)):i=!1,t.memoizedState=o.state!==null&&o.state!==void 0?o.state:null,Tm(t),o.updater=Iu,t.stateNode=o,o._reactInternals=t,Tp(t,r,e,n),t=Ap(null,t,r,!0,i,n)):(t.tag=0,Ne&&i&&Em(t),bt(null,t,o,n),t=t.child),t;case 16:r=t.elementType;e:{switch(rc(e,t),e=t.pendingProps,o=r._init,r=o(r._payload),t.type=r,o=t.tag=fA(r),e=fn(r,e),o){case 0:t=Np(null,t,r,e,n);break e;case 1:t=vg(null,t,r,e,n);break e;case 11:t=hg(null,t,r,e,n);break e;case 14:t=mg(null,t,r,fn(r.type,e),n);break e}throw Error(W(306,r,\"\"))}return t;case 0:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:fn(r,o),Np(e,t,r,o,n);case 1:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:fn(r,o),vg(e,t,r,o,n);case 3:e:{if(pw(t),e===null)throw Error(W(387));r=t.pendingProps,i=t.memoizedState,o=i.element,Fx(e,t),Pc(t,r,null,n);var s=t.memoizedState;if(r=s.element,i.isDehydrated)if(i={element:r,isDehydrated:!1,cache:s.cache,pendingSuspenseBoundaries:s.pendingSuspenseBoundaries,transitions:s.transitions},t.updateQueue.baseState=i,t.memoizedState=i,t.flags&256){o=Mi(Error(W(423)),t),t=gg(e,t,r,n,o);break e}else if(r!==o){o=Mi(Error(W(424)),t),t=gg(e,t,r,n,o);break e}else for($t=Pr(t.stateNode.containerInfo.firstChild),Mt=t,Ne=!0,hn=null,n=qx(t,null,r,n),t.child=n;n;)n.flags=n.flags&-3|4096,n=n.sibling;else{if(Pi(),r===o){t=sr(e,t,n);break e}bt(e,t,r,n)}t=t.child}return t;case 5:return Ux(t),e===null&&_p(t),r=t.type,o=t.pendingProps,i=e!==null?e.memoizedProps:null,s=o.children,yp(r,o)?s=null:i!==null&&yp(r,i)&&(t.flags|=32),dw(e,t),bt(e,t,s,n),t.child;case 6:return e===null&&_p(t),null;case 13:return hw(e,t,n);case 4:return km(t,t.stateNode.containerInfo),r=t.pendingProps,e===null?t.child=$i(t,null,r,n):bt(e,t,r,n),t.child;case 11:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:fn(r,o),hg(e,t,r,o,n);case 7:return bt(e,t,t.pendingProps,n),t.child;case 8:return bt(e,t,t.pendingProps.children,n),t.child;case 12:return bt(e,t,t.pendingProps.children,n),t.child;case 10:e:{if(r=t.type._context,o=t.pendingProps,i=t.memoizedProps,s=o.value,Ce(Lc,r._currentValue),r._currentValue=s,i!==null)if(Cn(i.value,s)){if(i.children===o.children&&!At.current){t=sr(e,t,n);break e}}else for(i=t.child,i!==null&&(i.return=t);i!==null;){var a=i.dependencies;if(a!==null){s=i.child;for(var l=a.firstContext;l!==null;){if(l.context===r){if(i.tag===1){l=tr(-1,n&-n),l.tag=2;var c=i.updateQueue;if(c!==null){c=c.shared;var u=c.pending;u===null?l.next=l:(l.next=u.next,u.next=l),c.pending=l}}i.lanes|=n,l=i.alternate,l!==null&&(l.lanes|=n),Sp(i.return,n,t),a.lanes|=n;break}l=l.next}}else if(i.tag===10)s=i.type===t.type?null:i.child;else if(i.tag===18){if(s=i.return,s===null)throw Error(W(341));s.lanes|=n,a=s.alternate,a!==null&&(a.lanes|=n),Sp(s,n,t),s=i.sibling}else s=i.child;if(s!==null)s.return=i;else for(s=i;s!==null;){if(s===t){s=null;break}if(i=s.sibling,i!==null){i.return=s.return,s=i;break}s=s.return}i=s}bt(e,t,o.children,n),t=t.child}return t;case 9:return o=t.type,r=t.pendingProps.children,Si(t,n),o=en(o),r=r(o),t.flags|=1,bt(e,t,r,n),t.child;case 14:return r=t.type,o=fn(r,t.pendingProps),o=fn(r.type,o),mg(e,t,r,o,n);case 15:return uw(e,t,t.type,t.pendingProps,n);case 17:return r=t.type,o=t.pendingProps,o=t.elementType===r?o:fn(r,o),rc(e,t),t.tag=1,Dt(r)?(e=!0,Dc(t)):e=!1,Si(t,n),Vx(t,r,o),Tp(t,r,o,n),Ap(null,t,r,!0,e,n);case 19:return mw(e,t,n);case 22:return fw(e,t,n)}throw Error(W(156,t.tag))};function Iw(e,t){return rx(e,t)}function uA(e,t,n,r){this.tag=e,this.key=n,this.sibling=this.child=this.return=this.stateNode=this.type=this.elementType=null,this.index=0,this.ref=null,this.pendingProps=t,this.dependencies=this.memoizedState=this.updateQueue=this.memoizedProps=null,this.mode=r,this.subtreeFlags=this.flags=0,this.deletions=null,this.childLanes=this.lanes=0,this.alternate=null}function Zt(e,t,n,r){return new uA(e,t,n,r)}function Um(e){return e=e.prototype,!(!e||!e.isReactComponent)}function fA(e){if(typeof e==\"function\")return Um(e)?1:0;if(e!=null){if(e=e.$$typeof,e===am)return 11;if(e===lm)return 14}return 2}function Vr(e,t){var n=e.alternate;return n===null?(n=Zt(e.tag,t,e.key,e.mode),n.elementType=e.elementType,n.type=e.type,n.stateNode=e.stateNode,n.alternate=e,e.alternate=n):(n.pendingProps=t,n.type=e.type,n.flags=0,n.subtreeFlags=0,n.deletions=null),n.flags=e.flags&14680064,n.childLanes=e.childLanes,n.lanes=e.lanes,n.child=e.child,n.memoizedProps=e.memoizedProps,n.memoizedState=e.memoizedState,n.updateQueue=e.updateQueue,t=e.dependencies,n.dependencies=t===null?null:{lanes:t.lanes,firstContext:t.firstContext},n.sibling=e.sibling,n.index=e.index,n.ref=e.ref,n}function sc(e,t,n,r,o,i){var s=2;if(r=e,typeof e==\"function\")Um(e)&&(s=1);else if(typeof e==\"string\")s=5;else e:switch(e){case oi:return bo(n.children,o,i,t);case sm:s=8,o|=8;break;case Zd:return e=Zt(12,n,t,o|2),e.elementType=Zd,e.lanes=i,e;case Xd:return e=Zt(13,n,t,o),e.elementType=Xd,e.lanes=i,e;case Jd:return e=Zt(19,n,t,o),e.elementType=Jd,e.lanes=i,e;case jb:return Pu(n,o,i,t);default:if(typeof e==\"object\"&&e!==null)switch(e.$$typeof){case Mb:s=10;break e;case Vb:s=9;break e;case am:s=11;break e;case lm:s=14;break e;case Er:s=16,r=null;break e}throw Error(W(130,e==null?e:typeof e,\"\"))}return t=Zt(s,n,t,o),t.elementType=e,t.type=r,t.lanes=i,t}function bo(e,t,n,r){return e=Zt(7,e,r,t),e.lanes=n,e}function Pu(e,t,n,r){return e=Zt(22,e,r,t),e.elementType=jb,e.lanes=n,e.stateNode={isHidden:!1},e}function Kf(e,t,n){return e=Zt(6,e,null,t),e.lanes=n,e}function ed(e,t,n){return t=Zt(4,e.children!==null?e.children:[],e.key,t),t.lanes=n,t.stateNode={containerInfo:e.containerInfo,pendingChildren:null,implementation:e.implementation},t}function dA(e,t,n,r,o){this.tag=t,this.containerInfo=e,this.finishedWork=this.pingCache=this.current=this.pendingChildren=null,this.timeoutHandle=-1,this.callbackNode=this.pendingContext=this.context=null,this.callbackPriority=0,this.eventTimes=Of(0),this.expirationTimes=Of(-1),this.entangledLanes=this.finishedLanes=this.mutableReadLanes=this.expiredLanes=this.pingedLanes=this.suspendedLanes=this.pendingLanes=0,this.entanglements=Of(0),this.identifierPrefix=r,this.onRecoverableError=o,this.mutableSourceEagerHydrationData=null}function Bm(e,t,n,r,o,i,s,a,l){return e=new dA(e,t,n,a,l),t===1?(t=1,i===!0&&(t|=8)):t=0,i=Zt(3,null,null,t),e.current=i,i.stateNode=e,i.memoizedState={element:r,isDehydrated:n,cache:null,transitions:null,pendingSuspenseBoundaries:null},Tm(i),e}function pA(e,t,n){var r=3<arguments.length&&arguments[3]!==void 0?arguments[3]:null;return{$$typeof:ri,key:r==null?null:\"\"+r,children:e,containerInfo:t,implementation:n}}function Rw(e){if(!e)return Br;e=e._reactInternals;e:{if(jo(e)!==e||e.tag!==1)throw Error(W(170));var t=e;do{switch(t.tag){case 3:t=t.stateNode.context;break e;case 1:if(Dt(t.type)){t=t.stateNode.__reactInternalMemoizedMergedChildContext;break e}}t=t.return}while(t!==null);throw Error(W(171))}if(e.tag===1){var n=e.type;if(Dt(n))return Ix(e,n,t)}return t}function Lw(e,t,n,r,o,i,s,a,l){return e=Bm(n,r,!0,e,o,i,s,a,l),e.context=Rw(null),n=e.current,r=xt(),o=Mr(n),i=tr(r,o),i.callback=t??null,$r(n,i,o),e.current.lanes=o,Pa(e,o,r),It(e,r),e}function $u(e,t,n,r){var o=t.current,i=xt(),s=Mr(o);return n=Rw(n),t.context===null?t.context=n:t.pendingContext=n,t=tr(i,s),t.payload={element:e},r=r===void 0?null:r,r!==null&&(t.callback=r),e=$r(o,t,s),e!==null&&(wn(e,o,s,i),ec(e,o,s)),s}function Bc(e){if(e=e.current,!e.child)return null;switch(e.child.tag){case 5:return e.child.stateNode;default:return e.child.stateNode}}function kg(e,t){if(e=e.memoizedState,e!==null&&e.dehydrated!==null){var n=e.retryLane;e.retryLane=n!==0&&n<t?n:t}}function zm(e,t){kg(e,t),(e=e.alternate)&&kg(e,t)}function hA(){return null}var Ow=typeof reportError==\"function\"?reportError:function(e){console.error(e)};function Hm(e){this._internalRoot=e}Fu.prototype.render=Hm.prototype.render=function(e){var t=this._internalRoot;if(t===null)throw Error(W(409));$u(e,t,null,null)};Fu.prototype.unmount=Hm.prototype.unmount=function(){var e=this._internalRoot;if(e!==null){this._internalRoot=null;var t=e.containerInfo;Ao(function(){$u(null,e,null,null)}),t[or]=null}};function Fu(e){this._internalRoot=e}Fu.prototype.unstable_scheduleHydration=function(e){if(e){var t=ux();e={blockedOn:null,target:e,priority:t};for(var n=0;n<Sr.length&&t!==0&&t<Sr[n].priority;n++);Sr.splice(n,0,e),n===0&&dx(e)}};function Gm(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11)}function Mu(e){return!(!e||e.nodeType!==1&&e.nodeType!==9&&e.nodeType!==11&&(e.nodeType!==8||e.nodeValue!==\" react-mount-point-unstable \"))}function Ng(){}function mA(e,t,n,r,o){if(o){if(typeof r==\"function\"){var i=r;r=function(){var c=Bc(s);i.call(c)}}var s=Lw(t,r,e,0,null,!1,!1,\"\",Ng);return e._reactRootContainer=s,e[or]=s.current,ea(e.nodeType===8?e.parentNode:e),Ao(),s}for(;o=e.lastChild;)e.removeChild(o);if(typeof r==\"function\"){var a=r;r=function(){var c=Bc(l);a.call(c)}}var l=Bm(e,0,!1,null,null,!1,!1,\"\",Ng);return e._reactRootContainer=l,e[or]=l.current,ea(e.nodeType===8?e.parentNode:e),Ao(function(){$u(t,l,n,r)}),l}function Vu(e,t,n,r,o){var i=n._reactRootContainer;if(i){var s=i;if(typeof o==\"function\"){var a=o;o=function(){var l=Bc(s);a.call(l)}}$u(t,s,e,o)}else s=mA(n,t,e,o,r);return Bc(s)}lx=function(e){switch(e.tag){case 3:var t=e.stateNode;if(t.current.memoizedState.isDehydrated){var n=ws(t.pendingLanes);n!==0&&(fm(t,n|1),It(t,je()),!(pe&6)&&(Vi=je()+500,Yr()))}break;case 13:Ao(function(){var r=ir(e,1);if(r!==null){var o=xt();wn(r,e,1,o)}}),zm(e,1)}};dm=function(e){if(e.tag===13){var t=ir(e,134217728);if(t!==null){var n=xt();wn(t,e,134217728,n)}zm(e,134217728)}};cx=function(e){if(e.tag===13){var t=Mr(e),n=ir(e,t);if(n!==null){var r=xt();wn(n,e,t,r)}zm(e,t)}};ux=function(){return Ee};fx=function(e,t){var n=Ee;try{return Ee=e,t()}finally{Ee=n}};lp=function(e,t,n){switch(t){case\"input\":if(tp(e,n),t=n.name,n.type===\"radio\"&&t!=null){for(n=e;n.parentNode;)n=n.parentNode;for(n=n.querySelectorAll(\"input[name=\"+JSON.stringify(\"\"+t)+'][type=\"radio\"]'),t=0;t<n.length;t++){var r=n[t];if(r!==e&&r.form===e.form){var o=Au(r);if(!o)throw Error(W(90));Ub(r),tp(r,o)}}}break;case\"textarea\":zb(e,n);break;case\"select\":t=n.value,t!=null&&bi(e,!!n.multiple,t,!1)}};Xb=Vm;Jb=Ao;var vA={usingClientEntryPoint:!1,Events:[Fa,li,Au,Yb,Zb,Vm]},vs={findFiberByHostInstance:po,bundleType:0,version:\"18.2.0\",rendererPackageName:\"react-dom\"},gA={bundleType:vs.bundleType,version:vs.version,rendererPackageName:vs.rendererPackageName,rendererConfig:vs.rendererConfig,overrideHookState:null,overrideHookStateDeletePath:null,overrideHookStateRenamePath:null,overrideProps:null,overridePropsDeletePath:null,overridePropsRenamePath:null,setErrorHandler:null,setSuspenseHandler:null,scheduleUpdate:null,currentDispatcherRef:pr.ReactCurrentDispatcher,findHostInstanceByFiber:function(e){return e=tx(e),e===null?null:e.stateNode},findFiberByHostInstance:vs.findFiberByHostInstance||hA,findHostInstancesForRefresh:null,scheduleRefresh:null,scheduleRoot:null,setRefreshHandler:null,getCurrentFiber:null,reconcilerVersion:\"18.2.0-next-9e3b772b8-20220608\"};if(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__<\"u\"){var xl=__REACT_DEVTOOLS_GLOBAL_HOOK__;if(!xl.isDisabled&&xl.supportsFiber)try{Cu=xl.inject(gA),Fn=xl}catch{}}Ht.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED=vA;Ht.createPortal=function(e,t){var n=2<arguments.length&&arguments[2]!==void 0?arguments[2]:null;if(!Gm(t))throw Error(W(200));return pA(e,t,null,n)};Ht.createRoot=function(e,t){if(!Gm(e))throw Error(W(299));var n=!1,r=\"\",o=Ow;return t!=null&&(t.unstable_strictMode===!0&&(n=!0),t.identifierPrefix!==void 0&&(r=t.identifierPrefix),t.onRecoverableError!==void 0&&(o=t.onRecoverableError)),t=Bm(e,1,!1,null,null,n,!1,r,o),e[or]=t.current,ea(e.nodeType===8?e.parentNode:e),new Hm(t)};Ht.findDOMNode=function(e){if(e==null)return null;if(e.nodeType===1)return e;var t=e._reactInternals;if(t===void 0)throw typeof e.render==\"function\"?Error(W(188)):(e=Object.keys(e).join(\",\"),Error(W(268,e)));return e=tx(t),e=e===null?null:e.stateNode,e};Ht.flushSync=function(e){return Ao(e)};Ht.hydrate=function(e,t,n){if(!Mu(t))throw Error(W(200));return Vu(null,e,t,!0,n)};Ht.hydrateRoot=function(e,t,n){if(!Gm(e))throw Error(W(405));var r=n!=null&&n.hydratedSources||null,o=!1,i=\"\",s=Ow;if(n!=null&&(n.unstable_strictMode===!0&&(o=!0),n.identifierPrefix!==void 0&&(i=n.identifierPrefix),n.onRecoverableError!==void 0&&(s=n.onRecoverableError)),t=Lw(t,null,e,1,n??null,o,!1,i,s),e[or]=t.current,ea(e),r)for(e=0;e<r.length;e++)n=r[e],o=n._getVersion,o=o(n._source),t.mutableSourceEagerHydrationData==null?t.mutableSourceEagerHydrationData=[n,o]:t.mutableSourceEagerHydrationData.push(n,o);return new Fu(t)};Ht.render=function(e,t,n){if(!Mu(t))throw Error(W(200));return Vu(null,e,t,!1,n)};Ht.unmountComponentAtNode=function(e){if(!Mu(e))throw Error(W(40));return e._reactRootContainer?(Ao(function(){Vu(null,null,e,!1,function(){e._reactRootContainer=null,e[or]=null})}),!0):!1};Ht.unstable_batchedUpdates=Vm;Ht.unstable_renderSubtreeIntoContainer=function(e,t,n,r){if(!Mu(n))throw Error(W(200));if(e==null||e._reactInternals===void 0)throw Error(W(38));return Vu(e,t,n,!1,r)};Ht.version=\"18.2.0-next-9e3b772b8-20220608\";function Pw(){if(!(typeof __REACT_DEVTOOLS_GLOBAL_HOOK__>\"u\"||typeof __REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE!=\"function\"))try{__REACT_DEVTOOLS_GLOBAL_HOOK__.checkDCE(Pw)}catch(e){console.error(e)}}Pw(),Lb.exports=Ht;var Va=Lb.exports;const qp=Wi(Va);var Ag=Va;Qd.createRoot=Ag.createRoot,Qd.hydrateRoot=Ag.hydrateRoot;var $w=globalThis&&globalThis.__awaiter||function(e,t,n,r){function o(i){return i instanceof n?i:new n(function(s){s(i)})}return new(n||(n=Promise))(function(i,s){function a(u){try{c(r.next(u))}catch(d){s(d)}}function l(u){try{c(r.throw(u))}catch(d){s(d)}}function c(u){u.done?i(u.value):o(u.value).then(a,l)}c((r=r.apply(e,t||[])).next())})};function Dg(e){return typeof e==\"object\"&&e!==null&&typeof e.then==\"function\"}function yA(e){return new Promise((t,n)=>{const r=e.subscribe({next(o){t(o),r.unsubscribe()},error:n,complete(){n(new Error(\"no value resolved\"))}})})}function Fw(e){return typeof e==\"object\"&&e!==null&&\"subscribe\"in e&&typeof e.subscribe==\"function\"}function Mw(e){return typeof e==\"object\"&&e!==null&&(e[Symbol.toStringTag]===\"AsyncGenerator\"||Symbol.asyncIterator in e)}function EA(e){var t;return $w(this,void 0,void 0,function*(){const n=(t=(\"return\"in e?e:e[Symbol.asyncIterator]()).return)===null||t===void 0?void 0:t.bind(e),o=yield(\"next\"in e?e:e[Symbol.asyncIterator]()).next.bind(e)();return n==null||n(),o.value})}function Ig(e){return $w(this,void 0,void 0,function*(){const t=yield e;return Mw(t)?EA(t):Fw(t)?yA(t):t})}function ge(e,t){if(!!!e)throw new Error(t)}function ar(e){return typeof e==\"object\"&&e!==null}function ju(e,t){if(!!!e)throw new Error(t??\"Unexpected invariant triggered.\")}const bA=/\\r\\n|[\\n\\r]/g;function Up(e,t){let n=0,r=1;for(const o of e.body.matchAll(bA)){if(typeof o.index==\"number\"||ju(!1),o.index>=t)break;n=o.index+o[0].length,r+=1}return{line:r,column:t+1-n}}function xA(e){return Vw(e.source,Up(e.source,e.start))}function Vw(e,t){const n=e.locationOffset.column-1,r=\"\".padStart(n)+e.body,o=t.line-1,i=e.locationOffset.line-1,s=t.line+i,a=t.line===1?n:0,l=t.column+a,c=`${e.name}:${s}:${l}\n`,u=r.split(/\\r\\n|[\\n\\r]/g),d=u[o];if(d.length>120){const p=Math.floor(l/80),f=l%80,m=[];for(let v=0;v<d.length;v+=80)m.push(d.slice(v,v+80));return c+Rg([[`${s} |`,m[0]],...m.slice(1,p+1).map(v=>[\"|\",v]),[\"|\",\"^\".padStart(f)],[\"|\",m[p+1]]])}return c+Rg([[`${s-1} |`,u[o-1]],[`${s} |`,d],[\"|\",\"^\".padStart(l)],[`${s+1} |`,u[o+1]]])}function Rg(e){const t=e.filter(([r,o])=>o!==void 0),n=Math.max(...t.map(([r])=>r.length));return t.map(([r,o])=>r.padStart(n)+(o?\" \"+o:\"\")).join(`\n`)}function wA(e){const t=e[0];return t==null||\"kind\"in t||\"length\"in t?{nodes:t,source:e[1],positions:e[2],path:e[3],originalError:e[4],extensions:e[5]}:t}class ve extends Error{constructor(t,...n){var r,o,i;const{nodes:s,source:a,positions:l,path:c,originalError:u,extensions:d}=wA(n);super(t),this.name=\"GraphQLError\",this.path=c??void 0,this.originalError=u??void 0,this.nodes=Lg(Array.isArray(s)?s:s?[s]:void 0);const p=Lg((r=this.nodes)===null||r===void 0?void 0:r.map(m=>m.loc).filter(m=>m!=null));this.source=a??(p==null||(o=p[0])===null||o===void 0?void 0:o.source),this.positions=l??(p==null?void 0:p.map(m=>m.start)),this.locations=l&&a?l.map(m=>Up(a,m)):p==null?void 0:p.map(m=>Up(m.source,m.start));const f=ar(u==null?void 0:u.extensions)?u==null?void 0:u.extensions:void 0;this.extensions=(i=d??f)!==null&&i!==void 0?i:Object.create(null),Object.defineProperties(this,{message:{writable:!0,enumerable:!0},name:{enumerable:!1},nodes:{enumerable:!1},source:{enumerable:!1},positions:{enumerable:!1},originalError:{enumerable:!1}}),u!=null&&u.stack?Object.defineProperty(this,\"stack\",{value:u.stack,writable:!0,configurable:!0}):Error.captureStackTrace?Error.captureStackTrace(this,ve):Object.defineProperty(this,\"stack\",{value:Error().stack,writable:!0,configurable:!0})}get[Symbol.toStringTag](){return\"GraphQLError\"}toString(){let t=this.message;if(this.nodes)for(const n of this.nodes)n.loc&&(t+=`\n\n`+xA(n.loc));else if(this.source&&this.locations)for(const n of this.locations)t+=`\n\n`+Vw(this.source,n);return t}toJSON(){const t={message:this.message};return this.locations!=null&&(t.locations=this.locations),this.path!=null&&(t.path=this.path),this.extensions!=null&&Object.keys(this.extensions).length>0&&(t.extensions=this.extensions),t}}function Lg(e){return e===void 0||e.length===0?void 0:e}function Xe(e,t,n){return new ve(`Syntax Error: ${n}`,{source:e,positions:[t]})}let _A=class{constructor(t,n,r){this.start=t.start,this.end=n.end,this.startToken=t,this.endToken=n,this.source=r}get[Symbol.toStringTag](){return\"Location\"}toJSON(){return{start:this.start,end:this.end}}},jw=class{constructor(t,n,r,o,i,s){this.kind=t,this.start=n,this.end=r,this.line=o,this.column=i,this.value=s,this.prev=null,this.next=null}get[Symbol.toStringTag](){return\"Token\"}toJSON(){return{kind:this.kind,value:this.value,line:this.line,column:this.column}}};const qw={Name:[],Document:[\"definitions\"],OperationDefinition:[\"name\",\"variableDefinitions\",\"directives\",\"selectionSet\"],VariableDefinition:[\"variable\",\"type\",\"defaultValue\",\"directives\"],Variable:[\"name\"],SelectionSet:[\"selections\"],Field:[\"alias\",\"name\",\"arguments\",\"directives\",\"selectionSet\"],Argument:[\"name\",\"value\"],FragmentSpread:[\"name\",\"directives\"],InlineFragment:[\"typeCondition\",\"directives\",\"selectionSet\"],FragmentDefinition:[\"name\",\"variableDefinitions\",\"typeCondition\",\"directives\",\"selectionSet\"],IntValue:[],FloatValue:[],StringValue:[],BooleanValue:[],NullValue:[],EnumValue:[],ListValue:[\"values\"],ObjectValue:[\"fields\"],ObjectField:[\"name\",\"value\"],Directive:[\"name\",\"arguments\"],NamedType:[\"name\"],ListType:[\"type\"],NonNullType:[\"type\"],SchemaDefinition:[\"description\",\"directives\",\"operationTypes\"],OperationTypeDefinition:[\"type\"],ScalarTypeDefinition:[\"description\",\"name\",\"directives\"],ObjectTypeDefinition:[\"description\",\"name\",\"interfaces\",\"directives\",\"fields\"],FieldDefinition:[\"description\",\"name\",\"arguments\",\"type\",\"directives\"],InputValueDefinition:[\"description\",\"name\",\"type\",\"defaultValue\",\"directives\"],InterfaceTypeDefinition:[\"description\",\"name\",\"interfaces\",\"directives\",\"fields\"],UnionTypeDefinition:[\"description\",\"name\",\"directives\",\"types\"],EnumTypeDefinition:[\"description\",\"name\",\"directives\",\"values\"],EnumValueDefinition:[\"description\",\"name\",\"directives\"],InputObjectTypeDefinition:[\"description\",\"name\",\"directives\",\"fields\"],DirectiveDefinition:[\"description\",\"name\",\"arguments\",\"locations\"],SchemaExtension:[\"directives\",\"operationTypes\"],ScalarTypeExtension:[\"name\",\"directives\"],ObjectTypeExtension:[\"name\",\"interfaces\",\"directives\",\"fields\"],InterfaceTypeExtension:[\"name\",\"interfaces\",\"directives\",\"fields\"],UnionTypeExtension:[\"name\",\"directives\",\"types\"],EnumTypeExtension:[\"name\",\"directives\",\"values\"],InputObjectTypeExtension:[\"name\",\"directives\",\"fields\"]},SA=new Set(Object.keys(qw));function Bp(e){const t=e==null?void 0:e.kind;return typeof t==\"string\"&&SA.has(t)}var Xt;(function(e){e.QUERY=\"query\",e.MUTATION=\"mutation\",e.SUBSCRIPTION=\"subscription\"})(Xt||(Xt={}));var ne;(function(e){e.QUERY=\"QUERY\",e.MUTATION=\"MUTATION\",e.SUBSCRIPTION=\"SUBSCRIPTION\",e.FIELD=\"FIELD\",e.FRAGMENT_DEFINITION=\"FRAGMENT_DEFINITION\",e.FRAGMENT_SPREAD=\"FRAGMENT_SPREAD\",e.INLINE_FRAGMENT=\"INLINE_FRAGMENT\",e.VARIABLE_DEFINITION=\"VARIABLE_DEFINITION\",e.SCHEMA=\"SCHEMA\",e.SCALAR=\"SCALAR\",e.OBJECT=\"OBJECT\",e.FIELD_DEFINITION=\"FIELD_DEFINITION\",e.ARGUMENT_DEFINITION=\"ARGUMENT_DEFINITION\",e.INTERFACE=\"INTERFACE\",e.UNION=\"UNION\",e.ENUM=\"ENUM\",e.ENUM_VALUE=\"ENUM_VALUE\",e.INPUT_OBJECT=\"INPUT_OBJECT\",e.INPUT_FIELD_DEFINITION=\"INPUT_FIELD_DEFINITION\"})(ne||(ne={}));var L;(function(e){e.NAME=\"Name\",e.DOCUMENT=\"Document\",e.OPERATION_DEFINITION=\"OperationDefinition\",e.VARIABLE_DEFINITION=\"VariableDefinition\",e.SELECTION_SET=\"SelectionSet\",e.FIELD=\"Field\",e.ARGUMENT=\"Argument\",e.FRAGMENT_SPREAD=\"FragmentSpread\",e.INLINE_FRAGMENT=\"InlineFragment\",e.FRAGMENT_DEFINITION=\"FragmentDefinition\",e.VARIABLE=\"Variable\",e.INT=\"IntValue\",e.FLOAT=\"FloatValue\",e.STRING=\"StringValue\",e.BOOLEAN=\"BooleanValue\",e.NULL=\"NullValue\",e.ENUM=\"EnumValue\",e.LIST=\"ListValue\",e.OBJECT=\"ObjectValue\",e.OBJECT_FIELD=\"ObjectField\",e.DIRECTIVE=\"Directive\",e.NAMED_TYPE=\"NamedType\",e.LIST_TYPE=\"ListType\",e.NON_NULL_TYPE=\"NonNullType\",e.SCHEMA_DEFINITION=\"SchemaDefinition\",e.OPERATION_TYPE_DEFINITION=\"OperationTypeDefinition\",e.SCALAR_TYPE_DEFINITION=\"ScalarTypeDefinition\",e.OBJECT_TYPE_DEFINITION=\"ObjectTypeDefinition\",e.FIELD_DEFINITION=\"FieldDefinition\",e.INPUT_VALUE_DEFINITION=\"InputValueDefinition\",e.INTERFACE_TYPE_DEFINITION=\"InterfaceTypeDefinition\",e.UNION_TYPE_DEFINITION=\"UnionTypeDefinition\",e.ENUM_TYPE_DEFINITION=\"EnumTypeDefinition\",e.ENUM_VALUE_DEFINITION=\"EnumValueDefinition\",e.INPUT_OBJECT_TYPE_DEFINITION=\"InputObjectTypeDefinition\",e.DIRECTIVE_DEFINITION=\"DirectiveDefinition\",e.SCHEMA_EXTENSION=\"SchemaExtension\",e.SCALAR_TYPE_EXTENSION=\"ScalarTypeExtension\",e.OBJECT_TYPE_EXTENSION=\"ObjectTypeExtension\",e.INTERFACE_TYPE_EXTENSION=\"InterfaceTypeExtension\",e.UNION_TYPE_EXTENSION=\"UnionTypeExtension\",e.ENUM_TYPE_EXTENSION=\"EnumTypeExtension\",e.INPUT_OBJECT_TYPE_EXTENSION=\"InputObjectTypeExtension\"})(L||(L={}));function zp(e){return e===9||e===32}function ca(e){return e>=48&&e<=57}function Uw(e){return e>=97&&e<=122||e>=65&&e<=90}function Wm(e){return Uw(e)||e===95}function Bw(e){return Uw(e)||ca(e)||e===95}function CA(e){var t;let n=Number.MAX_SAFE_INTEGER,r=null,o=-1;for(let s=0;s<e.length;++s){var i;const a=e[s],l=TA(a);l!==a.length&&(r=(i=r)!==null&&i!==void 0?i:s,o=s,s!==0&&l<n&&(n=l))}return e.map((s,a)=>a===0?s:s.slice(n)).slice((t=r)!==null&&t!==void 0?t:0,o+1)}function TA(e){let t=0;for(;t<e.length&&zp(e.charCodeAt(t));)++t;return t}function kA(e,t){const n=e.replace(/\"\"\"/g,'\\\\\"\"\"'),r=n.split(/\\r\\n|[\\n\\r]/g),o=r.length===1,i=r.length>1&&r.slice(1).every(f=>f.length===0||zp(f.charCodeAt(0))),s=n.endsWith('\\\\\"\"\"'),a=e.endsWith('\"')&&!s,l=e.endsWith(\"\\\\\"),c=a||l,u=!(t!=null&&t.minimize)&&(!o||e.length>70||c||i||s);let d=\"\";const p=o&&zp(e.charCodeAt(0));return(u&&!p||i)&&(d+=`\n`),d+=n,(u||c)&&(d+=`\n`),'\"\"\"'+d+'\"\"\"'}var B;(function(e){e.SOF=\"<SOF>\",e.EOF=\"<EOF>\",e.BANG=\"!\",e.DOLLAR=\"$\",e.AMP=\"&\",e.PAREN_L=\"(\",e.PAREN_R=\")\",e.SPREAD=\"...\",e.COLON=\":\",e.EQUALS=\"=\",e.AT=\"@\",e.BRACKET_L=\"[\",e.BRACKET_R=\"]\",e.BRACE_L=\"{\",e.PIPE=\"|\",e.BRACE_R=\"}\",e.NAME=\"Name\",e.INT=\"Int\",e.FLOAT=\"Float\",e.STRING=\"String\",e.BLOCK_STRING=\"BlockString\",e.COMMENT=\"Comment\"})(B||(B={}));class NA{constructor(t){const n=new jw(B.SOF,0,0,0,0);this.source=t,this.lastToken=n,this.token=n,this.line=1,this.lineStart=0}get[Symbol.toStringTag](){return\"Lexer\"}advance(){return this.lastToken=this.token,this.token=this.lookahead()}lookahead(){let t=this.token;if(t.kind!==B.EOF)do if(t.next)t=t.next;else{const n=DA(this,t.end);t.next=n,n.prev=t,t=n}while(t.kind===B.COMMENT);return t}}function AA(e){return e===B.BANG||e===B.DOLLAR||e===B.AMP||e===B.PAREN_L||e===B.PAREN_R||e===B.SPREAD||e===B.COLON||e===B.EQUALS||e===B.AT||e===B.BRACKET_L||e===B.BRACKET_R||e===B.BRACE_L||e===B.PIPE||e===B.BRACE_R}function Xi(e){return e>=0&&e<=55295||e>=57344&&e<=1114111}function qu(e,t){return zw(e.charCodeAt(t))&&Hw(e.charCodeAt(t+1))}function zw(e){return e>=55296&&e<=56319}function Hw(e){return e>=56320&&e<=57343}function Do(e,t){const n=e.source.body.codePointAt(t);if(n===void 0)return B.EOF;if(n>=32&&n<=126){const r=String.fromCodePoint(n);return r==='\"'?`'\"'`:`\"${r}\"`}return\"U+\"+n.toString(16).toUpperCase().padStart(4,\"0\")}function He(e,t,n,r,o){const i=e.line,s=1+n-e.lineStart;return new jw(t,n,r,i,s,o)}function DA(e,t){const n=e.source.body,r=n.length;let o=t;for(;o<r;){const i=n.charCodeAt(o);switch(i){case 65279:case 9:case 32:case 44:++o;continue;case 10:++o,++e.line,e.lineStart=o;continue;case 13:n.charCodeAt(o+1)===10?o+=2:++o,++e.line,e.lineStart=o;continue;case 35:return IA(e,o);case 33:return He(e,B.BANG,o,o+1);case 36:return He(e,B.DOLLAR,o,o+1);case 38:return He(e,B.AMP,o,o+1);case 40:return He(e,B.PAREN_L,o,o+1);case 41:return He(e,B.PAREN_R,o,o+1);case 46:if(n.charCodeAt(o+1)===46&&n.charCodeAt(o+2)===46)return He(e,B.SPREAD,o,o+3);break;case 58:return He(e,B.COLON,o,o+1);case 61:return He(e,B.EQUALS,o,o+1);case 64:return He(e,B.AT,o,o+1);case 91:return He(e,B.BRACKET_L,o,o+1);case 93:return He(e,B.BRACKET_R,o,o+1);case 123:return He(e,B.BRACE_L,o,o+1);case 124:return He(e,B.PIPE,o,o+1);case 125:return He(e,B.BRACE_R,o,o+1);case 34:return n.charCodeAt(o+1)===34&&n.charCodeAt(o+2)===34?FA(e,o):LA(e,o)}if(ca(i)||i===45)return RA(e,o,i);if(Wm(i))return MA(e,o);throw Xe(e.source,o,i===39?`Unexpected single quote character ('), did you mean to use a double quote (\")?`:Xi(i)||qu(n,o)?`Unexpected character: ${Do(e,o)}.`:`Invalid character: ${Do(e,o)}.`)}return He(e,B.EOF,r,r)}function IA(e,t){const n=e.source.body,r=n.length;let o=t+1;for(;o<r;){const i=n.charCodeAt(o);if(i===10||i===13)break;if(Xi(i))++o;else if(qu(n,o))o+=2;else break}return He(e,B.COMMENT,t,o,n.slice(t+1,o))}function RA(e,t,n){const r=e.source.body;let o=t,i=n,s=!1;if(i===45&&(i=r.charCodeAt(++o)),i===48){if(i=r.charCodeAt(++o),ca(i))throw Xe(e.source,o,`Invalid number, unexpected digit after 0: ${Do(e,o)}.`)}else o=td(e,o,i),i=r.charCodeAt(o);if(i===46&&(s=!0,i=r.charCodeAt(++o),o=td(e,o,i),i=r.charCodeAt(o)),(i===69||i===101)&&(s=!0,i=r.charCodeAt(++o),(i===43||i===45)&&(i=r.charCodeAt(++o)),o=td(e,o,i),i=r.charCodeAt(o)),i===46||Wm(i))throw Xe(e.source,o,`Invalid number, expected digit but got: ${Do(e,o)}.`);return He(e,s?B.FLOAT:B.INT,t,o,r.slice(t,o))}function td(e,t,n){if(!ca(n))throw Xe(e.source,t,`Invalid number, expected digit but got: ${Do(e,t)}.`);const r=e.source.body;let o=t+1;for(;ca(r.charCodeAt(o));)++o;return o}function LA(e,t){const n=e.source.body,r=n.length;let o=t+1,i=o,s=\"\";for(;o<r;){const a=n.charCodeAt(o);if(a===34)return s+=n.slice(i,o),He(e,B.STRING,t,o+1,s);if(a===92){s+=n.slice(i,o);const l=n.charCodeAt(o+1)===117?n.charCodeAt(o+2)===123?OA(e,o):PA(e,o):$A(e,o);s+=l.value,o+=l.size,i=o;continue}if(a===10||a===13)break;if(Xi(a))++o;else if(qu(n,o))o+=2;else throw Xe(e.source,o,`Invalid character within String: ${Do(e,o)}.`)}throw Xe(e.source,o,\"Unterminated string.\")}function OA(e,t){const n=e.source.body;let r=0,o=3;for(;o<12;){const i=n.charCodeAt(t+o++);if(i===125){if(o<5||!Xi(r))break;return{value:String.fromCodePoint(r),size:o}}if(r=r<<4|Ss(i),r<0)break}throw Xe(e.source,t,`Invalid Unicode escape sequence: \"${n.slice(t,t+o)}\".`)}function PA(e,t){const n=e.source.body,r=Og(n,t+2);if(Xi(r))return{value:String.fromCodePoint(r),size:6};if(zw(r)&&n.charCodeAt(t+6)===92&&n.charCodeAt(t+7)===117){const o=Og(n,t+8);if(Hw(o))return{value:String.fromCodePoint(r,o),size:12}}throw Xe(e.source,t,`Invalid Unicode escape sequence: \"${n.slice(t,t+6)}\".`)}function Og(e,t){return Ss(e.charCodeAt(t))<<12|Ss(e.charCodeAt(t+1))<<8|Ss(e.charCodeAt(t+2))<<4|Ss(e.charCodeAt(t+3))}function Ss(e){return e>=48&&e<=57?e-48:e>=65&&e<=70?e-55:e>=97&&e<=102?e-87:-1}function $A(e,t){const n=e.source.body;switch(n.charCodeAt(t+1)){case 34:return{value:'\"',size:2};case 92:return{value:\"\\\\\",size:2};case 47:return{value:\"/\",size:2};case 98:return{value:\"\\b\",size:2};case 102:return{value:\"\\f\",size:2};case 110:return{value:`\n`,size:2};case 114:return{value:\"\\r\",size:2};case 116:return{value:\"\t\",size:2}}throw Xe(e.source,t,`Invalid character escape sequence: \"${n.slice(t,t+2)}\".`)}function FA(e,t){const n=e.source.body,r=n.length;let o=e.lineStart,i=t+3,s=i,a=\"\";const l=[];for(;i<r;){const c=n.charCodeAt(i);if(c===34&&n.charCodeAt(i+1)===34&&n.charCodeAt(i+2)===34){a+=n.slice(s,i),l.push(a);const u=He(e,B.BLOCK_STRING,t,i+3,CA(l).join(`\n`));return e.line+=l.length-1,e.lineStart=o,u}if(c===92&&n.charCodeAt(i+1)===34&&n.charCodeAt(i+2)===34&&n.charCodeAt(i+3)===34){a+=n.slice(s,i),s=i+1,i+=4;continue}if(c===10||c===13){a+=n.slice(s,i),l.push(a),c===13&&n.charCodeAt(i+1)===10?i+=2:++i,a=\"\",s=i,o=i;continue}if(Xi(c))++i;else if(qu(n,i))i+=2;else throw Xe(e.source,i,`Invalid character within String: ${Do(e,i)}.`)}throw Xe(e.source,i,\"Unterminated string.\")}function MA(e,t){const n=e.source.body,r=n.length;let o=t+1;for(;o<r;){const i=n.charCodeAt(o);if(Bw(i))++o;else break}return He(e,B.NAME,t,o,n.slice(t,o))}const VA=10,Gw=2;function J(e){return Uu(e,[])}function Uu(e,t){switch(typeof e){case\"string\":return JSON.stringify(e);case\"function\":return e.name?`[function ${e.name}]`:\"[function]\";case\"object\":return jA(e,t);default:return String(e)}}function jA(e,t){if(e===null)return\"null\";if(t.includes(e))return\"[Circular]\";const n=[...t,e];if(qA(e)){const r=e.toJSON();if(r!==e)return typeof r==\"string\"?r:Uu(r,n)}else if(Array.isArray(e))return BA(e,n);return UA(e,n)}function qA(e){return typeof e.toJSON==\"function\"}function UA(e,t){const n=Object.entries(e);return n.length===0?\"{}\":t.length>Gw?\"[\"+zA(e)+\"]\":\"{ \"+n.map(([o,i])=>o+\": \"+Uu(i,t)).join(\", \")+\" }\"}function BA(e,t){if(e.length===0)return\"[]\";if(t.length>Gw)return\"[Array]\";const n=Math.min(VA,e.length),r=e.length-n,o=[];for(let i=0;i<n;++i)o.push(Uu(e[i],t));return r===1?o.push(\"... 1 more item\"):r>1&&o.push(`... ${r} more items`),\"[\"+o.join(\", \")+\"]\"}function zA(e){const t=Object.prototype.toString.call(e).replace(/^\\[object /,\"\").replace(/]$/,\"\");if(t===\"Object\"&&typeof e.constructor==\"function\"){const n=e.constructor.name;if(typeof n==\"string\"&&n!==\"\")return n}return t}const kn=globalThis.process?function(t,n){return t instanceof n}:function(t,n){if(t instanceof n)return!0;if(typeof t==\"object\"&&t!==null){var r;const o=n.prototype[Symbol.toStringTag],i=Symbol.toStringTag in t?t[Symbol.toStringTag]:(r=t.constructor)===null||r===void 0?void 0:r.name;if(o===i){const s=J(t);throw new Error(`Cannot use ${o} \"${s}\" from another module or realm.\n\nEnsure that there is only one instance of \"graphql\" in the node_modules\ndirectory. If different versions of \"graphql\" are the dependencies of other\nrelied on modules, use \"resolutions\" to ensure only one version is installed.\n\nhttps://yarnpkg.com/en/docs/selective-version-resolutions\n\nDuplicate \"graphql\" modules cannot be used at the same time since different\nversions may have different capabilities and behavior. The data from one\nversion used in the function from another could produce confusing and\nspurious results.`)}}return!1};class Ww{constructor(t,n=\"GraphQL request\",r={line:1,column:1}){typeof t==\"string\"||ge(!1,`Body must be a string. Received: ${J(t)}.`),this.body=t,this.name=n,this.locationOffset=r,this.locationOffset.line>0||ge(!1,\"line in locationOffset is 1-indexed and must be positive.\"),this.locationOffset.column>0||ge(!1,\"column in locationOffset is 1-indexed and must be positive.\")}get[Symbol.toStringTag](){return\"Source\"}}function HA(e){return kn(e,Ww)}function qo(e,t){return new Qw(e,t).parseDocument()}function GA(e,t){const n=new Qw(e,t);n.expectToken(B.SOF);const r=n.parseValueLiteral(!1);return n.expectToken(B.EOF),r}class Qw{constructor(t,n={}){const r=HA(t)?t:new Ww(t);this._lexer=new NA(r),this._options=n,this._tokenCounter=0}parseName(){const t=this.expectToken(B.NAME);return this.node(t,{kind:L.NAME,value:t.value})}parseDocument(){return this.node(this._lexer.token,{kind:L.DOCUMENT,definitions:this.many(B.SOF,this.parseDefinition,B.EOF)})}parseDefinition(){if(this.peek(B.BRACE_L))return this.parseOperationDefinition();const t=this.peekDescription(),n=t?this._lexer.lookahead():this._lexer.token;if(n.kind===B.NAME){switch(n.value){case\"schema\":return this.parseSchemaDefinition();case\"scalar\":return this.parseScalarTypeDefinition();case\"type\":return this.parseObjectTypeDefinition();case\"interface\":return this.parseInterfaceTypeDefinition();case\"union\":return this.parseUnionTypeDefinition();case\"enum\":return this.parseEnumTypeDefinition();case\"input\":return this.parseInputObjectTypeDefinition();case\"directive\":return this.parseDirectiveDefinition()}if(t)throw Xe(this._lexer.source,this._lexer.token.start,\"Unexpected description, descriptions are supported only on type definitions.\");switch(n.value){case\"query\":case\"mutation\":case\"subscription\":return this.parseOperationDefinition();case\"fragment\":return this.parseFragmentDefinition();case\"extend\":return this.parseTypeSystemExtension()}}throw this.unexpected(n)}parseOperationDefinition(){const t=this._lexer.token;if(this.peek(B.BRACE_L))return this.node(t,{kind:L.OPERATION_DEFINITION,operation:Xt.QUERY,name:void 0,variableDefinitions:[],directives:[],selectionSet:this.parseSelectionSet()});const n=this.parseOperationType();let r;return this.peek(B.NAME)&&(r=this.parseName()),this.node(t,{kind:L.OPERATION_DEFINITION,operation:n,name:r,variableDefinitions:this.parseVariableDefinitions(),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseOperationType(){const t=this.expectToken(B.NAME);switch(t.value){case\"query\":return Xt.QUERY;case\"mutation\":return Xt.MUTATION;case\"subscription\":return Xt.SUBSCRIPTION}throw this.unexpected(t)}parseVariableDefinitions(){return this.optionalMany(B.PAREN_L,this.parseVariableDefinition,B.PAREN_R)}parseVariableDefinition(){return this.node(this._lexer.token,{kind:L.VARIABLE_DEFINITION,variable:this.parseVariable(),type:(this.expectToken(B.COLON),this.parseTypeReference()),defaultValue:this.expectOptionalToken(B.EQUALS)?this.parseConstValueLiteral():void 0,directives:this.parseConstDirectives()})}parseVariable(){const t=this._lexer.token;return this.expectToken(B.DOLLAR),this.node(t,{kind:L.VARIABLE,name:this.parseName()})}parseSelectionSet(){return this.node(this._lexer.token,{kind:L.SELECTION_SET,selections:this.many(B.BRACE_L,this.parseSelection,B.BRACE_R)})}parseSelection(){return this.peek(B.SPREAD)?this.parseFragment():this.parseField()}parseField(){const t=this._lexer.token,n=this.parseName();let r,o;return this.expectOptionalToken(B.COLON)?(r=n,o=this.parseName()):o=n,this.node(t,{kind:L.FIELD,alias:r,name:o,arguments:this.parseArguments(!1),directives:this.parseDirectives(!1),selectionSet:this.peek(B.BRACE_L)?this.parseSelectionSet():void 0})}parseArguments(t){const n=t?this.parseConstArgument:this.parseArgument;return this.optionalMany(B.PAREN_L,n,B.PAREN_R)}parseArgument(t=!1){const n=this._lexer.token,r=this.parseName();return this.expectToken(B.COLON),this.node(n,{kind:L.ARGUMENT,name:r,value:this.parseValueLiteral(t)})}parseConstArgument(){return this.parseArgument(!0)}parseFragment(){const t=this._lexer.token;this.expectToken(B.SPREAD);const n=this.expectOptionalKeyword(\"on\");return!n&&this.peek(B.NAME)?this.node(t,{kind:L.FRAGMENT_SPREAD,name:this.parseFragmentName(),directives:this.parseDirectives(!1)}):this.node(t,{kind:L.INLINE_FRAGMENT,typeCondition:n?this.parseNamedType():void 0,directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentDefinition(){const t=this._lexer.token;return this.expectKeyword(\"fragment\"),this._options.allowLegacyFragmentVariables===!0?this.node(t,{kind:L.FRAGMENT_DEFINITION,name:this.parseFragmentName(),variableDefinitions:this.parseVariableDefinitions(),typeCondition:(this.expectKeyword(\"on\"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()}):this.node(t,{kind:L.FRAGMENT_DEFINITION,name:this.parseFragmentName(),typeCondition:(this.expectKeyword(\"on\"),this.parseNamedType()),directives:this.parseDirectives(!1),selectionSet:this.parseSelectionSet()})}parseFragmentName(){if(this._lexer.token.value===\"on\")throw this.unexpected();return this.parseName()}parseValueLiteral(t){const n=this._lexer.token;switch(n.kind){case B.BRACKET_L:return this.parseList(t);case B.BRACE_L:return this.parseObject(t);case B.INT:return this.advanceLexer(),this.node(n,{kind:L.INT,value:n.value});case B.FLOAT:return this.advanceLexer(),this.node(n,{kind:L.FLOAT,value:n.value});case B.STRING:case B.BLOCK_STRING:return this.parseStringLiteral();case B.NAME:switch(this.advanceLexer(),n.value){case\"true\":return this.node(n,{kind:L.BOOLEAN,value:!0});case\"false\":return this.node(n,{kind:L.BOOLEAN,value:!1});case\"null\":return this.node(n,{kind:L.NULL});default:return this.node(n,{kind:L.ENUM,value:n.value})}case B.DOLLAR:if(t)if(this.expectToken(B.DOLLAR),this._lexer.token.kind===B.NAME){const r=this._lexer.token.value;throw Xe(this._lexer.source,n.start,`Unexpected variable \"$${r}\" in constant value.`)}else throw this.unexpected(n);return this.parseVariable();default:throw this.unexpected()}}parseConstValueLiteral(){return this.parseValueLiteral(!0)}parseStringLiteral(){const t=this._lexer.token;return this.advanceLexer(),this.node(t,{kind:L.STRING,value:t.value,block:t.kind===B.BLOCK_STRING})}parseList(t){const n=()=>this.parseValueLiteral(t);return this.node(this._lexer.token,{kind:L.LIST,values:this.any(B.BRACKET_L,n,B.BRACKET_R)})}parseObject(t){const n=()=>this.parseObjectField(t);return this.node(this._lexer.token,{kind:L.OBJECT,fields:this.any(B.BRACE_L,n,B.BRACE_R)})}parseObjectField(t){const n=this._lexer.token,r=this.parseName();return this.expectToken(B.COLON),this.node(n,{kind:L.OBJECT_FIELD,name:r,value:this.parseValueLiteral(t)})}parseDirectives(t){const n=[];for(;this.peek(B.AT);)n.push(this.parseDirective(t));return n}parseConstDirectives(){return this.parseDirectives(!0)}parseDirective(t){const n=this._lexer.token;return this.expectToken(B.AT),this.node(n,{kind:L.DIRECTIVE,name:this.parseName(),arguments:this.parseArguments(t)})}parseTypeReference(){const t=this._lexer.token;let n;if(this.expectOptionalToken(B.BRACKET_L)){const r=this.parseTypeReference();this.expectToken(B.BRACKET_R),n=this.node(t,{kind:L.LIST_TYPE,type:r})}else n=this.parseNamedType();return this.expectOptionalToken(B.BANG)?this.node(t,{kind:L.NON_NULL_TYPE,type:n}):n}parseNamedType(){return this.node(this._lexer.token,{kind:L.NAMED_TYPE,name:this.parseName()})}peekDescription(){return this.peek(B.STRING)||this.peek(B.BLOCK_STRING)}parseDescription(){if(this.peekDescription())return this.parseStringLiteral()}parseSchemaDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"schema\");const r=this.parseConstDirectives(),o=this.many(B.BRACE_L,this.parseOperationTypeDefinition,B.BRACE_R);return this.node(t,{kind:L.SCHEMA_DEFINITION,description:n,directives:r,operationTypes:o})}parseOperationTypeDefinition(){const t=this._lexer.token,n=this.parseOperationType();this.expectToken(B.COLON);const r=this.parseNamedType();return this.node(t,{kind:L.OPERATION_TYPE_DEFINITION,operation:n,type:r})}parseScalarTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"scalar\");const r=this.parseName(),o=this.parseConstDirectives();return this.node(t,{kind:L.SCALAR_TYPE_DEFINITION,description:n,name:r,directives:o})}parseObjectTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"type\");const r=this.parseName(),o=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:L.OBJECT_TYPE_DEFINITION,description:n,name:r,interfaces:o,directives:i,fields:s})}parseImplementsInterfaces(){return this.expectOptionalKeyword(\"implements\")?this.delimitedMany(B.AMP,this.parseNamedType):[]}parseFieldsDefinition(){return this.optionalMany(B.BRACE_L,this.parseFieldDefinition,B.BRACE_R)}parseFieldDefinition(){const t=this._lexer.token,n=this.parseDescription(),r=this.parseName(),o=this.parseArgumentDefs();this.expectToken(B.COLON);const i=this.parseTypeReference(),s=this.parseConstDirectives();return this.node(t,{kind:L.FIELD_DEFINITION,description:n,name:r,arguments:o,type:i,directives:s})}parseArgumentDefs(){return this.optionalMany(B.PAREN_L,this.parseInputValueDef,B.PAREN_R)}parseInputValueDef(){const t=this._lexer.token,n=this.parseDescription(),r=this.parseName();this.expectToken(B.COLON);const o=this.parseTypeReference();let i;this.expectOptionalToken(B.EQUALS)&&(i=this.parseConstValueLiteral());const s=this.parseConstDirectives();return this.node(t,{kind:L.INPUT_VALUE_DEFINITION,description:n,name:r,type:o,defaultValue:i,directives:s})}parseInterfaceTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"interface\");const r=this.parseName(),o=this.parseImplementsInterfaces(),i=this.parseConstDirectives(),s=this.parseFieldsDefinition();return this.node(t,{kind:L.INTERFACE_TYPE_DEFINITION,description:n,name:r,interfaces:o,directives:i,fields:s})}parseUnionTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"union\");const r=this.parseName(),o=this.parseConstDirectives(),i=this.parseUnionMemberTypes();return this.node(t,{kind:L.UNION_TYPE_DEFINITION,description:n,name:r,directives:o,types:i})}parseUnionMemberTypes(){return this.expectOptionalToken(B.EQUALS)?this.delimitedMany(B.PIPE,this.parseNamedType):[]}parseEnumTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"enum\");const r=this.parseName(),o=this.parseConstDirectives(),i=this.parseEnumValuesDefinition();return this.node(t,{kind:L.ENUM_TYPE_DEFINITION,description:n,name:r,directives:o,values:i})}parseEnumValuesDefinition(){return this.optionalMany(B.BRACE_L,this.parseEnumValueDefinition,B.BRACE_R)}parseEnumValueDefinition(){const t=this._lexer.token,n=this.parseDescription(),r=this.parseEnumValueName(),o=this.parseConstDirectives();return this.node(t,{kind:L.ENUM_VALUE_DEFINITION,description:n,name:r,directives:o})}parseEnumValueName(){if(this._lexer.token.value===\"true\"||this._lexer.token.value===\"false\"||this._lexer.token.value===\"null\")throw Xe(this._lexer.source,this._lexer.token.start,`${wl(this._lexer.token)} is reserved and cannot be used for an enum value.`);return this.parseName()}parseInputObjectTypeDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"input\");const r=this.parseName(),o=this.parseConstDirectives(),i=this.parseInputFieldsDefinition();return this.node(t,{kind:L.INPUT_OBJECT_TYPE_DEFINITION,description:n,name:r,directives:o,fields:i})}parseInputFieldsDefinition(){return this.optionalMany(B.BRACE_L,this.parseInputValueDef,B.BRACE_R)}parseTypeSystemExtension(){const t=this._lexer.lookahead();if(t.kind===B.NAME)switch(t.value){case\"schema\":return this.parseSchemaExtension();case\"scalar\":return this.parseScalarTypeExtension();case\"type\":return this.parseObjectTypeExtension();case\"interface\":return this.parseInterfaceTypeExtension();case\"union\":return this.parseUnionTypeExtension();case\"enum\":return this.parseEnumTypeExtension();case\"input\":return this.parseInputObjectTypeExtension()}throw this.unexpected(t)}parseSchemaExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"schema\");const n=this.parseConstDirectives(),r=this.optionalMany(B.BRACE_L,this.parseOperationTypeDefinition,B.BRACE_R);if(n.length===0&&r.length===0)throw this.unexpected();return this.node(t,{kind:L.SCHEMA_EXTENSION,directives:n,operationTypes:r})}parseScalarTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"scalar\");const n=this.parseName(),r=this.parseConstDirectives();if(r.length===0)throw this.unexpected();return this.node(t,{kind:L.SCALAR_TYPE_EXTENSION,name:n,directives:r})}parseObjectTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"type\");const n=this.parseName(),r=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),i=this.parseFieldsDefinition();if(r.length===0&&o.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:L.OBJECT_TYPE_EXTENSION,name:n,interfaces:r,directives:o,fields:i})}parseInterfaceTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"interface\");const n=this.parseName(),r=this.parseImplementsInterfaces(),o=this.parseConstDirectives(),i=this.parseFieldsDefinition();if(r.length===0&&o.length===0&&i.length===0)throw this.unexpected();return this.node(t,{kind:L.INTERFACE_TYPE_EXTENSION,name:n,interfaces:r,directives:o,fields:i})}parseUnionTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"union\");const n=this.parseName(),r=this.parseConstDirectives(),o=this.parseUnionMemberTypes();if(r.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:L.UNION_TYPE_EXTENSION,name:n,directives:r,types:o})}parseEnumTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"enum\");const n=this.parseName(),r=this.parseConstDirectives(),o=this.parseEnumValuesDefinition();if(r.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:L.ENUM_TYPE_EXTENSION,name:n,directives:r,values:o})}parseInputObjectTypeExtension(){const t=this._lexer.token;this.expectKeyword(\"extend\"),this.expectKeyword(\"input\");const n=this.parseName(),r=this.parseConstDirectives(),o=this.parseInputFieldsDefinition();if(r.length===0&&o.length===0)throw this.unexpected();return this.node(t,{kind:L.INPUT_OBJECT_TYPE_EXTENSION,name:n,directives:r,fields:o})}parseDirectiveDefinition(){const t=this._lexer.token,n=this.parseDescription();this.expectKeyword(\"directive\"),this.expectToken(B.AT);const r=this.parseName(),o=this.parseArgumentDefs(),i=this.expectOptionalKeyword(\"repeatable\");this.expectKeyword(\"on\");const s=this.parseDirectiveLocations();return this.node(t,{kind:L.DIRECTIVE_DEFINITION,description:n,name:r,arguments:o,repeatable:i,locations:s})}parseDirectiveLocations(){return this.delimitedMany(B.PIPE,this.parseDirectiveLocation)}parseDirectiveLocation(){const t=this._lexer.token,n=this.parseName();if(Object.prototype.hasOwnProperty.call(ne,n.value))return n;throw this.unexpected(t)}node(t,n){return this._options.noLocation!==!0&&(n.loc=new _A(t,this._lexer.lastToken,this._lexer.source)),n}peek(t){return this._lexer.token.kind===t}expectToken(t){const n=this._lexer.token;if(n.kind===t)return this.advanceLexer(),n;throw Xe(this._lexer.source,n.start,`Expected ${Yw(t)}, found ${wl(n)}.`)}expectOptionalToken(t){return this._lexer.token.kind===t?(this.advanceLexer(),!0):!1}expectKeyword(t){const n=this._lexer.token;if(n.kind===B.NAME&&n.value===t)this.advanceLexer();else throw Xe(this._lexer.source,n.start,`Expected \"${t}\", found ${wl(n)}.`)}expectOptionalKeyword(t){const n=this._lexer.token;return n.kind===B.NAME&&n.value===t?(this.advanceLexer(),!0):!1}unexpected(t){const n=t??this._lexer.token;return Xe(this._lexer.source,n.start,`Unexpected ${wl(n)}.`)}any(t,n,r){this.expectToken(t);const o=[];for(;!this.expectOptionalToken(r);)o.push(n.call(this));return o}optionalMany(t,n,r){if(this.expectOptionalToken(t)){const o=[];do o.push(n.call(this));while(!this.expectOptionalToken(r));return o}return[]}many(t,n,r){this.expectToken(t);const o=[];do o.push(n.call(this));while(!this.expectOptionalToken(r));return o}delimitedMany(t,n){this.expectOptionalToken(t);const r=[];do r.push(n.call(this));while(this.expectOptionalToken(t));return r}advanceLexer(){const{maxTokens:t}=this._options,n=this._lexer.advance();if(t!==void 0&&n.kind!==B.EOF&&(++this._tokenCounter,this._tokenCounter>t))throw Xe(this._lexer.source,n.start,`Document contains more that ${t} tokens. Parsing aborted.`)}}function wl(e){const t=e.value;return Yw(e.kind)+(t!=null?` \"${t}\"`:\"\")}function Yw(e){return AA(e)?`\"${e}\"`:e}const WA=5;function QA(e,t){const[n,r]=t?[e,t]:[void 0,e];let o=\" Did you mean \";n&&(o+=n+\" \");const i=r.map(l=>`\"${l}\"`);switch(i.length){case 0:return\"\";case 1:return o+i[0]+\"?\";case 2:return o+i[0]+\" or \"+i[1]+\"?\"}const s=i.slice(0,WA),a=s.pop();return o+s.join(\", \")+\", or \"+a+\"?\"}function Pg(e){return e}function Zw(e,t){const n=Object.create(null);for(const r of e)n[t(r)]=r;return n}function vo(e,t,n){const r=Object.create(null);for(const o of e)r[t(o)]=n(o);return r}function Bu(e,t){const n=Object.create(null);for(const r of Object.keys(e))n[r]=t(e[r],r);return n}function YA(e,t){let n=0,r=0;for(;n<e.length&&r<t.length;){let o=e.charCodeAt(n),i=t.charCodeAt(r);if(_l(o)&&_l(i)){let s=0;do++n,s=s*10+o-Hp,o=e.charCodeAt(n);while(_l(o)&&s>0);let a=0;do++r,a=a*10+i-Hp,i=t.charCodeAt(r);while(_l(i)&&a>0);if(s<a)return-1;if(s>a)return 1}else{if(o<i)return-1;if(o>i)return 1;++n,++r}}return e.length-t.length}const Hp=48,ZA=57;function _l(e){return!isNaN(e)&&Hp<=e&&e<=ZA}function XA(e,t){const n=Object.create(null),r=new JA(e),o=Math.floor(e.length*.4)+1;for(const i of t){const s=r.measure(i,o);s!==void 0&&(n[i]=s)}return Object.keys(n).sort((i,s)=>{const a=n[i]-n[s];return a!==0?a:YA(i,s)})}class JA{constructor(t){this._input=t,this._inputLowerCase=t.toLowerCase(),this._inputArray=$g(this._inputLowerCase),this._rows=[new Array(t.length+1).fill(0),new Array(t.length+1).fill(0),new Array(t.length+1).fill(0)]}measure(t,n){if(this._input===t)return 0;const r=t.toLowerCase();if(this._inputLowerCase===r)return 1;let o=$g(r),i=this._inputArray;if(o.length<i.length){const u=o;o=i,i=u}const s=o.length,a=i.length;if(s-a>n)return;const l=this._rows;for(let u=0;u<=a;u++)l[0][u]=u;for(let u=1;u<=s;u++){const d=l[(u-1)%3],p=l[u%3];let f=p[0]=u;for(let m=1;m<=a;m++){const v=o[u-1]===i[m-1]?0:1;let b=Math.min(d[m]+1,p[m-1]+1,d[m-1]+v);if(u>1&&m>1&&o[u-1]===i[m-2]&&o[u-2]===i[m-1]){const y=l[(u-2)%3][m-2];b=Math.min(b,y+1)}b<f&&(f=b),p[m]=b}if(f>n)return}const c=l[s%3][a];return c<=n?c:void 0}}function $g(e){const t=e.length,n=new Array(t);for(let r=0;r<t;++r)n[r]=e.charCodeAt(r);return n}function an(e){if(e==null)return Object.create(null);if(Object.getPrototypeOf(e)===null)return e;const t=Object.create(null);for(const[n,r]of Object.entries(e))t[n]=r;return t}function KA(e){return`\"${e.replace(eD,tD)}\"`}const eD=/[\\x00-\\x1f\\x22\\x5c\\x7f-\\x9f]/g;function tD(e){return nD[e.charCodeAt(0)]}const nD=[\"\\\\u0000\",\"\\\\u0001\",\"\\\\u0002\",\"\\\\u0003\",\"\\\\u0004\",\"\\\\u0005\",\"\\\\u0006\",\"\\\\u0007\",\"\\\\b\",\"\\\\t\",\"\\\\n\",\"\\\\u000B\",\"\\\\f\",\"\\\\r\",\"\\\\u000E\",\"\\\\u000F\",\"\\\\u0010\",\"\\\\u0011\",\"\\\\u0012\",\"\\\\u0013\",\"\\\\u0014\",\"\\\\u0015\",\"\\\\u0016\",\"\\\\u0017\",\"\\\\u0018\",\"\\\\u0019\",\"\\\\u001A\",\"\\\\u001B\",\"\\\\u001C\",\"\\\\u001D\",\"\\\\u001E\",\"\\\\u001F\",\"\",\"\",'\\\\\"',\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\\\\\\\\\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\",\"\\\\u007F\",\"\\\\u0080\",\"\\\\u0081\",\"\\\\u0082\",\"\\\\u0083\",\"\\\\u0084\",\"\\\\u0085\",\"\\\\u0086\",\"\\\\u0087\",\"\\\\u0088\",\"\\\\u0089\",\"\\\\u008A\",\"\\\\u008B\",\"\\\\u008C\",\"\\\\u008D\",\"\\\\u008E\",\"\\\\u008F\",\"\\\\u0090\",\"\\\\u0091\",\"\\\\u0092\",\"\\\\u0093\",\"\\\\u0094\",\"\\\\u0095\",\"\\\\u0096\",\"\\\\u0097\",\"\\\\u0098\",\"\\\\u0099\",\"\\\\u009A\",\"\\\\u009B\",\"\\\\u009C\",\"\\\\u009D\",\"\\\\u009E\",\"\\\\u009F\"],mi=Object.freeze({});function Tn(e,t,n=qw){const r=new Map;for(const y of Object.values(L))r.set(y,zc(t,y));let o,i=Array.isArray(e),s=[e],a=-1,l=[],c=e,u,d;const p=[],f=[];do{a++;const y=a===s.length,g=y&&l.length!==0;if(y){if(u=f.length===0?void 0:p[p.length-1],c=d,d=f.pop(),g)if(i){c=c.slice();let x=0;for(const[w,C]of l){const T=w-x;C===null?(c.splice(T,1),x++):c[T]=C}}else{c=Object.defineProperties({},Object.getOwnPropertyDescriptors(c));for(const[x,w]of l)c[x]=w}a=o.index,s=o.keys,l=o.edits,i=o.inArray,o=o.prev}else if(d){if(u=i?a:s[a],c=d[u],c==null)continue;p.push(u)}let E;if(!Array.isArray(c)){var m,v;Bp(c)||ge(!1,`Invalid AST Node: ${J(c)}.`);const x=y?(m=r.get(c.kind))===null||m===void 0?void 0:m.leave:(v=r.get(c.kind))===null||v===void 0?void 0:v.enter;if(E=x==null?void 0:x.call(t,c,u,d,p,f),E===mi)break;if(E===!1){if(!y){p.pop();continue}}else if(E!==void 0&&(l.push([u,E]),!y))if(Bp(E))c=E;else{p.pop();continue}}if(E===void 0&&g&&l.push([u,c]),y)p.pop();else{var b;o={inArray:i,index:a,keys:s,edits:l,prev:o},i=Array.isArray(c),s=i?c:(b=n[c.kind])!==null&&b!==void 0?b:[],a=-1,l=[],d&&f.push(d),d=c}}while(o!==void 0);return l.length!==0?l[l.length-1][1]:e}function i_e(e){const t=new Array(e.length).fill(null),n=Object.create(null);for(const r of Object.values(L)){let o=!1;const i=new Array(e.length).fill(void 0),s=new Array(e.length).fill(void 0);for(let l=0;l<e.length;++l){const{enter:c,leave:u}=zc(e[l],r);o||(o=c!=null||u!=null),i[l]=c,s[l]=u}if(!o)continue;const a={enter(...l){const c=l[0];for(let d=0;d<e.length;d++)if(t[d]===null){var u;const p=(u=i[d])===null||u===void 0?void 0:u.apply(e[d],l);if(p===!1)t[d]=c;else if(p===mi)t[d]=mi;else if(p!==void 0)return p}},leave(...l){const c=l[0];for(let d=0;d<e.length;d++)if(t[d]===null){var u;const p=(u=s[d])===null||u===void 0?void 0:u.apply(e[d],l);if(p===mi)t[d]=mi;else if(p!==void 0&&p!==!1)return p}else t[d]===c&&(t[d]=null)}};n[r]=a}return n}function zc(e,t){const n=e[t];return typeof n==\"object\"?n:typeof n==\"function\"?{enter:n,leave:void 0}:{enter:e.enter,leave:e.leave}}function Ut(e){return Tn(e,oD)}const rD=80,oD={Name:{leave:e=>e.value},Variable:{leave:e=>\"$\"+e.name},Document:{leave:e=>K(e.definitions,`\n\n`)},OperationDefinition:{leave(e){const t=le(\"(\",K(e.variableDefinitions,\", \"),\")\"),n=K([e.operation,K([e.name,t]),K(e.directives,\" \")],\" \");return(n===\"query\"?\"\":n+\" \")+e.selectionSet}},VariableDefinition:{leave:({variable:e,type:t,defaultValue:n,directives:r})=>e+\": \"+t+le(\" = \",n)+le(\" \",K(r,\" \"))},SelectionSet:{leave:({selections:e})=>cn(e)},Field:{leave({alias:e,name:t,arguments:n,directives:r,selectionSet:o}){const i=le(\"\",e,\": \")+t;let s=i+le(\"(\",K(n,\", \"),\")\");return s.length>rD&&(s=i+le(`(\n`,ac(K(n,`\n`)),`\n)`)),K([s,K(r,\" \"),o],\" \")}},Argument:{leave:({name:e,value:t})=>e+\": \"+t},FragmentSpread:{leave:({name:e,directives:t})=>\"...\"+e+le(\" \",K(t,\" \"))},InlineFragment:{leave:({typeCondition:e,directives:t,selectionSet:n})=>K([\"...\",le(\"on \",e),K(t,\" \"),n],\" \")},FragmentDefinition:{leave:({name:e,typeCondition:t,variableDefinitions:n,directives:r,selectionSet:o})=>`fragment ${e}${le(\"(\",K(n,\", \"),\")\")} on ${t} ${le(\"\",K(r,\" \"),\" \")}`+o},IntValue:{leave:({value:e})=>e},FloatValue:{leave:({value:e})=>e},StringValue:{leave:({value:e,block:t})=>t?kA(e):KA(e)},BooleanValue:{leave:({value:e})=>e?\"true\":\"false\"},NullValue:{leave:()=>\"null\"},EnumValue:{leave:({value:e})=>e},ListValue:{leave:({values:e})=>\"[\"+K(e,\", \")+\"]\"},ObjectValue:{leave:({fields:e})=>\"{\"+K(e,\", \")+\"}\"},ObjectField:{leave:({name:e,value:t})=>e+\": \"+t},Directive:{leave:({name:e,arguments:t})=>\"@\"+e+le(\"(\",K(t,\", \"),\")\")},NamedType:{leave:({name:e})=>e},ListType:{leave:({type:e})=>\"[\"+e+\"]\"},NonNullType:{leave:({type:e})=>e+\"!\"},SchemaDefinition:{leave:({description:e,directives:t,operationTypes:n})=>le(\"\",e,`\n`)+K([\"schema\",K(t,\" \"),cn(n)],\" \")},OperationTypeDefinition:{leave:({operation:e,type:t})=>e+\": \"+t},ScalarTypeDefinition:{leave:({description:e,name:t,directives:n})=>le(\"\",e,`\n`)+K([\"scalar\",t,K(n,\" \")],\" \")},ObjectTypeDefinition:{leave:({description:e,name:t,interfaces:n,directives:r,fields:o})=>le(\"\",e,`\n`)+K([\"type\",t,le(\"implements \",K(n,\" & \")),K(r,\" \"),cn(o)],\" \")},FieldDefinition:{leave:({description:e,name:t,arguments:n,type:r,directives:o})=>le(\"\",e,`\n`)+t+(Fg(n)?le(`(\n`,ac(K(n,`\n`)),`\n)`):le(\"(\",K(n,\", \"),\")\"))+\": \"+r+le(\" \",K(o,\" \"))},InputValueDefinition:{leave:({description:e,name:t,type:n,defaultValue:r,directives:o})=>le(\"\",e,`\n`)+K([t+\": \"+n,le(\"= \",r),K(o,\" \")],\" \")},InterfaceTypeDefinition:{leave:({description:e,name:t,interfaces:n,directives:r,fields:o})=>le(\"\",e,`\n`)+K([\"interface\",t,le(\"implements \",K(n,\" & \")),K(r,\" \"),cn(o)],\" \")},UnionTypeDefinition:{leave:({description:e,name:t,directives:n,types:r})=>le(\"\",e,`\n`)+K([\"union\",t,K(n,\" \"),le(\"= \",K(r,\" | \"))],\" \")},EnumTypeDefinition:{leave:({description:e,name:t,directives:n,values:r})=>le(\"\",e,`\n`)+K([\"enum\",t,K(n,\" \"),cn(r)],\" \")},EnumValueDefinition:{leave:({description:e,name:t,directives:n})=>le(\"\",e,`\n`)+K([t,K(n,\" \")],\" \")},InputObjectTypeDefinition:{leave:({description:e,name:t,directives:n,fields:r})=>le(\"\",e,`\n`)+K([\"input\",t,K(n,\" \"),cn(r)],\" \")},DirectiveDefinition:{leave:({description:e,name:t,arguments:n,repeatable:r,locations:o})=>le(\"\",e,`\n`)+\"directive @\"+t+(Fg(n)?le(`(\n`,ac(K(n,`\n`)),`\n)`):le(\"(\",K(n,\", \"),\")\"))+(r?\" repeatable\":\"\")+\" on \"+K(o,\" | \")},SchemaExtension:{leave:({directives:e,operationTypes:t})=>K([\"extend schema\",K(e,\" \"),cn(t)],\" \")},ScalarTypeExtension:{leave:({name:e,directives:t})=>K([\"extend scalar\",e,K(t,\" \")],\" \")},ObjectTypeExtension:{leave:({name:e,interfaces:t,directives:n,fields:r})=>K([\"extend type\",e,le(\"implements \",K(t,\" & \")),K(n,\" \"),cn(r)],\" \")},InterfaceTypeExtension:{leave:({name:e,interfaces:t,directives:n,fields:r})=>K([\"extend interface\",e,le(\"implements \",K(t,\" & \")),K(n,\" \"),cn(r)],\" \")},UnionTypeExtension:{leave:({name:e,directives:t,types:n})=>K([\"extend union\",e,K(t,\" \"),le(\"= \",K(n,\" | \"))],\" \")},EnumTypeExtension:{leave:({name:e,directives:t,values:n})=>K([\"extend enum\",e,K(t,\" \"),cn(n)],\" \")},InputObjectTypeExtension:{leave:({name:e,directives:t,fields:n})=>K([\"extend input\",e,K(t,\" \"),cn(n)],\" \")}};function K(e,t=\"\"){var n;return(n=e==null?void 0:e.filter(r=>r).join(t))!==null&&n!==void 0?n:\"\"}function cn(e){return le(`{\n`,ac(K(e,`\n`)),`\n}`)}function le(e,t,n=\"\"){return t!=null&&t!==\"\"?e+t+n:\"\"}function ac(e){return le(\"  \",e.replace(/\\n/g,`\n  `))}function Fg(e){var t;return(t=e==null?void 0:e.some(n=>n.includes(`\n`)))!==null&&t!==void 0?t:!1}function Gp(e,t){switch(e.kind){case L.NULL:return null;case L.INT:return parseInt(e.value,10);case L.FLOAT:return parseFloat(e.value);case L.STRING:case L.ENUM:case L.BOOLEAN:return e.value;case L.LIST:return e.values.map(n=>Gp(n,t));case L.OBJECT:return vo(e.fields,n=>n.name.value,n=>Gp(n.value,t));case L.VARIABLE:return t==null?void 0:t[e.name.value]}}function Nn(e){if(e!=null||ge(!1,\"Must provide name.\"),typeof e==\"string\"||ge(!1,\"Expected name to be a string.\"),e.length===0)throw new ve(\"Expected name to be a non-empty string.\");for(let t=1;t<e.length;++t)if(!Bw(e.charCodeAt(t)))throw new ve(`Names must only contain [_a-zA-Z0-9] but \"${e}\" does not.`);if(!Wm(e.charCodeAt(0)))throw new ve(`Names must start with [_a-zA-Z] but \"${e}\" does not.`);return e}function iD(e){if(e===\"true\"||e===\"false\"||e===\"null\")throw new ve(`Enum values cannot be named: ${e}`);return Nn(e)}function Qm(e){return Zr(e)||Ae(e)||De(e)||nn(e)||Bt(e)||vt(e)||wt(e)||qe(e)}function Zr(e){return kn(e,Uo)}function Ae(e){return kn(e,zn)}function sD(e){if(!Ae(e))throw new Error(`Expected ${J(e)} to be a GraphQL Object type.`);return e}function De(e){return kn(e,ki)}function aD(e){if(!De(e))throw new Error(`Expected ${J(e)} to be a GraphQL Interface type.`);return e}function nn(e){return kn(e,s_)}function Bt(e){return kn(e,Ji)}function vt(e){return kn(e,Jm)}function wt(e){return kn(e,kt)}function qe(e){return kn(e,ce)}function Yt(e){return Zr(e)||Bt(e)||vt(e)||Ym(e)&&Yt(e.ofType)}function xo(e){return Zr(e)||Ae(e)||De(e)||nn(e)||Bt(e)||Ym(e)&&xo(e.ofType)}function zu(e){return Zr(e)||Bt(e)}function Jt(e){return Ae(e)||De(e)||nn(e)}function jr(e){return De(e)||nn(e)}function lD(e){if(!jr(e))throw new Error(`Expected ${J(e)} to be a GraphQL abstract type.`);return e}class kt{constructor(t){Qm(t)||ge(!1,`Expected ${J(t)} to be a GraphQL type.`),this.ofType=t}get[Symbol.toStringTag](){return\"GraphQLList\"}toString(){return\"[\"+String(this.ofType)+\"]\"}toJSON(){return this.toString()}}class ce{constructor(t){Xw(t)||ge(!1,`Expected ${J(t)} to be a GraphQL nullable type.`),this.ofType=t}get[Symbol.toStringTag](){return\"GraphQLNonNull\"}toString(){return String(this.ofType)+\"!\"}toJSON(){return this.toString()}}function Ym(e){return wt(e)||qe(e)}function Xw(e){return Qm(e)&&!qe(e)}function cD(e){if(!Xw(e))throw new Error(`Expected ${J(e)} to be a GraphQL nullable type.`);return e}function Jw(e){if(e)return qe(e)?e.ofType:e}function Zm(e){return Zr(e)||Ae(e)||De(e)||nn(e)||Bt(e)||vt(e)}function Ft(e){if(e){let t=e;for(;Ym(t);)t=t.ofType;return t}}function Kw(e){return typeof e==\"function\"?e():e}function e_(e){return typeof e==\"function\"?e():e}class Uo{constructor(t){var n,r,o,i;const s=(n=t.parseValue)!==null&&n!==void 0?n:Pg;this.name=Nn(t.name),this.description=t.description,this.specifiedByURL=t.specifiedByURL,this.serialize=(r=t.serialize)!==null&&r!==void 0?r:Pg,this.parseValue=s,this.parseLiteral=(o=t.parseLiteral)!==null&&o!==void 0?o:(a,l)=>s(Gp(a,l)),this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(i=t.extensionASTNodes)!==null&&i!==void 0?i:[],t.specifiedByURL==null||typeof t.specifiedByURL==\"string\"||ge(!1,`${this.name} must provide \"specifiedByURL\" as a string, but got: ${J(t.specifiedByURL)}.`),t.serialize==null||typeof t.serialize==\"function\"||ge(!1,`${this.name} must provide \"serialize\" function. If this custom Scalar is also used as an input type, ensure \"parseValue\" and \"parseLiteral\" functions are also provided.`),t.parseLiteral&&(typeof t.parseValue==\"function\"&&typeof t.parseLiteral==\"function\"||ge(!1,`${this.name} must provide both \"parseValue\" and \"parseLiteral\" functions.`))}get[Symbol.toStringTag](){return\"GraphQLScalarType\"}toConfig(){return{name:this.name,description:this.description,specifiedByURL:this.specifiedByURL,serialize:this.serialize,parseValue:this.parseValue,parseLiteral:this.parseLiteral,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}class zn{constructor(t){var n;this.name=Nn(t.name),this.description=t.description,this.isTypeOf=t.isTypeOf,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=()=>n_(t),this._interfaces=()=>t_(t),t.isTypeOf==null||typeof t.isTypeOf==\"function\"||ge(!1,`${this.name} must provide \"isTypeOf\" as a function, but got: ${J(t.isTypeOf)}.`)}get[Symbol.toStringTag](){return\"GraphQLObjectType\"}getFields(){return typeof this._fields==\"function\"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces==\"function\"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:o_(this.getFields()),isTypeOf:this.isTypeOf,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function t_(e){var t;const n=Kw((t=e.interfaces)!==null&&t!==void 0?t:[]);return Array.isArray(n)||ge(!1,`${e.name} interfaces must be an Array or a function which returns an Array.`),n}function n_(e){const t=e_(e.fields);return Ti(t)||ge(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),Bu(t,(n,r)=>{var o;Ti(n)||ge(!1,`${e.name}.${r} field config must be an object.`),n.resolve==null||typeof n.resolve==\"function\"||ge(!1,`${e.name}.${r} field resolver must be a function if provided, but got: ${J(n.resolve)}.`);const i=(o=n.args)!==null&&o!==void 0?o:{};return Ti(i)||ge(!1,`${e.name}.${r} args must be an object with argument names as keys.`),{name:Nn(r),description:n.description,type:n.type,args:r_(i),resolve:n.resolve,subscribe:n.subscribe,deprecationReason:n.deprecationReason,extensions:an(n.extensions),astNode:n.astNode}})}function r_(e){return Object.entries(e).map(([t,n])=>({name:Nn(t),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:an(n.extensions),astNode:n.astNode}))}function Ti(e){return ar(e)&&!Array.isArray(e)}function o_(e){return Bu(e,t=>({description:t.description,type:t.type,args:i_(t.args),resolve:t.resolve,subscribe:t.subscribe,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function i_(e){return vo(e,t=>t.name,t=>({description:t.description,type:t.type,defaultValue:t.defaultValue,deprecationReason:t.deprecationReason,extensions:t.extensions,astNode:t.astNode}))}function Xm(e){return qe(e.type)&&e.defaultValue===void 0}class ki{constructor(t){var n;this.name=Nn(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=n_.bind(void 0,t),this._interfaces=t_.bind(void 0,t),t.resolveType==null||typeof t.resolveType==\"function\"||ge(!1,`${this.name} must provide \"resolveType\" as a function, but got: ${J(t.resolveType)}.`)}get[Symbol.toStringTag](){return\"GraphQLInterfaceType\"}getFields(){return typeof this._fields==\"function\"&&(this._fields=this._fields()),this._fields}getInterfaces(){return typeof this._interfaces==\"function\"&&(this._interfaces=this._interfaces()),this._interfaces}toConfig(){return{name:this.name,description:this.description,interfaces:this.getInterfaces(),fields:o_(this.getFields()),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}class s_{constructor(t){var n;this.name=Nn(t.name),this.description=t.description,this.resolveType=t.resolveType,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._types=uD.bind(void 0,t),t.resolveType==null||typeof t.resolveType==\"function\"||ge(!1,`${this.name} must provide \"resolveType\" as a function, but got: ${J(t.resolveType)}.`)}get[Symbol.toStringTag](){return\"GraphQLUnionType\"}getTypes(){return typeof this._types==\"function\"&&(this._types=this._types()),this._types}toConfig(){return{name:this.name,description:this.description,types:this.getTypes(),resolveType:this.resolveType,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function uD(e){const t=Kw(e.types);return Array.isArray(t)||ge(!1,`Must provide Array of types or a function which returns such an array for Union ${e.name}.`),t}class Ji{constructor(t){var n;this.name=Nn(t.name),this.description=t.description,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._values=fD(this.name,t.values),this._valueLookup=new Map(this._values.map(r=>[r.value,r])),this._nameLookup=Zw(this._values,r=>r.name)}get[Symbol.toStringTag](){return\"GraphQLEnumType\"}getValues(){return this._values}getValue(t){return this._nameLookup[t]}serialize(t){const n=this._valueLookup.get(t);if(n===void 0)throw new ve(`Enum \"${this.name}\" cannot represent value: ${J(t)}`);return n.name}parseValue(t){if(typeof t!=\"string\"){const r=J(t);throw new ve(`Enum \"${this.name}\" cannot represent non-string value: ${r}.`+Sl(this,r))}const n=this.getValue(t);if(n==null)throw new ve(`Value \"${t}\" does not exist in \"${this.name}\" enum.`+Sl(this,t));return n.value}parseLiteral(t,n){if(t.kind!==L.ENUM){const o=Ut(t);throw new ve(`Enum \"${this.name}\" cannot represent non-enum value: ${o}.`+Sl(this,o),{nodes:t})}const r=this.getValue(t.value);if(r==null){const o=Ut(t);throw new ve(`Value \"${o}\" does not exist in \"${this.name}\" enum.`+Sl(this,o),{nodes:t})}return r.value}toConfig(){const t=vo(this.getValues(),n=>n.name,n=>({description:n.description,value:n.value,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.astNode}));return{name:this.name,description:this.description,values:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function Sl(e,t){const n=e.getValues().map(o=>o.name),r=XA(t,n);return QA(\"the enum value\",r)}function fD(e,t){return Ti(t)||ge(!1,`${e} values must be an object with value names as keys.`),Object.entries(t).map(([n,r])=>(Ti(r)||ge(!1,`${e}.${n} must refer to an object with a \"value\" key representing an internal value but got: ${J(r)}.`),{name:iD(n),description:r.description,value:r.value!==void 0?r.value:n,deprecationReason:r.deprecationReason,extensions:an(r.extensions),astNode:r.astNode}))}class Jm{constructor(t){var n;this.name=Nn(t.name),this.description=t.description,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._fields=dD.bind(void 0,t)}get[Symbol.toStringTag](){return\"GraphQLInputObjectType\"}getFields(){return typeof this._fields==\"function\"&&(this._fields=this._fields()),this._fields}toConfig(){const t=Bu(this.getFields(),n=>({description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:n.extensions,astNode:n.astNode}));return{name:this.name,description:this.description,fields:t,extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes}}toString(){return this.name}toJSON(){return this.toString()}}function dD(e){const t=e_(e.fields);return Ti(t)||ge(!1,`${e.name} fields must be an object with field names as keys or a function which returns such an object.`),Bu(t,(n,r)=>(!(\"resolve\"in n)||ge(!1,`${e.name}.${r} field has a resolve property, but Input Types cannot define resolvers.`),{name:Nn(r),description:n.description,type:n.type,defaultValue:n.defaultValue,deprecationReason:n.deprecationReason,extensions:an(n.extensions),astNode:n.astNode}))}function pD(e){return qe(e.type)&&e.defaultValue===void 0}function Wp(e,t){return e===t?!0:qe(e)&&qe(t)||wt(e)&&wt(t)?Wp(e.ofType,t.ofType):!1}function lc(e,t,n){return t===n?!0:qe(n)?qe(t)?lc(e,t.ofType,n.ofType):!1:qe(t)?lc(e,t.ofType,n):wt(n)?wt(t)?lc(e,t.ofType,n.ofType):!1:wt(t)?!1:jr(n)&&(De(t)||Ae(t))&&e.isSubType(n,t)}function hD(e,t,n){return t===n?!0:jr(t)?jr(n)?e.getPossibleTypes(t).some(r=>e.isSubType(n,r)):e.isSubType(t,n):jr(n)?e.isSubType(n,t):!1}const nd=2147483647,rd=-2147483648,mD=new Uo({name:\"Int\",description:\"The `Int` scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.\",serialize(e){const t=ja(e);if(typeof t==\"boolean\")return t?1:0;let n=t;if(typeof t==\"string\"&&t!==\"\"&&(n=Number(t)),typeof n!=\"number\"||!Number.isInteger(n))throw new ve(`Int cannot represent non-integer value: ${J(t)}`);if(n>nd||n<rd)throw new ve(\"Int cannot represent non 32-bit signed integer value: \"+J(t));return n},parseValue(e){if(typeof e!=\"number\"||!Number.isInteger(e))throw new ve(`Int cannot represent non-integer value: ${J(e)}`);if(e>nd||e<rd)throw new ve(`Int cannot represent non 32-bit signed integer value: ${e}`);return e},parseLiteral(e){if(e.kind!==L.INT)throw new ve(`Int cannot represent non-integer value: ${Ut(e)}`,{nodes:e});const t=parseInt(e.value,10);if(t>nd||t<rd)throw new ve(`Int cannot represent non 32-bit signed integer value: ${e.value}`,{nodes:e});return t}}),a_=new Uo({name:\"Float\",description:\"The `Float` scalar type represents signed double-precision fractional values as specified by [IEEE 754](https://en.wikipedia.org/wiki/IEEE_floating_point).\",serialize(e){const t=ja(e);if(typeof t==\"boolean\")return t?1:0;let n=t;if(typeof t==\"string\"&&t!==\"\"&&(n=Number(t)),typeof n!=\"number\"||!Number.isFinite(n))throw new ve(`Float cannot represent non numeric value: ${J(t)}`);return n},parseValue(e){if(typeof e!=\"number\"||!Number.isFinite(e))throw new ve(`Float cannot represent non numeric value: ${J(e)}`);return e},parseLiteral(e){if(e.kind!==L.FLOAT&&e.kind!==L.INT)throw new ve(`Float cannot represent non numeric value: ${Ut(e)}`,e);return parseFloat(e.value)}}),Ue=new Uo({name:\"String\",description:\"The `String` scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.\",serialize(e){const t=ja(e);if(typeof t==\"string\")return t;if(typeof t==\"boolean\")return t?\"true\":\"false\";if(typeof t==\"number\"&&Number.isFinite(t))return t.toString();throw new ve(`String cannot represent value: ${J(e)}`)},parseValue(e){if(typeof e!=\"string\")throw new ve(`String cannot represent a non string value: ${J(e)}`);return e},parseLiteral(e){if(e.kind!==L.STRING)throw new ve(`String cannot represent a non string value: ${Ut(e)}`,{nodes:e});return e.value}}),ot=new Uo({name:\"Boolean\",description:\"The `Boolean` scalar type represents `true` or `false`.\",serialize(e){const t=ja(e);if(typeof t==\"boolean\")return t;if(Number.isFinite(t))return t!==0;throw new ve(`Boolean cannot represent a non boolean value: ${J(t)}`)},parseValue(e){if(typeof e!=\"boolean\")throw new ve(`Boolean cannot represent a non boolean value: ${J(e)}`);return e},parseLiteral(e){if(e.kind!==L.BOOLEAN)throw new ve(`Boolean cannot represent a non boolean value: ${Ut(e)}`,{nodes:e});return e.value}}),l_=new Uo({name:\"ID\",description:'The `ID` scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as `\"4\"`) or integer (such as `4`) input value will be accepted as an ID.',serialize(e){const t=ja(e);if(typeof t==\"string\")return t;if(Number.isInteger(t))return String(t);throw new ve(`ID cannot represent value: ${J(e)}`)},parseValue(e){if(typeof e==\"string\")return e;if(typeof e==\"number\"&&Number.isInteger(e))return e.toString();throw new ve(`ID cannot represent value: ${J(e)}`)},parseLiteral(e){if(e.kind!==L.STRING&&e.kind!==L.INT)throw new ve(\"ID cannot represent a non-string and non-integer value: \"+Ut(e),{nodes:e});return e.value}}),vD=Object.freeze([Ue,mD,a_,ot,l_]);function ja(e){if(ar(e)){if(typeof e.valueOf==\"function\"){const t=e.valueOf();if(!ar(t))return t}if(typeof e.toJSON==\"function\")return e.toJSON()}return e}function c_(e){return kn(e,Ki)}class Ki{constructor(t){var n,r;this.name=Nn(t.name),this.description=t.description,this.locations=t.locations,this.isRepeatable=(n=t.isRepeatable)!==null&&n!==void 0?n:!1,this.extensions=an(t.extensions),this.astNode=t.astNode,Array.isArray(t.locations)||ge(!1,`@${t.name} locations must be an Array.`);const o=(r=t.args)!==null&&r!==void 0?r:{};ar(o)&&!Array.isArray(o)||ge(!1,`@${t.name} args must be an object with argument names as keys.`),this.args=r_(o)}get[Symbol.toStringTag](){return\"GraphQLDirective\"}toConfig(){return{name:this.name,description:this.description,locations:this.locations,args:i_(this.args),isRepeatable:this.isRepeatable,extensions:this.extensions,astNode:this.astNode}}toString(){return\"@\"+this.name}toJSON(){return this.toString()}}const gD=new Ki({name:\"include\",description:\"Directs the executor to include this field or fragment only when the `if` argument is true.\",locations:[ne.FIELD,ne.FRAGMENT_SPREAD,ne.INLINE_FRAGMENT],args:{if:{type:new ce(ot),description:\"Included when true.\"}}}),yD=new Ki({name:\"skip\",description:\"Directs the executor to skip this field or fragment when the `if` argument is true.\",locations:[ne.FIELD,ne.FRAGMENT_SPREAD,ne.INLINE_FRAGMENT],args:{if:{type:new ce(ot),description:\"Skipped when true.\"}}}),ED=\"No longer supported\",u_=new Ki({name:\"deprecated\",description:\"Marks an element of a GraphQL schema as no longer supported.\",locations:[ne.FIELD_DEFINITION,ne.ARGUMENT_DEFINITION,ne.INPUT_FIELD_DEFINITION,ne.ENUM_VALUE],args:{reason:{type:Ue,description:\"Explains why this element was deprecated, usually also including a suggestion for how to access supported similar data. Formatted using the Markdown syntax, as specified by [CommonMark](https://commonmark.org/).\",defaultValue:ED}}}),bD=new Ki({name:\"specifiedBy\",description:\"Exposes a URL that specifies the behavior of this scalar.\",locations:[ne.SCALAR],args:{url:{type:new ce(Ue),description:\"The URL that specifies the behavior of this scalar.\"}}}),xD=Object.freeze([gD,yD,u_,bD]);function wD(e){return typeof e==\"object\"&&typeof(e==null?void 0:e[Symbol.iterator])==\"function\"}function vi(e,t){if(qe(t)){const n=vi(e,t.ofType);return(n==null?void 0:n.kind)===L.NULL?null:n}if(e===null)return{kind:L.NULL};if(e===void 0)return null;if(wt(t)){const n=t.ofType;if(wD(e)){const r=[];for(const o of e){const i=vi(o,n);i!=null&&r.push(i)}return{kind:L.LIST,values:r}}return vi(e,n)}if(vt(t)){if(!ar(e))return null;const n=[];for(const r of Object.values(t.getFields())){const o=vi(e[r.name],r.type);o&&n.push({kind:L.OBJECT_FIELD,name:{kind:L.NAME,value:r.name},value:o})}return{kind:L.OBJECT,fields:n}}if(zu(t)){const n=t.serialize(e);if(n==null)return null;if(typeof n==\"boolean\")return{kind:L.BOOLEAN,value:n};if(typeof n==\"number\"&&Number.isFinite(n)){const r=String(n);return Mg.test(r)?{kind:L.INT,value:r}:{kind:L.FLOAT,value:r}}if(typeof n==\"string\")return Bt(t)?{kind:L.ENUM,value:n}:t===l_&&Mg.test(n)?{kind:L.INT,value:n}:{kind:L.STRING,value:n};throw new TypeError(`Cannot convert value to AST: ${J(n)}.`)}ju(!1,\"Unexpected input type: \"+J(t))}const Mg=/^-?(?:0|[1-9][0-9]*)$/,Km=new zn({name:\"__Schema\",description:\"A GraphQL Schema defines the capabilities of a GraphQL server. It exposes all available types and directives on the server, as well as the entry points for query, mutation, and subscription operations.\",fields:()=>({description:{type:Ue,resolve:e=>e.description},types:{description:\"A list of all types supported by this server.\",type:new ce(new kt(new ce(yn))),resolve(e){return Object.values(e.getTypeMap())}},queryType:{description:\"The type that query operations will be rooted at.\",type:new ce(yn),resolve:e=>e.getQueryType()},mutationType:{description:\"If this server supports mutation, the type that mutation operations will be rooted at.\",type:yn,resolve:e=>e.getMutationType()},subscriptionType:{description:\"If this server support subscription, the type that subscription operations will be rooted at.\",type:yn,resolve:e=>e.getSubscriptionType()},directives:{description:\"A list of all directives supported by this server.\",type:new ce(new kt(new ce(f_))),resolve:e=>e.getDirectives()}})}),f_=new zn({name:\"__Directive\",description:`A Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document.\n\nIn some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.`,fields:()=>({name:{type:new ce(Ue),resolve:e=>e.name},description:{type:Ue,resolve:e=>e.description},isRepeatable:{type:new ce(ot),resolve:e=>e.isRepeatable},locations:{type:new ce(new kt(new ce(d_))),resolve:e=>e.locations},args:{type:new ce(new kt(new ce(Hu))),args:{includeDeprecated:{type:ot,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}}})}),d_=new Ji({name:\"__DirectiveLocation\",description:\"A Directive can be adjacent to many parts of the GraphQL language, a __DirectiveLocation describes one such possible adjacencies.\",values:{QUERY:{value:ne.QUERY,description:\"Location adjacent to a query operation.\"},MUTATION:{value:ne.MUTATION,description:\"Location adjacent to a mutation operation.\"},SUBSCRIPTION:{value:ne.SUBSCRIPTION,description:\"Location adjacent to a subscription operation.\"},FIELD:{value:ne.FIELD,description:\"Location adjacent to a field.\"},FRAGMENT_DEFINITION:{value:ne.FRAGMENT_DEFINITION,description:\"Location adjacent to a fragment definition.\"},FRAGMENT_SPREAD:{value:ne.FRAGMENT_SPREAD,description:\"Location adjacent to a fragment spread.\"},INLINE_FRAGMENT:{value:ne.INLINE_FRAGMENT,description:\"Location adjacent to an inline fragment.\"},VARIABLE_DEFINITION:{value:ne.VARIABLE_DEFINITION,description:\"Location adjacent to a variable definition.\"},SCHEMA:{value:ne.SCHEMA,description:\"Location adjacent to a schema definition.\"},SCALAR:{value:ne.SCALAR,description:\"Location adjacent to a scalar definition.\"},OBJECT:{value:ne.OBJECT,description:\"Location adjacent to an object type definition.\"},FIELD_DEFINITION:{value:ne.FIELD_DEFINITION,description:\"Location adjacent to a field definition.\"},ARGUMENT_DEFINITION:{value:ne.ARGUMENT_DEFINITION,description:\"Location adjacent to an argument definition.\"},INTERFACE:{value:ne.INTERFACE,description:\"Location adjacent to an interface definition.\"},UNION:{value:ne.UNION,description:\"Location adjacent to a union definition.\"},ENUM:{value:ne.ENUM,description:\"Location adjacent to an enum definition.\"},ENUM_VALUE:{value:ne.ENUM_VALUE,description:\"Location adjacent to an enum value definition.\"},INPUT_OBJECT:{value:ne.INPUT_OBJECT,description:\"Location adjacent to an input object type definition.\"},INPUT_FIELD_DEFINITION:{value:ne.INPUT_FIELD_DEFINITION,description:\"Location adjacent to an input object field definition.\"}}}),yn=new zn({name:\"__Type\",description:\"The fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum.\\n\\nDepending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name, description and optional `specifiedByURL`, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.\",fields:()=>({kind:{type:new ce(m_),resolve(e){if(Zr(e))return xe.SCALAR;if(Ae(e))return xe.OBJECT;if(De(e))return xe.INTERFACE;if(nn(e))return xe.UNION;if(Bt(e))return xe.ENUM;if(vt(e))return xe.INPUT_OBJECT;if(wt(e))return xe.LIST;if(qe(e))return xe.NON_NULL;ju(!1,`Unexpected type: \"${J(e)}\".`)}},name:{type:Ue,resolve:e=>\"name\"in e?e.name:void 0},description:{type:Ue,resolve:e=>\"description\"in e?e.description:void 0},specifiedByURL:{type:Ue,resolve:e=>\"specifiedByURL\"in e?e.specifiedByURL:void 0},fields:{type:new kt(new ce(p_)),args:{includeDeprecated:{type:ot,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Ae(e)||De(e)){const n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},interfaces:{type:new kt(new ce(yn)),resolve(e){if(Ae(e)||De(e))return e.getInterfaces()}},possibleTypes:{type:new kt(new ce(yn)),resolve(e,t,n,{schema:r}){if(jr(e))return r.getPossibleTypes(e)}},enumValues:{type:new kt(new ce(h_)),args:{includeDeprecated:{type:ot,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(Bt(e)){const n=e.getValues();return t?n:n.filter(r=>r.deprecationReason==null)}}},inputFields:{type:new kt(new ce(Hu)),args:{includeDeprecated:{type:ot,defaultValue:!1}},resolve(e,{includeDeprecated:t}){if(vt(e)){const n=Object.values(e.getFields());return t?n:n.filter(r=>r.deprecationReason==null)}}},ofType:{type:yn,resolve:e=>\"ofType\"in e?e.ofType:void 0}})}),p_=new zn({name:\"__Field\",description:\"Object and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.\",fields:()=>({name:{type:new ce(Ue),resolve:e=>e.name},description:{type:Ue,resolve:e=>e.description},args:{type:new ce(new kt(new ce(Hu))),args:{includeDeprecated:{type:ot,defaultValue:!1}},resolve(e,{includeDeprecated:t}){return t?e.args:e.args.filter(n=>n.deprecationReason==null)}},type:{type:new ce(yn),resolve:e=>e.type},isDeprecated:{type:new ce(ot),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:Ue,resolve:e=>e.deprecationReason}})}),Hu=new zn({name:\"__InputValue\",description:\"Arguments provided to Fields or Directives and the input fields of an InputObject are represented as Input Values which describe their type and optionally a default value.\",fields:()=>({name:{type:new ce(Ue),resolve:e=>e.name},description:{type:Ue,resolve:e=>e.description},type:{type:new ce(yn),resolve:e=>e.type},defaultValue:{type:Ue,description:\"A GraphQL-formatted string representing the default value for this input value.\",resolve(e){const{type:t,defaultValue:n}=e,r=vi(n,t);return r?Ut(r):null}},isDeprecated:{type:new ce(ot),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:Ue,resolve:e=>e.deprecationReason}})}),h_=new zn({name:\"__EnumValue\",description:\"One possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.\",fields:()=>({name:{type:new ce(Ue),resolve:e=>e.name},description:{type:Ue,resolve:e=>e.description},isDeprecated:{type:new ce(ot),resolve:e=>e.deprecationReason!=null},deprecationReason:{type:Ue,resolve:e=>e.deprecationReason}})});var xe;(function(e){e.SCALAR=\"SCALAR\",e.OBJECT=\"OBJECT\",e.INTERFACE=\"INTERFACE\",e.UNION=\"UNION\",e.ENUM=\"ENUM\",e.INPUT_OBJECT=\"INPUT_OBJECT\",e.LIST=\"LIST\",e.NON_NULL=\"NON_NULL\"})(xe||(xe={}));const m_=new Ji({name:\"__TypeKind\",description:\"An enum describing what kind of type a given `__Type` is.\",values:{SCALAR:{value:xe.SCALAR,description:\"Indicates this type is a scalar.\"},OBJECT:{value:xe.OBJECT,description:\"Indicates this type is an object. `fields` and `interfaces` are valid fields.\"},INTERFACE:{value:xe.INTERFACE,description:\"Indicates this type is an interface. `fields`, `interfaces`, and `possibleTypes` are valid fields.\"},UNION:{value:xe.UNION,description:\"Indicates this type is a union. `possibleTypes` is a valid field.\"},ENUM:{value:xe.ENUM,description:\"Indicates this type is an enum. `enumValues` is a valid field.\"},INPUT_OBJECT:{value:xe.INPUT_OBJECT,description:\"Indicates this type is an input object. `inputFields` is a valid field.\"},LIST:{value:xe.LIST,description:\"Indicates this type is a list. `ofType` is a valid field.\"},NON_NULL:{value:xe.NON_NULL,description:\"Indicates this type is a non-null. `ofType` is a valid field.\"}}}),ua={name:\"__schema\",type:new ce(Km),description:\"Access the current type schema of this server.\",args:[],resolve:(e,t,n,{schema:r})=>r,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},fa={name:\"__type\",type:yn,description:\"Request the type information of a single type.\",args:[{name:\"name\",description:void 0,type:new ce(Ue),defaultValue:void 0,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0}],resolve:(e,{name:t},n,{schema:r})=>r.getType(t),deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},da={name:\"__typename\",type:new ce(Ue),description:\"The name of the current Object type at runtime.\",args:[],resolve:(e,t,n,{parentType:r})=>r.name,deprecationReason:void 0,extensions:Object.create(null),astNode:void 0},v_=Object.freeze([Km,f_,d_,yn,p_,Hu,h_,m_]);function _D(e){return v_.some(({name:t})=>e.name===t)}function Qp(e){return kn(e,g_)}function SD(e){if(!Qp(e))throw new Error(`Expected ${J(e)} to be a GraphQL schema.`);return e}class g_{constructor(t){var n,r;this.__validationErrors=t.assumeValid===!0?[]:void 0,ar(t)||ge(!1,\"Must provide configuration object.\"),!t.types||Array.isArray(t.types)||ge(!1,`\"types\" must be Array if provided but got: ${J(t.types)}.`),!t.directives||Array.isArray(t.directives)||ge(!1,`\"directives\" must be Array if provided but got: ${J(t.directives)}.`),this.description=t.description,this.extensions=an(t.extensions),this.astNode=t.astNode,this.extensionASTNodes=(n=t.extensionASTNodes)!==null&&n!==void 0?n:[],this._queryType=t.query,this._mutationType=t.mutation,this._subscriptionType=t.subscription,this._directives=(r=t.directives)!==null&&r!==void 0?r:xD;const o=new Set(t.types);if(t.types!=null)for(const i of t.types)o.delete(i),mn(i,o);this._queryType!=null&&mn(this._queryType,o),this._mutationType!=null&&mn(this._mutationType,o),this._subscriptionType!=null&&mn(this._subscriptionType,o);for(const i of this._directives)if(c_(i))for(const s of i.args)mn(s.type,o);mn(Km,o),this._typeMap=Object.create(null),this._subTypeMap=Object.create(null),this._implementationsMap=Object.create(null);for(const i of o){if(i==null)continue;const s=i.name;if(s||ge(!1,\"One of the provided types for building the Schema is missing a name.\"),this._typeMap[s]!==void 0)throw new Error(`Schema must contain uniquely named types but contains multiple types named \"${s}\".`);if(this._typeMap[s]=i,De(i)){for(const a of i.getInterfaces())if(De(a)){let l=this._implementationsMap[a.name];l===void 0&&(l=this._implementationsMap[a.name]={objects:[],interfaces:[]}),l.interfaces.push(i)}}else if(Ae(i)){for(const a of i.getInterfaces())if(De(a)){let l=this._implementationsMap[a.name];l===void 0&&(l=this._implementationsMap[a.name]={objects:[],interfaces:[]}),l.objects.push(i)}}}}get[Symbol.toStringTag](){return\"GraphQLSchema\"}getQueryType(){return this._queryType}getMutationType(){return this._mutationType}getSubscriptionType(){return this._subscriptionType}getRootType(t){switch(t){case Xt.QUERY:return this.getQueryType();case Xt.MUTATION:return this.getMutationType();case Xt.SUBSCRIPTION:return this.getSubscriptionType()}}getTypeMap(){return this._typeMap}getType(t){return this.getTypeMap()[t]}getPossibleTypes(t){return nn(t)?t.getTypes():this.getImplementations(t).objects}getImplementations(t){const n=this._implementationsMap[t.name];return n??{objects:[],interfaces:[]}}isSubType(t,n){let r=this._subTypeMap[t.name];if(r===void 0){if(r=Object.create(null),nn(t))for(const o of t.getTypes())r[o.name]=!0;else{const o=this.getImplementations(t);for(const i of o.objects)r[i.name]=!0;for(const i of o.interfaces)r[i.name]=!0}this._subTypeMap[t.name]=r}return r[n.name]!==void 0}getDirectives(){return this._directives}getDirective(t){return this.getDirectives().find(n=>n.name===t)}toConfig(){return{description:this.description,query:this.getQueryType(),mutation:this.getMutationType(),subscription:this.getSubscriptionType(),types:Object.values(this.getTypeMap()),directives:this.getDirectives(),extensions:this.extensions,astNode:this.astNode,extensionASTNodes:this.extensionASTNodes,assumeValid:this.__validationErrors!==void 0}}}function mn(e,t){const n=Ft(e);if(!t.has(n)){if(t.add(n),nn(n))for(const r of n.getTypes())mn(r,t);else if(Ae(n)||De(n)){for(const r of n.getInterfaces())mn(r,t);for(const r of Object.values(n.getFields())){mn(r.type,t);for(const o of r.args)mn(o.type,t)}}else if(vt(n))for(const r of Object.values(n.getFields()))mn(r.type,t)}return t}function y_(e){if(SD(e),e.__validationErrors)return e.__validationErrors;const t=new CD(e);TD(t),kD(t),ND(t);const n=t.getErrors();return e.__validationErrors=n,n}function s_e(e){const t=y_(e);if(t.length!==0)throw new Error(t.map(n=>n.message).join(`\n\n`))}class CD{constructor(t){this._errors=[],this.schema=t}reportError(t,n){const r=Array.isArray(n)?n.filter(Boolean):n;this._errors.push(new ve(t,{nodes:r}))}getErrors(){return this._errors}}function TD(e){const t=e.schema,n=t.getQueryType();if(!n)e.reportError(\"Query root type must be provided.\",t.astNode);else if(!Ae(n)){var r;e.reportError(`Query root type must be Object type, it cannot be ${J(n)}.`,(r=od(t,Xt.QUERY))!==null&&r!==void 0?r:n.astNode)}const o=t.getMutationType();if(o&&!Ae(o)){var i;e.reportError(`Mutation root type must be Object type if provided, it cannot be ${J(o)}.`,(i=od(t,Xt.MUTATION))!==null&&i!==void 0?i:o.astNode)}const s=t.getSubscriptionType();if(s&&!Ae(s)){var a;e.reportError(`Subscription root type must be Object type if provided, it cannot be ${J(s)}.`,(a=od(t,Xt.SUBSCRIPTION))!==null&&a!==void 0?a:s.astNode)}}function od(e,t){var n;return(n=[e.astNode,...e.extensionASTNodes].flatMap(r=>{var o;return(o=r==null?void 0:r.operationTypes)!==null&&o!==void 0?o:[]}).find(r=>r.operation===t))===null||n===void 0?void 0:n.type}function kD(e){for(const n of e.schema.getDirectives()){if(!c_(n)){e.reportError(`Expected directive but got: ${J(n)}.`,n==null?void 0:n.astNode);continue}Io(e,n);for(const r of n.args)if(Io(e,r),Yt(r.type)||e.reportError(`The type of @${n.name}(${r.name}:) must be Input Type but got: ${J(r.type)}.`,r.astNode),Xm(r)&&r.deprecationReason!=null){var t;e.reportError(`Required argument @${n.name}(${r.name}:) cannot be deprecated.`,[ev(r.astNode),(t=r.astNode)===null||t===void 0?void 0:t.type])}}}function Io(e,t){t.name.startsWith(\"__\")&&e.reportError(`Name \"${t.name}\" must not begin with \"__\", which is reserved by GraphQL introspection.`,t.astNode)}function ND(e){const t=OD(e),n=e.schema.getTypeMap();for(const r of Object.values(n)){if(!Zm(r)){e.reportError(`Expected GraphQL named type but got: ${J(r)}.`,r.astNode);continue}_D(r)||Io(e,r),Ae(r)||De(r)?(Vg(e,r),jg(e,r)):nn(r)?ID(e,r):Bt(r)?RD(e,r):vt(r)&&(LD(e,r),t(r))}}function Vg(e,t){const n=Object.values(t.getFields());n.length===0&&e.reportError(`Type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(const s of n){if(Io(e,s),!xo(s.type)){var r;e.reportError(`The type of ${t.name}.${s.name} must be Output Type but got: ${J(s.type)}.`,(r=s.astNode)===null||r===void 0?void 0:r.type)}for(const a of s.args){const l=a.name;if(Io(e,a),!Yt(a.type)){var o;e.reportError(`The type of ${t.name}.${s.name}(${l}:) must be Input Type but got: ${J(a.type)}.`,(o=a.astNode)===null||o===void 0?void 0:o.type)}if(Xm(a)&&a.deprecationReason!=null){var i;e.reportError(`Required argument ${t.name}.${s.name}(${l}:) cannot be deprecated.`,[ev(a.astNode),(i=a.astNode)===null||i===void 0?void 0:i.type])}}}}function jg(e,t){const n=Object.create(null);for(const r of t.getInterfaces()){if(!De(r)){e.reportError(`Type ${J(t)} must only implement Interface types, it cannot implement ${J(r)}.`,Fs(t,r));continue}if(t===r){e.reportError(`Type ${t.name} cannot implement itself because it would create a circular reference.`,Fs(t,r));continue}if(n[r.name]){e.reportError(`Type ${t.name} can only implement ${r.name} once.`,Fs(t,r));continue}n[r.name]=!0,DD(e,t,r),AD(e,t,r)}}function AD(e,t,n){const r=t.getFields();for(const l of Object.values(n.getFields())){const c=l.name,u=r[c];if(!u){e.reportError(`Interface field ${n.name}.${c} expected but ${t.name} does not provide it.`,[l.astNode,t.astNode,...t.extensionASTNodes]);continue}if(!lc(e.schema,u.type,l.type)){var o,i;e.reportError(`Interface field ${n.name}.${c} expects type ${J(l.type)} but ${t.name}.${c} is type ${J(u.type)}.`,[(o=l.astNode)===null||o===void 0?void 0:o.type,(i=u.astNode)===null||i===void 0?void 0:i.type])}for(const d of l.args){const p=d.name,f=u.args.find(m=>m.name===p);if(!f){e.reportError(`Interface field argument ${n.name}.${c}(${p}:) expected but ${t.name}.${c} does not provide it.`,[d.astNode,u.astNode]);continue}if(!Wp(d.type,f.type)){var s,a;e.reportError(`Interface field argument ${n.name}.${c}(${p}:) expects type ${J(d.type)} but ${t.name}.${c}(${p}:) is type ${J(f.type)}.`,[(s=d.astNode)===null||s===void 0?void 0:s.type,(a=f.astNode)===null||a===void 0?void 0:a.type])}}for(const d of u.args){const p=d.name;!l.args.find(m=>m.name===p)&&Xm(d)&&e.reportError(`Object field ${t.name}.${c} includes required argument ${p} that is missing from the Interface field ${n.name}.${c}.`,[d.astNode,l.astNode])}}}function DD(e,t,n){const r=t.getInterfaces();for(const o of n.getInterfaces())r.includes(o)||e.reportError(o===t?`Type ${t.name} cannot implement ${n.name} because it would create a circular reference.`:`Type ${t.name} must implement ${o.name} because it is implemented by ${n.name}.`,[...Fs(n,o),...Fs(t,n)])}function ID(e,t){const n=t.getTypes();n.length===0&&e.reportError(`Union type ${t.name} must define one or more member types.`,[t.astNode,...t.extensionASTNodes]);const r=Object.create(null);for(const o of n){if(r[o.name]){e.reportError(`Union type ${t.name} can only include type ${o.name} once.`,qg(t,o.name));continue}r[o.name]=!0,Ae(o)||e.reportError(`Union type ${t.name} can only include Object types, it cannot include ${J(o)}.`,qg(t,String(o)))}}function RD(e,t){const n=t.getValues();n.length===0&&e.reportError(`Enum type ${t.name} must define one or more values.`,[t.astNode,...t.extensionASTNodes]);for(const r of n)Io(e,r)}function LD(e,t){const n=Object.values(t.getFields());n.length===0&&e.reportError(`Input Object type ${t.name} must define one or more fields.`,[t.astNode,...t.extensionASTNodes]);for(const i of n){if(Io(e,i),!Yt(i.type)){var r;e.reportError(`The type of ${t.name}.${i.name} must be Input Type but got: ${J(i.type)}.`,(r=i.astNode)===null||r===void 0?void 0:r.type)}if(pD(i)&&i.deprecationReason!=null){var o;e.reportError(`Required input field ${t.name}.${i.name} cannot be deprecated.`,[ev(i.astNode),(o=i.astNode)===null||o===void 0?void 0:o.type])}}}function OD(e){const t=Object.create(null),n=[],r=Object.create(null);return o;function o(i){if(t[i.name])return;t[i.name]=!0,r[i.name]=n.length;const s=Object.values(i.getFields());for(const a of s)if(qe(a.type)&&vt(a.type.ofType)){const l=a.type.ofType,c=r[l.name];if(n.push(a),c===void 0)o(l);else{const u=n.slice(c),d=u.map(p=>p.name).join(\".\");e.reportError(`Cannot reference Input Object \"${l.name}\" within itself through a series of non-null fields: \"${d}\".`,u.map(p=>p.astNode))}n.pop()}r[i.name]=void 0}}function Fs(e,t){const{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(i=>{var s;return(s=i.interfaces)!==null&&s!==void 0?s:[]}).filter(i=>i.name.value===t.name)}function qg(e,t){const{astNode:n,extensionASTNodes:r}=e;return(n!=null?[n,...r]:r).flatMap(i=>{var s;return(s=i.types)!==null&&s!==void 0?s:[]}).filter(i=>i.name.value===t)}function ev(e){var t;return e==null||(t=e.directives)===null||t===void 0?void 0:t.find(n=>n.name.value===u_.name)}function pa(e,t){switch(t.kind){case L.LIST_TYPE:{const n=pa(e,t.type);return n&&new kt(n)}case L.NON_NULL_TYPE:{const n=pa(e,t.type);return n&&new ce(n)}case L.NAMED_TYPE:return e.getType(t.name.value)}}class E_{constructor(t,n,r){this._schema=t,this._typeStack=[],this._parentTypeStack=[],this._inputTypeStack=[],this._fieldDefStack=[],this._defaultValueStack=[],this._directive=null,this._argument=null,this._enumValue=null,this._getFieldDef=r??PD,n&&(Yt(n)&&this._inputTypeStack.push(n),Jt(n)&&this._parentTypeStack.push(n),xo(n)&&this._typeStack.push(n))}get[Symbol.toStringTag](){return\"TypeInfo\"}getType(){if(this._typeStack.length>0)return this._typeStack[this._typeStack.length-1]}getParentType(){if(this._parentTypeStack.length>0)return this._parentTypeStack[this._parentTypeStack.length-1]}getInputType(){if(this._inputTypeStack.length>0)return this._inputTypeStack[this._inputTypeStack.length-1]}getParentInputType(){if(this._inputTypeStack.length>1)return this._inputTypeStack[this._inputTypeStack.length-2]}getFieldDef(){if(this._fieldDefStack.length>0)return this._fieldDefStack[this._fieldDefStack.length-1]}getDefaultValue(){if(this._defaultValueStack.length>0)return this._defaultValueStack[this._defaultValueStack.length-1]}getDirective(){return this._directive}getArgument(){return this._argument}getEnumValue(){return this._enumValue}enter(t){const n=this._schema;switch(t.kind){case L.SELECTION_SET:{const o=Ft(this.getType());this._parentTypeStack.push(Jt(o)?o:void 0);break}case L.FIELD:{const o=this.getParentType();let i,s;o&&(i=this._getFieldDef(n,o,t),i&&(s=i.type)),this._fieldDefStack.push(i),this._typeStack.push(xo(s)?s:void 0);break}case L.DIRECTIVE:this._directive=n.getDirective(t.name.value);break;case L.OPERATION_DEFINITION:{const o=n.getRootType(t.operation);this._typeStack.push(Ae(o)?o:void 0);break}case L.INLINE_FRAGMENT:case L.FRAGMENT_DEFINITION:{const o=t.typeCondition,i=o?pa(n,o):Ft(this.getType());this._typeStack.push(xo(i)?i:void 0);break}case L.VARIABLE_DEFINITION:{const o=pa(n,t.type);this._inputTypeStack.push(Yt(o)?o:void 0);break}case L.ARGUMENT:{var r;let o,i;const s=(r=this.getDirective())!==null&&r!==void 0?r:this.getFieldDef();s&&(o=s.args.find(a=>a.name===t.name.value),o&&(i=o.type)),this._argument=o,this._defaultValueStack.push(o?o.defaultValue:void 0),this._inputTypeStack.push(Yt(i)?i:void 0);break}case L.LIST:{const o=Jw(this.getInputType()),i=wt(o)?o.ofType:o;this._defaultValueStack.push(void 0),this._inputTypeStack.push(Yt(i)?i:void 0);break}case L.OBJECT_FIELD:{const o=Ft(this.getInputType());let i,s;vt(o)&&(s=o.getFields()[t.name.value],s&&(i=s.type)),this._defaultValueStack.push(s?s.defaultValue:void 0),this._inputTypeStack.push(Yt(i)?i:void 0);break}case L.ENUM:{const o=Ft(this.getInputType());let i;Bt(o)&&(i=o.getValue(t.value)),this._enumValue=i;break}}}leave(t){switch(t.kind){case L.SELECTION_SET:this._parentTypeStack.pop();break;case L.FIELD:this._fieldDefStack.pop(),this._typeStack.pop();break;case L.DIRECTIVE:this._directive=null;break;case L.OPERATION_DEFINITION:case L.INLINE_FRAGMENT:case L.FRAGMENT_DEFINITION:this._typeStack.pop();break;case L.VARIABLE_DEFINITION:this._inputTypeStack.pop();break;case L.ARGUMENT:this._argument=null,this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case L.LIST:case L.OBJECT_FIELD:this._defaultValueStack.pop(),this._inputTypeStack.pop();break;case L.ENUM:this._enumValue=null;break}}}function PD(e,t,n){const r=n.name.value;if(r===ua.name&&e.getQueryType()===t)return ua;if(r===fa.name&&e.getQueryType()===t)return fa;if(r===da.name&&Jt(t))return da;if(Ae(t)||De(t))return t.getFields()[r]}function $D(e,t){return{enter(...n){const r=n[0];e.enter(r);const o=zc(t,r.kind).enter;if(o){const i=o.apply(t,n);return i!==void 0&&(e.leave(r),Bp(i)&&e.enter(i)),i}},leave(...n){const r=n[0],o=zc(t,r.kind).leave;let i;return o&&(i=o.apply(t,n)),e.leave(r),i}}}function Cs(e,t,n){if(e){if(e.kind===L.VARIABLE){const r=e.name.value;if(n==null||n[r]===void 0)return;const o=n[r];return o===null&&qe(t)?void 0:o}if(qe(t))return e.kind===L.NULL?void 0:Cs(e,t.ofType,n);if(e.kind===L.NULL)return null;if(wt(t)){const r=t.ofType;if(e.kind===L.LIST){const i=[];for(const s of e.values)if(Ug(s,n)){if(qe(r))return;i.push(null)}else{const a=Cs(s,r,n);if(a===void 0)return;i.push(a)}return i}const o=Cs(e,r,n);return o===void 0?void 0:[o]}if(vt(t)){if(e.kind!==L.OBJECT)return;const r=Object.create(null),o=Zw(e.fields,i=>i.name.value);for(const i of Object.values(t.getFields())){const s=o[i.name];if(!s||Ug(s.value,n)){if(i.defaultValue!==void 0)r[i.name]=i.defaultValue;else if(qe(i.type))return;continue}const a=Cs(s.value,i.type,n);if(a===void 0)return;r[i.name]=a}return r}if(zu(t)){let r;try{r=t.parseLiteral(e,n)}catch{return}return r===void 0?void 0:r}ju(!1,\"Unexpected input type: \"+J(t))}}function Ug(e,t){return e.kind===L.VARIABLE&&(t==null||t[e.name.value]===void 0)}function FD(e){const t={descriptions:!0,specifiedByUrl:!1,directiveIsRepeatable:!1,schemaDescription:!1,inputValueDeprecation:!1,...e},n=t.descriptions?\"description\":\"\",r=t.specifiedByUrl?\"specifiedByURL\":\"\",o=t.directiveIsRepeatable?\"isRepeatable\":\"\",i=t.schemaDescription?n:\"\";function s(a){return t.inputValueDeprecation?a:\"\"}return`\n    query IntrospectionQuery {\n      __schema {\n        ${i}\n        queryType { name }\n        mutationType { name }\n        subscriptionType { name }\n        types {\n          ...FullType\n        }\n        directives {\n          name\n          ${n}\n          ${o}\n          locations\n          args${s(\"(includeDeprecated: true)\")} {\n            ...InputValue\n          }\n        }\n      }\n    }\n\n    fragment FullType on __Type {\n      kind\n      name\n      ${n}\n      ${r}\n      fields(includeDeprecated: true) {\n        name\n        ${n}\n        args${s(\"(includeDeprecated: true)\")} {\n          ...InputValue\n        }\n        type {\n          ...TypeRef\n        }\n        isDeprecated\n        deprecationReason\n      }\n      inputFields${s(\"(includeDeprecated: true)\")} {\n        ...InputValue\n      }\n      interfaces {\n        ...TypeRef\n      }\n      enumValues(includeDeprecated: true) {\n        name\n        ${n}\n        isDeprecated\n        deprecationReason\n      }\n      possibleTypes {\n        ...TypeRef\n      }\n    }\n\n    fragment InputValue on __InputValue {\n      name\n      ${n}\n      type { ...TypeRef }\n      defaultValue\n      ${s(\"isDeprecated\")}\n      ${s(\"deprecationReason\")}\n    }\n\n    fragment TypeRef on __Type {\n      kind\n      name\n      ofType {\n        kind\n        name\n        ofType {\n          kind\n          name\n          ofType {\n            kind\n            name\n            ofType {\n              kind\n              name\n              ofType {\n                kind\n                name\n                ofType {\n                  kind\n                  name\n                  ofType {\n                    kind\n                    name\n                    ofType {\n                      kind\n                      name\n                      ofType {\n                        kind\n                        name\n                      }\n                    }\n                  }\n                }\n              }\n            }\n          }\n        }\n      }\n    }\n  `}function MD(e,t){ar(e)&&ar(e.__schema)||ge(!1,`Invalid or incomplete introspection result. Ensure that you are passing \"data\" property of introspection response and no \"errors\" was returned alongside: ${J(e)}.`);const n=e.__schema,r=vo(n.types,S=>S.name,S=>p(S));for(const S of[...vD,...v_])r[S.name]&&(r[S.name]=S);const o=n.queryType?u(n.queryType):null,i=n.mutationType?u(n.mutationType):null,s=n.subscriptionType?u(n.subscriptionType):null,a=n.directives?n.directives.map(A):[];return new g_({description:n.description,query:o,mutation:i,subscription:s,types:Object.values(r),directives:a,assumeValid:t==null?void 0:t.assumeValid});function l(S){if(S.kind===xe.LIST){const k=S.ofType;if(!k)throw new Error(\"Decorated type deeper than introspection query.\");return new kt(l(k))}if(S.kind===xe.NON_NULL){const k=S.ofType;if(!k)throw new Error(\"Decorated type deeper than introspection query.\");const q=l(k);return new ce(cD(q))}return c(S)}function c(S){const k=S.name;if(!k)throw new Error(`Unknown type reference: ${J(S)}.`);const q=r[k];if(!q)throw new Error(`Invalid or incomplete schema, unknown type: ${k}. Ensure that a full introspection query is used in order to build a client schema.`);return q}function u(S){return sD(c(S))}function d(S){return aD(c(S))}function p(S){if(S!=null&&S.name!=null&&S.kind!=null)switch(S.kind){case xe.SCALAR:return f(S);case xe.OBJECT:return v(S);case xe.INTERFACE:return b(S);case xe.UNION:return y(S);case xe.ENUM:return g(S);case xe.INPUT_OBJECT:return E(S)}const k=J(S);throw new Error(`Invalid or incomplete introspection result. Ensure that a full introspection query is used in order to build a client schema: ${k}.`)}function f(S){return new Uo({name:S.name,description:S.description,specifiedByURL:S.specifiedByURL})}function m(S){if(S.interfaces===null&&S.kind===xe.INTERFACE)return[];if(!S.interfaces){const k=J(S);throw new Error(`Introspection result missing interfaces: ${k}.`)}return S.interfaces.map(d)}function v(S){return new zn({name:S.name,description:S.description,interfaces:()=>m(S),fields:()=>x(S)})}function b(S){return new ki({name:S.name,description:S.description,interfaces:()=>m(S),fields:()=>x(S)})}function y(S){if(!S.possibleTypes){const k=J(S);throw new Error(`Introspection result missing possibleTypes: ${k}.`)}return new s_({name:S.name,description:S.description,types:()=>S.possibleTypes.map(u)})}function g(S){if(!S.enumValues){const k=J(S);throw new Error(`Introspection result missing enumValues: ${k}.`)}return new Ji({name:S.name,description:S.description,values:vo(S.enumValues,k=>k.name,k=>({description:k.description,deprecationReason:k.deprecationReason}))})}function E(S){if(!S.inputFields){const k=J(S);throw new Error(`Introspection result missing inputFields: ${k}.`)}return new Jm({name:S.name,description:S.description,fields:()=>C(S.inputFields)})}function x(S){if(!S.fields)throw new Error(`Introspection result missing fields: ${J(S)}.`);return vo(S.fields,k=>k.name,w)}function w(S){const k=l(S.type);if(!xo(k)){const q=J(k);throw new Error(`Introspection must provide output type for fields, but received: ${q}.`)}if(!S.args){const q=J(S);throw new Error(`Introspection result missing field args: ${q}.`)}return{description:S.description,deprecationReason:S.deprecationReason,type:k,args:C(S.args)}}function C(S){return vo(S,k=>k.name,T)}function T(S){const k=l(S.type);if(!Yt(k)){const H=J(k);throw new Error(`Introspection must provide input type for arguments, but received: ${H}.`)}const q=S.defaultValue!=null?Cs(GA(S.defaultValue),k):void 0;return{description:S.description,type:k,defaultValue:q,deprecationReason:S.deprecationReason}}function A(S){if(!S.args){const k=J(S);throw new Error(`Introspection result missing directive args: ${k}.`)}if(!S.locations){const k=J(S);throw new Error(`Introspection result missing directive locations: ${k}.`)}return new Ki({name:S.name,description:S.description,isRepeatable:S.isRepeatable,locations:S.locations.slice(),args:C(S.args)})}}async function VD(e,t){let n=e.headers[\"content-type\"];if(!n||!~n.indexOf(\"multipart/\"))return e;let r=n.indexOf(\"boundary=\"),o=\"-\";if(~r){let i=r+9,s=n.indexOf(\";\",i);o=n.slice(i,s>-1?s:void 0).trim().replace(/\"/g,\"\")}return async function*(i,s,a){let l,c,u,d=!a||!a.multiple,p=Buffer.byteLength(s),f=Buffer.alloc(0),m=[];e:for await(let v of i){l=f.byteLength,f=Buffer.concat([f,v]);let b=v.indexOf(s);for(~b?l+=b:l=f.indexOf(s),m=[];~l;){let y=f.subarray(0,l),g=f.subarray(l+p);if(c){let E=y.indexOf(`\\r\n\\r\n`)+4,x=y.lastIndexOf(`\\r\n`,E),w=!1,C=y.subarray(E,x>-1?void 0:x),T=String(y.subarray(0,E)).trim().split(`\\r\n`),A={},S=T.length;for(;u=T[--S];u=u.split(\": \"),A[u.shift().toLowerCase()]=u.join(\": \"));if(u=A[\"content-type\"],u&&~u.indexOf(\"application/json\"))try{C=JSON.parse(String(C)),w=!0}catch{}if(u={headers:A,body:C,json:w},d?yield u:m.push(u),g[0]===45&&g[1]===45)break e}else s=`\\r\n`+s,c=p+=2;f=g,l=f.indexOf(s)}m.length&&(yield m)}m.length&&(yield m)}(e,`--${o}`,t)}function jD(e,t,n){const r=async function*(){yield*e}(),o=r.return.bind(r);if(t&&(r.return=(...i)=>(t(),o(...i))),n){const i=r.throw.bind(r);r.throw=s=>(n(s),i(s))}return r}function Bg(){const e={};return e.promise=new Promise((t,n)=>{e.resolve=t,e.reject=n}),e}function qD(){let e={type:\"running\"},t=Bg();const n=[];function r(s){e.type===\"running\"&&(n.push(s),t.resolve(),t=Bg())}const o=async function*(){for(;;)if(n.length>0)yield n.shift();else{if(e.type===\"error\")throw e.error;if(e.type===\"finished\")return;await t.promise}}(),i=jD(o,()=>{e.type===\"running\"&&(e={type:\"finished\"},t.resolve())},s=>{e.type===\"running\"&&(e={type:\"error\",error:s},t.resolve())});return{pushValue:r,asyncIterableIterator:i}}const b_=e=>{const{pushValue:t,asyncIterableIterator:n}=qD(),r=e({next:s=>{t(s)},complete:()=>{n.return()},error:s=>{n.throw(s)}}),o=n.return;let i;return n.return=()=>(i===void 0&&(r(),i=o()),i),n};function UD(e){return typeof e==\"object\"&&e!==null&&(e[Symbol.toStringTag]===\"AsyncGenerator\"||Symbol.asyncIterator&&Symbol.asyncIterator in e)}var BD=globalThis&&globalThis.__awaiter||function(e,t,n,r){function o(i){return i instanceof n?i:new n(function(s){s(i)})}return new(n||(n=Promise))(function(i,s){function a(u){try{c(r.next(u))}catch(d){s(d)}}function l(u){try{c(r.throw(u))}catch(d){s(d)}}function c(u){u.done?i(u.value):o(u.value).then(a,l)}c((r=r.apply(e,t||[])).next())})},Jn=globalThis&&globalThis.__await||function(e){return this instanceof Jn?(this.v=e,this):new Jn(e)},zD=globalThis&&globalThis.__asyncValues||function(e){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof __values==\"function\"?__values(e):e[Symbol.iterator](),n={},r(\"next\"),r(\"throw\"),r(\"return\"),n[Symbol.asyncIterator]=function(){return this},n);function r(i){n[i]=e[i]&&function(s){return new Promise(function(a,l){s=e[i](s),o(a,l,s.done,s.value)})}}function o(i,s,a,l){Promise.resolve(l).then(function(c){i({value:c,done:a})},s)}},HD=globalThis&&globalThis.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var r=n.apply(e,t||[]),o,i=[];return o={},s(\"next\"),s(\"throw\"),s(\"return\"),o[Symbol.asyncIterator]=function(){return this},o;function s(p){r[p]&&(o[p]=function(f){return new Promise(function(m,v){i.push([p,f,m,v])>1||a(p,f)})})}function a(p,f){try{l(r[p](f))}catch(m){d(i[0][3],m)}}function l(p){p.value instanceof Jn?Promise.resolve(p.value.v).then(c,u):d(i[0][2],p)}function c(p){a(\"next\",p)}function u(p){a(\"throw\",p)}function d(p,f){p(f),i.shift(),i.length&&a(i[0][0],i[0][1])}};const GD=e=>typeof e==\"object\"&&e!==null&&\"code\"in e,WD=(e,t)=>{let n=!1;return Tn(e,{OperationDefinition(r){var o;t===((o=r.name)===null||o===void 0?void 0:o.value)&&r.operation===\"subscription\"&&(n=!0)}}),n},QD=(e,t)=>(n,r)=>BD(void 0,void 0,void 0,function*(){return(yield t(e.url,{method:\"POST\",body:JSON.stringify(n),headers:Object.assign(Object.assign({\"content-type\":\"application/json\"},e.headers),r==null?void 0:r.headers)})).json()}),YD=(e,t)=>{let n;try{const{createClient:r}=require(\"graphql-ws\");return n=r({url:e,connectionParams:t}),x_(n)}catch(r){if(GD(r)&&r.code===\"MODULE_NOT_FOUND\")throw new Error(\"You need to install the 'graphql-ws' package to use websockets when passing a 'subscriptionUrl'\");console.error(`Error creating websocket client for ${e}`,r)}},x_=e=>t=>b_(n=>e.subscribe(t,Object.assign(Object.assign({},n),{error(r){r instanceof CloseEvent?n.error(new Error(`Socket closed with event ${r.code} ${r.reason||\"\"}`.trim())):n.error(r)}}))),ZD=e=>t=>{const n=e.request(t);return b_(r=>n.subscribe(r).unsubscribe)},XD=(e,t)=>function(n,r){return HD(this,arguments,function*(){var o,i;const s=yield Jn(t(e.url,{method:\"POST\",body:JSON.stringify(n),headers:Object.assign(Object.assign({\"content-type\":\"application/json\",accept:\"application/json, multipart/mixed\"},e.headers),r==null?void 0:r.headers)}).then(c=>VD(c,{multiple:!0})));if(!UD(s))return yield Jn(yield yield Jn(s.json()));try{for(var a=zD(s),l;l=yield Jn(a.next()),!l.done;){const c=l.value;if(c.some(u=>!u.json)){const u=c.map(d=>`Headers::\n${d.headers}\n\nBody::\n${d.body}`);throw new Error(`Expected multipart chunks to be of json type. got:\n${u}`)}yield yield Jn(c.map(u=>u.body))}}catch(c){o={error:c}}finally{try{l&&!l.done&&(i=a.return)&&(yield Jn(i.call(a)))}finally{if(o)throw o.error}}})},JD=(e,t)=>{if(e.wsClient)return x_(e.wsClient);if(e.subscriptionUrl)return YD(e.subscriptionUrl,Object.assign(Object.assign({},e.wsConnectionParams),t==null?void 0:t.headers));const n=e.legacyClient||e.legacyWsClient;if(n)return ZD(n)};function KD(e){let t;if(typeof window<\"u\"&&window.fetch&&(t=window.fetch),((e==null?void 0:e.enableIncrementalDelivery)===null||e.enableIncrementalDelivery!==!1)&&(e.enableIncrementalDelivery=!0),e.fetch&&(t=e.fetch),!t)throw new Error(\"No valid fetcher implementation available\");const n=QD(e,t),r=e.enableIncrementalDelivery?XD(e,t):n;return(o,i)=>{if(o.operationName===\"IntrospectionQuery\")return(e.schemaFetcher||n)(o,i);if(i!=null&&i.documentAST?WD(i.documentAST,o.operationName||void 0):!1){const a=JD(e,i);if(!a)throw new Error(`Your GraphiQL createFetcher is not properly configured for websocket subscriptions yet. ${e.subscriptionUrl?`Provided URL ${e.subscriptionUrl} failed`:\"Please provide subscriptionUrl, wsClient or legacyClient option first.\"}`);return a(o)}return r(o,i)}}function Yp(e){return JSON.stringify(e,null,2)}function e3(e){return Object.assign(Object.assign({},e),{message:e.message,stack:e.stack})}function zg(e){return e instanceof Error?e3(e):e}function ha(e){return Array.isArray(e)?Yp({errors:e.map(t=>zg(t))}):Yp({errors:[zg(e)]})}function Zp(e){return Yp(e)}function t3(e,t,n){const r=[];if(!e||!t)return{insertions:r,result:t};let o;try{o=qo(t)}catch{return{insertions:r,result:t}}const i=n||n3,s=new E_(e);return Tn(o,{leave(a){s.leave(a)},enter(a){if(s.enter(a),a.kind===\"Field\"&&!a.selectionSet){const l=s.getType(),c=w_(i3(l),i);if(c&&a.loc){const u=o3(t,a.loc.start);r.push({index:a.loc.end,string:\" \"+Ut(c).replaceAll(`\n`,`\n`+u)})}}}}),{insertions:r,result:r3(t,r)}}function n3(e){if(!(\"getFields\"in e))return[];const t=e.getFields();if(t.id)return[\"id\"];if(t.edges)return[\"edges\"];if(t.node)return[\"node\"];const n=[];for(const r of Object.keys(t))zu(t[r].type)&&n.push(r);return n}function w_(e,t){const n=Ft(e);if(!e||zu(e))return;const r=t(n);if(!(!Array.isArray(r)||r.length===0||!(\"getFields\"in n)))return{kind:L.SELECTION_SET,selections:r.map(o=>{const i=n.getFields()[o],s=i?i.type:null;return{kind:L.FIELD,name:{kind:L.NAME,value:o},selectionSet:w_(s,t)}})}}function r3(e,t){if(t.length===0)return e;let n=\"\",r=0;for(const{index:o,string:i}of t)n+=e.slice(r,o)+i,r=o;return n+=e.slice(r),n}function o3(e,t){let n=t,r=t;for(;n;){const o=e.charCodeAt(n-1);if(o===10||o===13||o===8232||o===8233)break;n--,o!==9&&o!==11&&o!==12&&o!==32&&o!==160&&(r=n)}return e.slice(n,r)}function i3(e){if(e)return e}function s3(e,t){var n;const r=new Map,o=[];for(const i of e)if(i.kind===\"Field\"){const s=t(i),a=r.get(s);if(!((n=i.directives)===null||n===void 0)&&n.length){const l=Object.assign({},i);o.push(l)}else if(a!=null&&a.selectionSet&&i.selectionSet)a.selectionSet.selections=[...a.selectionSet.selections,...i.selectionSet.selections];else if(!a){const l=Object.assign({},i);r.set(s,l),o.push(l)}}else o.push(i);return o}function __(e,t,n){var r;const o=n?Ft(n).name:null,i=[],s=[];for(let a of t){if(a.kind===\"FragmentSpread\"){const l=a.name.value;if(!a.directives||a.directives.length===0){if(s.includes(l))continue;s.push(l)}const c=e[a.name.value];if(c){const{typeCondition:u,directives:d,selectionSet:p}=c;a={kind:L.INLINE_FRAGMENT,typeCondition:u,directives:d,selectionSet:p}}}if(a.kind===L.INLINE_FRAGMENT&&(!a.directives||((r=a.directives)===null||r===void 0?void 0:r.length)===0)){const l=a.typeCondition?a.typeCondition.name.value:null;if(!l||l===o){i.push(...__(e,a.selectionSet.selections,n));continue}}i.push(a)}return i}function a3(e,t){const n=t?new E_(t):null,r=Object.create(null);for(const a of e.definitions)a.kind===L.FRAGMENT_DEFINITION&&(r[a.name.value]=a);const o={SelectionSet(a){const l=n?n.getParentType():null;let{selections:c}=a;return c=__(r,c,l),Object.assign(Object.assign({},a),{selections:c})},FragmentDefinition(){return null}},i=Tn(e,n?$D(n,o):o);return Tn(i,{SelectionSet(a){let{selections:l}=a;return l=s3(l,c=>c.alias?c.alias.value:c.name.value),Object.assign(Object.assign({},a),{selections:l})},FragmentDefinition(){return null}})}function l3(e,t,n){if(!n||n.length<1)return;const r=n.map(o=>{var i;return(i=o.name)===null||i===void 0?void 0:i.value});if(t&&r.includes(t))return t;if(t&&e){const i=e.map(s=>{var a;return(a=s.name)===null||a===void 0?void 0:a.value}).indexOf(t);if(i!==-1&&i<r.length)return r[i]}return r[0]}function c3(e,t){return t instanceof DOMException&&(t.code===22||t.code===1014||t.name===\"QuotaExceededError\"||t.name===\"NS_ERROR_DOM_QUOTA_REACHED\")&&e.length!==0}class Xp{constructor(t){t?this.storage=t:t===null?this.storage=null:typeof window>\"u\"?this.storage=null:this.storage={getItem:window.localStorage.getItem.bind(window.localStorage),setItem:window.localStorage.setItem.bind(window.localStorage),removeItem:window.localStorage.removeItem.bind(window.localStorage),get length(){let n=0;for(const r in window.localStorage)r.indexOf(`${Cl}:`)===0&&(n+=1);return n},clear(){for(const n in window.localStorage)n.indexOf(`${Cl}:`)===0&&window.localStorage.removeItem(n)}}}get(t){if(!this.storage)return null;const n=`${Cl}:${t}`,r=this.storage.getItem(n);return r===\"null\"||r===\"undefined\"?(this.storage.removeItem(n),null):r||null}set(t,n){let r=!1,o=null;if(this.storage){const i=`${Cl}:${t}`;if(n)try{this.storage.setItem(i,n)}catch(s){o=s instanceof Error?s:new Error(`${s}`),r=c3(this.storage,s)}else this.storage.removeItem(i)}return{isQuotaError:r,error:o}}clear(){this.storage&&this.storage.clear()}}const Cl=\"graphiql\";class Hg{constructor(t,n,r=null){this.key=t,this.storage=n,this.maxSize=r,this.items=this.fetchAll()}get length(){return this.items.length}contains(t){return this.items.some(n=>n.query===t.query&&n.variables===t.variables&&n.headers===t.headers&&n.operationName===t.operationName)}edit(t,n){if(typeof n==\"number\"&&this.items[n]){const o=this.items[n];if(o.query===t.query&&o.variables===t.variables&&o.headers===t.headers&&o.operationName===t.operationName){this.items.splice(n,1,t),this.save();return}}const r=this.items.findIndex(o=>o.query===t.query&&o.variables===t.variables&&o.headers===t.headers&&o.operationName===t.operationName);r!==-1&&(this.items.splice(r,1,t),this.save())}delete(t){const n=this.items.findIndex(r=>r.query===t.query&&r.variables===t.variables&&r.headers===t.headers&&r.operationName===t.operationName);n!==-1&&(this.items.splice(n,1),this.save())}fetchRecent(){return this.items.at(-1)}fetchAll(){const t=this.storage.get(this.key);return t?JSON.parse(t)[this.key]:[]}push(t){const n=[...this.items,t];this.maxSize&&n.length>this.maxSize&&n.shift();for(let r=0;r<5;r++){const o=this.storage.set(this.key,JSON.stringify({[this.key]:n}));if(!(o!=null&&o.error))this.items=n;else if(o.isQuotaError&&this.maxSize)n.shift();else return}}save(){this.storage.set(this.key,JSON.stringify({[this.key]:this.items}))}}const u3=1e5;class f3{constructor(t,n){this.storage=t,this.maxHistoryLength=n,this.updateHistory=({query:r,variables:o,headers:i,operationName:s})=>{if(!this.shouldSaveQuery(r,o,i,this.history.fetchRecent()))return;this.history.push({query:r,variables:o,headers:i,operationName:s});const a=this.history.items,l=this.favorite.items;this.queries=a.concat(l)},this.deleteHistory=({query:r,variables:o,headers:i,operationName:s,favorite:a},l=!1)=>{function c(u){const d=u.items.find(p=>p.query===r&&p.variables===o&&p.headers===i&&p.operationName===s);d&&u.delete(d)}(a||l)&&c(this.favorite),(!a||l)&&c(this.history),this.queries=[...this.history.items,...this.favorite.items]},this.history=new Hg(\"queries\",this.storage,this.maxHistoryLength),this.favorite=new Hg(\"favorites\",this.storage,null),this.queries=[...this.history.fetchAll(),...this.favorite.fetchAll()]}shouldSaveQuery(t,n,r,o){if(!t)return!1;try{qo(t)}catch{return!1}return t.length>u3?!1:o?!(JSON.stringify(t)===JSON.stringify(o.query)&&(JSON.stringify(n)===JSON.stringify(o.variables)&&(JSON.stringify(r)===JSON.stringify(o.headers)||r&&!o.headers)||n&&!o.variables)):!0}toggleFavorite({query:t,variables:n,headers:r,operationName:o,label:i,favorite:s}){const a={query:t,variables:n,headers:r,operationName:o,label:i};s?(a.favorite=!1,this.favorite.delete(a),this.history.push(a)):(a.favorite=!0,this.favorite.push(a),this.history.delete(a)),this.queries=[...this.history.items,...this.favorite.items]}editLabel({query:t,variables:n,headers:r,operationName:o,label:i,favorite:s},a){const l={query:t,variables:n,headers:r,operationName:o,label:i};s?this.favorite.edit(Object.assign(Object.assign({},l),{favorite:s}),a):this.history.edit(l,a),this.queries=[...this.history.items,...this.favorite.items]}}const d3=\"modulepreload\",p3=function(e){return\"/graphiql/\"+e},Gg={},me=function(t,n,r){if(!n||n.length===0)return t();const o=document.getElementsByTagName(\"link\");return Promise.all(n.map(i=>{if(i=p3(i),i in Gg)return;Gg[i]=!0;const s=i.endsWith(\".css\"),a=s?'[rel=\"stylesheet\"]':\"\";if(!!r)for(let u=o.length-1;u>=0;u--){const d=o[u];if(d.href===i&&(!s||d.rel===\"stylesheet\"))return}else if(document.querySelector(`link[href=\"${i}\"]${a}`))return;const c=document.createElement(\"link\");if(c.rel=s?\"stylesheet\":d3,s||(c.as=\"script\",c.crossOrigin=\"\"),c.href=i,document.head.appendChild(c),s)return new Promise((u,d)=>{c.addEventListener(\"load\",u),c.addEventListener(\"error\",()=>d(new Error(`Unable to preload CSS for ${i}`)))})})).then(()=>t()).catch(i=>{const s=new Event(\"vite:preloadError\",{cancelable:!0});if(s.payload=i,window.dispatchEvent(s),!s.defaultPrevented)throw i})};function S_(e){var t,n,r=\"\";if(typeof e==\"string\"||typeof e==\"number\")r+=e;else if(typeof e==\"object\")if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=S_(e[t]))&&(r&&(r+=\" \"),r+=n);else for(t in e)e[t]&&(r&&(r+=\" \"),r+=t);return r}function Ke(){for(var e,t,n=0,r=\"\";n<arguments.length;)(e=arguments[n++])&&(t=S_(e))&&(r&&(r+=\" \"),r+=t);return r}function h3(e){let t;return C_(e,n=>{switch(n.kind){case\"Query\":case\"ShortQuery\":case\"Mutation\":case\"Subscription\":case\"FragmentDefinition\":t=n;break}}),t}function Wg(e,t,n){return n===ua.name&&e.getQueryType()===t?ua:n===fa.name&&e.getQueryType()===t?fa:n===da.name&&Jt(t)?da:\"getFields\"in t?t.getFields()[n]:null}function C_(e,t){const n=[];let r=e;for(;r!=null&&r.kind;)n.push(r),r=r.prevState;for(let o=n.length-1;o>=0;o--)t(n[o])}function Ro(e){const t=Object.keys(e),n=t.length,r=new Array(n);for(let o=0;o<n;++o)r[o]=e[t[o]];return r}function Re(e,t){return m3(t,T_(e.string))}function m3(e,t){if(!t)return id(e,r=>!r.isDeprecated);const n=e.map(r=>({proximity:v3(T_(r.label),t),entry:r}));return id(id(n,r=>r.proximity<=2),r=>!r.entry.isDeprecated).sort((r,o)=>(r.entry.isDeprecated?1:0)-(o.entry.isDeprecated?1:0)||r.proximity-o.proximity||r.entry.label.length-o.entry.label.length).map(r=>r.entry)}function id(e,t){const n=e.filter(t);return n.length===0?e:n}function T_(e){return e.toLowerCase().replaceAll(/\\W/g,\"\")}function v3(e,t){let n=g3(t,e);return e.length>t.length&&(n-=e.length-t.length-1,n+=e.indexOf(t)===0?0:.5),n}function g3(e,t){let n,r;const o=[],i=e.length,s=t.length;for(n=0;n<=i;n++)o[n]=[n];for(r=1;r<=s;r++)o[0][r]=r;for(n=1;n<=i;n++)for(r=1;r<=s;r++){const a=e[n-1]===t[r-1]?0:1;o[n][r]=Math.min(o[n-1][r]+1,o[n][r-1]+1,o[n-1][r-1]+a),n>1&&r>1&&e[n-1]===t[r-2]&&e[n-2]===t[r-1]&&(o[n][r]=Math.min(o[n][r],o[n-2][r-2]+a))}return o[i][s]}var Qg;(function(e){function t(n){return typeof n==\"string\"}e.is=t})(Qg||(Qg={}));var Jp;(function(e){function t(n){return typeof n==\"string\"}e.is=t})(Jp||(Jp={}));var Yg;(function(e){e.MIN_VALUE=-2147483648,e.MAX_VALUE=2147483647;function t(n){return typeof n==\"number\"&&e.MIN_VALUE<=n&&n<=e.MAX_VALUE}e.is=t})(Yg||(Yg={}));var Hc;(function(e){e.MIN_VALUE=0,e.MAX_VALUE=2147483647;function t(n){return typeof n==\"number\"&&e.MIN_VALUE<=n&&n<=e.MAX_VALUE}e.is=t})(Hc||(Hc={}));var vn;(function(e){function t(r,o){return r===Number.MAX_VALUE&&(r=Hc.MAX_VALUE),o===Number.MAX_VALUE&&(o=Hc.MAX_VALUE),{line:r,character:o}}e.create=t;function n(r){let o=r;return O.objectLiteral(o)&&O.uinteger(o.line)&&O.uinteger(o.character)}e.is=n})(vn||(vn={}));var Be;(function(e){function t(r,o,i,s){if(O.uinteger(r)&&O.uinteger(o)&&O.uinteger(i)&&O.uinteger(s))return{start:vn.create(r,o),end:vn.create(i,s)};if(vn.is(r)&&vn.is(o))return{start:r,end:o};throw new Error(`Range#create called with invalid arguments[${r}, ${o}, ${i}, ${s}]`)}e.create=t;function n(r){let o=r;return O.objectLiteral(o)&&vn.is(o.start)&&vn.is(o.end)}e.is=n})(Be||(Be={}));var Gc;(function(e){function t(r,o){return{uri:r,range:o}}e.create=t;function n(r){let o=r;return O.objectLiteral(o)&&Be.is(o.range)&&(O.string(o.uri)||O.undefined(o.uri))}e.is=n})(Gc||(Gc={}));var Zg;(function(e){function t(r,o,i,s){return{targetUri:r,targetRange:o,targetSelectionRange:i,originSelectionRange:s}}e.create=t;function n(r){let o=r;return O.objectLiteral(o)&&Be.is(o.targetRange)&&O.string(o.targetUri)&&Be.is(o.targetSelectionRange)&&(Be.is(o.originSelectionRange)||O.undefined(o.originSelectionRange))}e.is=n})(Zg||(Zg={}));var Kp;(function(e){function t(r,o,i,s){return{red:r,green:o,blue:i,alpha:s}}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&O.numberRange(o.red,0,1)&&O.numberRange(o.green,0,1)&&O.numberRange(o.blue,0,1)&&O.numberRange(o.alpha,0,1)}e.is=n})(Kp||(Kp={}));var Xg;(function(e){function t(r,o){return{range:r,color:o}}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&Be.is(o.range)&&Kp.is(o.color)}e.is=n})(Xg||(Xg={}));var Jg;(function(e){function t(r,o,i){return{label:r,textEdit:o,additionalTextEdits:i}}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&O.string(o.label)&&(O.undefined(o.textEdit)||qi.is(o))&&(O.undefined(o.additionalTextEdits)||O.typedArray(o.additionalTextEdits,qi.is))}e.is=n})(Jg||(Jg={}));var Kg;(function(e){e.Comment=\"comment\",e.Imports=\"imports\",e.Region=\"region\"})(Kg||(Kg={}));var ey;(function(e){function t(r,o,i,s,a,l){const c={startLine:r,endLine:o};return O.defined(i)&&(c.startCharacter=i),O.defined(s)&&(c.endCharacter=s),O.defined(a)&&(c.kind=a),O.defined(l)&&(c.collapsedText=l),c}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&O.uinteger(o.startLine)&&O.uinteger(o.startLine)&&(O.undefined(o.startCharacter)||O.uinteger(o.startCharacter))&&(O.undefined(o.endCharacter)||O.uinteger(o.endCharacter))&&(O.undefined(o.kind)||O.string(o.kind))}e.is=n})(ey||(ey={}));var eh;(function(e){function t(r,o){return{location:r,message:o}}e.create=t;function n(r){let o=r;return O.defined(o)&&Gc.is(o.location)&&O.string(o.message)}e.is=n})(eh||(eh={}));var ty;(function(e){e.Error=1,e.Warning=2,e.Information=3,e.Hint=4})(ty||(ty={}));var ny;(function(e){e.Unnecessary=1,e.Deprecated=2})(ny||(ny={}));var ry;(function(e){function t(n){const r=n;return O.objectLiteral(r)&&O.string(r.href)}e.is=t})(ry||(ry={}));var Wc;(function(e){function t(r,o,i,s,a,l){let c={range:r,message:o};return O.defined(i)&&(c.severity=i),O.defined(s)&&(c.code=s),O.defined(a)&&(c.source=a),O.defined(l)&&(c.relatedInformation=l),c}e.create=t;function n(r){var o;let i=r;return O.defined(i)&&Be.is(i.range)&&O.string(i.message)&&(O.number(i.severity)||O.undefined(i.severity))&&(O.integer(i.code)||O.string(i.code)||O.undefined(i.code))&&(O.undefined(i.codeDescription)||O.string((o=i.codeDescription)===null||o===void 0?void 0:o.href))&&(O.string(i.source)||O.undefined(i.source))&&(O.undefined(i.relatedInformation)||O.typedArray(i.relatedInformation,eh.is))}e.is=n})(Wc||(Wc={}));var ji;(function(e){function t(r,o,...i){let s={title:r,command:o};return O.defined(i)&&i.length>0&&(s.arguments=i),s}e.create=t;function n(r){let o=r;return O.defined(o)&&O.string(o.title)&&O.string(o.command)}e.is=n})(ji||(ji={}));var qi;(function(e){function t(i,s){return{range:i,newText:s}}e.replace=t;function n(i,s){return{range:{start:i,end:i},newText:s}}e.insert=n;function r(i){return{range:i,newText:\"\"}}e.del=r;function o(i){const s=i;return O.objectLiteral(s)&&O.string(s.newText)&&Be.is(s.range)}e.is=o})(qi||(qi={}));var th;(function(e){function t(r,o,i){const s={label:r};return o!==void 0&&(s.needsConfirmation=o),i!==void 0&&(s.description=i),s}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&O.string(o.label)&&(O.boolean(o.needsConfirmation)||o.needsConfirmation===void 0)&&(O.string(o.description)||o.description===void 0)}e.is=n})(th||(th={}));var Ui;(function(e){function t(n){const r=n;return O.string(r)}e.is=t})(Ui||(Ui={}));var oy;(function(e){function t(i,s,a){return{range:i,newText:s,annotationId:a}}e.replace=t;function n(i,s,a){return{range:{start:i,end:i},newText:s,annotationId:a}}e.insert=n;function r(i,s){return{range:i,newText:\"\",annotationId:s}}e.del=r;function o(i){const s=i;return qi.is(s)&&(th.is(s.annotationId)||Ui.is(s.annotationId))}e.is=o})(oy||(oy={}));var nh;(function(e){function t(r,o){return{textDocument:r,edits:o}}e.create=t;function n(r){let o=r;return O.defined(o)&&ah.is(o.textDocument)&&Array.isArray(o.edits)}e.is=n})(nh||(nh={}));var rh;(function(e){function t(r,o,i){let s={kind:\"create\",uri:r};return o!==void 0&&(o.overwrite!==void 0||o.ignoreIfExists!==void 0)&&(s.options=o),i!==void 0&&(s.annotationId=i),s}e.create=t;function n(r){let o=r;return o&&o.kind===\"create\"&&O.string(o.uri)&&(o.options===void 0||(o.options.overwrite===void 0||O.boolean(o.options.overwrite))&&(o.options.ignoreIfExists===void 0||O.boolean(o.options.ignoreIfExists)))&&(o.annotationId===void 0||Ui.is(o.annotationId))}e.is=n})(rh||(rh={}));var oh;(function(e){function t(r,o,i,s){let a={kind:\"rename\",oldUri:r,newUri:o};return i!==void 0&&(i.overwrite!==void 0||i.ignoreIfExists!==void 0)&&(a.options=i),s!==void 0&&(a.annotationId=s),a}e.create=t;function n(r){let o=r;return o&&o.kind===\"rename\"&&O.string(o.oldUri)&&O.string(o.newUri)&&(o.options===void 0||(o.options.overwrite===void 0||O.boolean(o.options.overwrite))&&(o.options.ignoreIfExists===void 0||O.boolean(o.options.ignoreIfExists)))&&(o.annotationId===void 0||Ui.is(o.annotationId))}e.is=n})(oh||(oh={}));var ih;(function(e){function t(r,o,i){let s={kind:\"delete\",uri:r};return o!==void 0&&(o.recursive!==void 0||o.ignoreIfNotExists!==void 0)&&(s.options=o),i!==void 0&&(s.annotationId=i),s}e.create=t;function n(r){let o=r;return o&&o.kind===\"delete\"&&O.string(o.uri)&&(o.options===void 0||(o.options.recursive===void 0||O.boolean(o.options.recursive))&&(o.options.ignoreIfNotExists===void 0||O.boolean(o.options.ignoreIfNotExists)))&&(o.annotationId===void 0||Ui.is(o.annotationId))}e.is=n})(ih||(ih={}));var sh;(function(e){function t(n){let r=n;return r&&(r.changes!==void 0||r.documentChanges!==void 0)&&(r.documentChanges===void 0||r.documentChanges.every(o=>O.string(o.kind)?rh.is(o)||oh.is(o)||ih.is(o):nh.is(o)))}e.is=t})(sh||(sh={}));var iy;(function(e){function t(r){return{uri:r}}e.create=t;function n(r){let o=r;return O.defined(o)&&O.string(o.uri)}e.is=n})(iy||(iy={}));var sy;(function(e){function t(r,o){return{uri:r,version:o}}e.create=t;function n(r){let o=r;return O.defined(o)&&O.string(o.uri)&&O.integer(o.version)}e.is=n})(sy||(sy={}));var ah;(function(e){function t(r,o){return{uri:r,version:o}}e.create=t;function n(r){let o=r;return O.defined(o)&&O.string(o.uri)&&(o.version===null||O.integer(o.version))}e.is=n})(ah||(ah={}));var ay;(function(e){function t(r,o,i,s){return{uri:r,languageId:o,version:i,text:s}}e.create=t;function n(r){let o=r;return O.defined(o)&&O.string(o.uri)&&O.string(o.languageId)&&O.integer(o.version)&&O.string(o.text)}e.is=n})(ay||(ay={}));var lh;(function(e){e.PlainText=\"plaintext\",e.Markdown=\"markdown\";function t(n){const r=n;return r===e.PlainText||r===e.Markdown}e.is=t})(lh||(lh={}));var ma;(function(e){function t(n){const r=n;return O.objectLiteral(n)&&lh.is(r.kind)&&O.string(r.value)}e.is=t})(ma||(ma={}));var ly;(function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25})(ly||(ly={}));var ch;(function(e){e.PlainText=1,e.Snippet=2})(ch||(ch={}));var cy;(function(e){e.Deprecated=1})(cy||(cy={}));var uy;(function(e){function t(r,o,i){return{newText:r,insert:o,replace:i}}e.create=t;function n(r){const o=r;return o&&O.string(o.newText)&&Be.is(o.insert)&&Be.is(o.replace)}e.is=n})(uy||(uy={}));var fy;(function(e){e.asIs=1,e.adjustIndentation=2})(fy||(fy={}));var dy;(function(e){function t(n){const r=n;return r&&(O.string(r.detail)||r.detail===void 0)&&(O.string(r.description)||r.description===void 0)}e.is=t})(dy||(dy={}));var py;(function(e){function t(n){return{label:n}}e.create=t})(py||(py={}));var hy;(function(e){function t(n,r){return{items:n||[],isIncomplete:!!r}}e.create=t})(hy||(hy={}));var Qc;(function(e){function t(r){return r.replace(/[\\\\`*_{}[\\]()#+\\-.!]/g,\"\\\\$&\")}e.fromPlainText=t;function n(r){const o=r;return O.string(o)||O.objectLiteral(o)&&O.string(o.language)&&O.string(o.value)}e.is=n})(Qc||(Qc={}));var my;(function(e){function t(n){let r=n;return!!r&&O.objectLiteral(r)&&(ma.is(r.contents)||Qc.is(r.contents)||O.typedArray(r.contents,Qc.is))&&(n.range===void 0||Be.is(n.range))}e.is=t})(my||(my={}));var vy;(function(e){function t(n,r){return r?{label:n,documentation:r}:{label:n}}e.create=t})(vy||(vy={}));var gy;(function(e){function t(n,r,...o){let i={label:n};return O.defined(r)&&(i.documentation=r),O.defined(o)?i.parameters=o:i.parameters=[],i}e.create=t})(gy||(gy={}));var yy;(function(e){e.Text=1,e.Read=2,e.Write=3})(yy||(yy={}));var Ey;(function(e){function t(n,r){let o={range:n};return O.number(r)&&(o.kind=r),o}e.create=t})(Ey||(Ey={}));var by;(function(e){e.File=1,e.Module=2,e.Namespace=3,e.Package=4,e.Class=5,e.Method=6,e.Property=7,e.Field=8,e.Constructor=9,e.Enum=10,e.Interface=11,e.Function=12,e.Variable=13,e.Constant=14,e.String=15,e.Number=16,e.Boolean=17,e.Array=18,e.Object=19,e.Key=20,e.Null=21,e.EnumMember=22,e.Struct=23,e.Event=24,e.Operator=25,e.TypeParameter=26})(by||(by={}));var xy;(function(e){e.Deprecated=1})(xy||(xy={}));var wy;(function(e){function t(n,r,o,i,s){let a={name:n,kind:r,location:{uri:i,range:o}};return s&&(a.containerName=s),a}e.create=t})(wy||(wy={}));var _y;(function(e){function t(n,r,o,i){return i!==void 0?{name:n,kind:r,location:{uri:o,range:i}}:{name:n,kind:r,location:{uri:o}}}e.create=t})(_y||(_y={}));var Sy;(function(e){function t(r,o,i,s,a,l){let c={name:r,detail:o,kind:i,range:s,selectionRange:a};return l!==void 0&&(c.children=l),c}e.create=t;function n(r){let o=r;return o&&O.string(o.name)&&O.number(o.kind)&&Be.is(o.range)&&Be.is(o.selectionRange)&&(o.detail===void 0||O.string(o.detail))&&(o.deprecated===void 0||O.boolean(o.deprecated))&&(o.children===void 0||Array.isArray(o.children))&&(o.tags===void 0||Array.isArray(o.tags))}e.is=n})(Sy||(Sy={}));var Cy;(function(e){e.Empty=\"\",e.QuickFix=\"quickfix\",e.Refactor=\"refactor\",e.RefactorExtract=\"refactor.extract\",e.RefactorInline=\"refactor.inline\",e.RefactorRewrite=\"refactor.rewrite\",e.Source=\"source\",e.SourceOrganizeImports=\"source.organizeImports\",e.SourceFixAll=\"source.fixAll\"})(Cy||(Cy={}));var Yc;(function(e){e.Invoked=1,e.Automatic=2})(Yc||(Yc={}));var Ty;(function(e){function t(r,o,i){let s={diagnostics:r};return o!=null&&(s.only=o),i!=null&&(s.triggerKind=i),s}e.create=t;function n(r){let o=r;return O.defined(o)&&O.typedArray(o.diagnostics,Wc.is)&&(o.only===void 0||O.typedArray(o.only,O.string))&&(o.triggerKind===void 0||o.triggerKind===Yc.Invoked||o.triggerKind===Yc.Automatic)}e.is=n})(Ty||(Ty={}));var ky;(function(e){function t(r,o,i){let s={title:r},a=!0;return typeof o==\"string\"?(a=!1,s.kind=o):ji.is(o)?s.command=o:s.edit=o,a&&i!==void 0&&(s.kind=i),s}e.create=t;function n(r){let o=r;return o&&O.string(o.title)&&(o.diagnostics===void 0||O.typedArray(o.diagnostics,Wc.is))&&(o.kind===void 0||O.string(o.kind))&&(o.edit!==void 0||o.command!==void 0)&&(o.command===void 0||ji.is(o.command))&&(o.isPreferred===void 0||O.boolean(o.isPreferred))&&(o.edit===void 0||sh.is(o.edit))}e.is=n})(ky||(ky={}));var Ny;(function(e){function t(r,o){let i={range:r};return O.defined(o)&&(i.data=o),i}e.create=t;function n(r){let o=r;return O.defined(o)&&Be.is(o.range)&&(O.undefined(o.command)||ji.is(o.command))}e.is=n})(Ny||(Ny={}));var Ay;(function(e){function t(r,o){return{tabSize:r,insertSpaces:o}}e.create=t;function n(r){let o=r;return O.defined(o)&&O.uinteger(o.tabSize)&&O.boolean(o.insertSpaces)}e.is=n})(Ay||(Ay={}));var Dy;(function(e){function t(r,o,i){return{range:r,target:o,data:i}}e.create=t;function n(r){let o=r;return O.defined(o)&&Be.is(o.range)&&(O.undefined(o.target)||O.string(o.target))}e.is=n})(Dy||(Dy={}));var Iy;(function(e){function t(r,o){return{range:r,parent:o}}e.create=t;function n(r){let o=r;return O.objectLiteral(o)&&Be.is(o.range)&&(o.parent===void 0||e.is(o.parent))}e.is=n})(Iy||(Iy={}));var Ry;(function(e){e.namespace=\"namespace\",e.type=\"type\",e.class=\"class\",e.enum=\"enum\",e.interface=\"interface\",e.struct=\"struct\",e.typeParameter=\"typeParameter\",e.parameter=\"parameter\",e.variable=\"variable\",e.property=\"property\",e.enumMember=\"enumMember\",e.event=\"event\",e.function=\"function\",e.method=\"method\",e.macro=\"macro\",e.keyword=\"keyword\",e.modifier=\"modifier\",e.comment=\"comment\",e.string=\"string\",e.number=\"number\",e.regexp=\"regexp\",e.operator=\"operator\",e.decorator=\"decorator\"})(Ry||(Ry={}));var Ly;(function(e){e.declaration=\"declaration\",e.definition=\"definition\",e.readonly=\"readonly\",e.static=\"static\",e.deprecated=\"deprecated\",e.abstract=\"abstract\",e.async=\"async\",e.modification=\"modification\",e.documentation=\"documentation\",e.defaultLibrary=\"defaultLibrary\"})(Ly||(Ly={}));var Oy;(function(e){function t(n){const r=n;return O.objectLiteral(r)&&(r.resultId===void 0||typeof r.resultId==\"string\")&&Array.isArray(r.data)&&(r.data.length===0||typeof r.data[0]==\"number\")}e.is=t})(Oy||(Oy={}));var Py;(function(e){function t(r,o){return{range:r,text:o}}e.create=t;function n(r){const o=r;return o!=null&&Be.is(o.range)&&O.string(o.text)}e.is=n})(Py||(Py={}));var $y;(function(e){function t(r,o,i){return{range:r,variableName:o,caseSensitiveLookup:i}}e.create=t;function n(r){const o=r;return o!=null&&Be.is(o.range)&&O.boolean(o.caseSensitiveLookup)&&(O.string(o.variableName)||o.variableName===void 0)}e.is=n})($y||($y={}));var Fy;(function(e){function t(r,o){return{range:r,expression:o}}e.create=t;function n(r){const o=r;return o!=null&&Be.is(o.range)&&(O.string(o.expression)||o.expression===void 0)}e.is=n})(Fy||(Fy={}));var My;(function(e){function t(r,o){return{frameId:r,stoppedLocation:o}}e.create=t;function n(r){const o=r;return O.defined(o)&&Be.is(r.stoppedLocation)}e.is=n})(My||(My={}));var uh;(function(e){e.Type=1,e.Parameter=2;function t(n){return n===1||n===2}e.is=t})(uh||(uh={}));var fh;(function(e){function t(r){return{value:r}}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&(o.tooltip===void 0||O.string(o.tooltip)||ma.is(o.tooltip))&&(o.location===void 0||Gc.is(o.location))&&(o.command===void 0||ji.is(o.command))}e.is=n})(fh||(fh={}));var Vy;(function(e){function t(r,o,i){const s={position:r,label:o};return i!==void 0&&(s.kind=i),s}e.create=t;function n(r){const o=r;return O.objectLiteral(o)&&vn.is(o.position)&&(O.string(o.label)||O.typedArray(o.label,fh.is))&&(o.kind===void 0||uh.is(o.kind))&&o.textEdits===void 0||O.typedArray(o.textEdits,qi.is)&&(o.tooltip===void 0||O.string(o.tooltip)||ma.is(o.tooltip))&&(o.paddingLeft===void 0||O.boolean(o.paddingLeft))&&(o.paddingRight===void 0||O.boolean(o.paddingRight))}e.is=n})(Vy||(Vy={}));var jy;(function(e){function t(n){return{kind:\"snippet\",value:n}}e.createSnippet=t})(jy||(jy={}));var qy;(function(e){function t(n,r,o,i){return{insertText:n,filterText:r,range:o,command:i}}e.create=t})(qy||(qy={}));var Uy;(function(e){function t(n){return{items:n}}e.create=t})(Uy||(Uy={}));var By;(function(e){e.Invoked=0,e.Automatic=1})(By||(By={}));var zy;(function(e){function t(n,r){return{range:n,text:r}}e.create=t})(zy||(zy={}));var Hy;(function(e){function t(n,r){return{triggerKind:n,selectedCompletionInfo:r}}e.create=t})(Hy||(Hy={}));var Gy;(function(e){function t(n){const r=n;return O.objectLiteral(r)&&Jp.is(r.uri)&&O.string(r.name)}e.is=t})(Gy||(Gy={}));var Wy;(function(e){function t(i,s,a,l){return new y3(i,s,a,l)}e.create=t;function n(i){let s=i;return!!(O.defined(s)&&O.string(s.uri)&&(O.undefined(s.languageId)||O.string(s.languageId))&&O.uinteger(s.lineCount)&&O.func(s.getText)&&O.func(s.positionAt)&&O.func(s.offsetAt))}e.is=n;function r(i,s){let a=i.getText(),l=o(s,(u,d)=>{let p=u.range.start.line-d.range.start.line;return p===0?u.range.start.character-d.range.start.character:p}),c=a.length;for(let u=l.length-1;u>=0;u--){let d=l[u],p=i.offsetAt(d.range.start),f=i.offsetAt(d.range.end);if(f<=c)a=a.substring(0,p)+d.newText+a.substring(f,a.length);else throw new Error(\"Overlapping edit\");c=p}return a}e.applyEdits=r;function o(i,s){if(i.length<=1)return i;const a=i.length/2|0,l=i.slice(0,a),c=i.slice(a);o(l,s),o(c,s);let u=0,d=0,p=0;for(;u<l.length&&d<c.length;)s(l[u],c[d])<=0?i[p++]=l[u++]:i[p++]=c[d++];for(;u<l.length;)i[p++]=l[u++];for(;d<c.length;)i[p++]=c[d++];return i}})(Wy||(Wy={}));class y3{constructor(t,n,r,o){this._uri=t,this._languageId=n,this._version=r,this._content=o,this._lineOffsets=void 0}get uri(){return this._uri}get languageId(){return this._languageId}get version(){return this._version}getText(t){if(t){let n=this.offsetAt(t.start),r=this.offsetAt(t.end);return this._content.substring(n,r)}return this._content}update(t,n){this._content=t.text,this._version=n,this._lineOffsets=void 0}getLineOffsets(){if(this._lineOffsets===void 0){let t=[],n=this._content,r=!0;for(let o=0;o<n.length;o++){r&&(t.push(o),r=!1);let i=n.charAt(o);r=i===\"\\r\"||i===`\n`,i===\"\\r\"&&o+1<n.length&&n.charAt(o+1)===`\n`&&o++}r&&n.length>0&&t.push(n.length),this._lineOffsets=t}return this._lineOffsets}positionAt(t){t=Math.max(Math.min(t,this._content.length),0);let n=this.getLineOffsets(),r=0,o=n.length;if(o===0)return vn.create(0,t);for(;r<o;){let s=Math.floor((r+o)/2);n[s]>t?o=s:r=s+1}let i=r-1;return vn.create(i,t-n[i])}offsetAt(t){let n=this.getLineOffsets();if(t.line>=n.length)return this._content.length;if(t.line<0)return 0;let r=n[t.line],o=t.line+1<n.length?n[t.line+1]:this._content.length;return Math.max(Math.min(r+t.character,o),r)}get lineCount(){return this.getLineOffsets().length}}var O;(function(e){const t=Object.prototype.toString;function n(f){return typeof f<\"u\"}e.defined=n;function r(f){return typeof f>\"u\"}e.undefined=r;function o(f){return f===!0||f===!1}e.boolean=o;function i(f){return t.call(f)===\"[object String]\"}e.string=i;function s(f){return t.call(f)===\"[object Number]\"}e.number=s;function a(f,m,v){return t.call(f)===\"[object Number]\"&&m<=f&&f<=v}e.numberRange=a;function l(f){return t.call(f)===\"[object Number]\"&&-2147483648<=f&&f<=2147483647}e.integer=l;function c(f){return t.call(f)===\"[object Number]\"&&0<=f&&f<=2147483647}e.uinteger=c;function u(f){return t.call(f)===\"[object Function]\"}e.func=u;function d(f){return f!==null&&typeof f==\"object\"}e.objectLiteral=d;function p(f,m){return Array.isArray(f)&&f.every(m)}e.typedArray=p})(O||(O={}));var se;(function(e){e.Text=1,e.Method=2,e.Function=3,e.Constructor=4,e.Field=5,e.Variable=6,e.Class=7,e.Interface=8,e.Module=9,e.Property=10,e.Unit=11,e.Value=12,e.Enum=13,e.Keyword=14,e.Snippet=15,e.Color=16,e.File=17,e.Reference=18,e.Folder=19,e.EnumMember=20,e.Constant=21,e.Struct=22,e.Event=23,e.Operator=24,e.TypeParameter=25})(se||(se={}));class Qy{constructor(t){this._start=0,this._pos=0,this.getStartOfToken=()=>this._start,this.getCurrentPosition=()=>this._pos,this.eol=()=>this._sourceText.length===this._pos,this.sol=()=>this._pos===0,this.peek=()=>this._sourceText.charAt(this._pos)||null,this.next=()=>{const n=this._sourceText.charAt(this._pos);return this._pos++,n},this.eat=n=>{if(this._testNextCharacter(n))return this._start=this._pos,this._pos++,this._sourceText.charAt(this._pos-1)},this.eatWhile=n=>{let r=this._testNextCharacter(n),o=!1;for(r&&(o=r,this._start=this._pos);r;)this._pos++,r=this._testNextCharacter(n),o=!0;return o},this.eatSpace=()=>this.eatWhile(/[\\s\\u00a0]/),this.skipToEnd=()=>{this._pos=this._sourceText.length},this.skipTo=n=>{this._pos=n},this.match=(n,r=!0,o=!1)=>{let i=null,s=null;return typeof n==\"string\"?(s=new RegExp(n,o?\"i\":\"g\").test(this._sourceText.slice(this._pos,this._pos+n.length)),i=n):n instanceof RegExp&&(s=this._sourceText.slice(this._pos).match(n),i=s==null?void 0:s[0]),s!=null&&(typeof n==\"string\"||s instanceof Array&&this._sourceText.startsWith(s[0],this._pos))?(r&&(this._start=this._pos,i&&i.length&&(this._pos+=i.length)),s):!1},this.backUp=n=>{this._pos-=n},this.column=()=>this._pos,this.indentation=()=>{const n=this._sourceText.match(/\\s*/);let r=0;if(n&&n.length!==0){const o=n[0];let i=0;for(;o.length>i;)o.charCodeAt(i)===9?r+=2:r++,i++}return r},this.current=()=>this._sourceText.slice(this._start,this._pos),this._sourceText=t}_testNextCharacter(t){const n=this._sourceText.charAt(this._pos);let r=!1;return typeof t==\"string\"?r=n===t:r=t instanceof RegExp?t.test(n):t(n),r}}function Me(e){return{ofRule:e}}function de(e,t){return{ofRule:e,isList:!0,separator:t}}function E3(e,t){const n=e.match;return e.match=r=>{let o=!1;return n&&(o=n(r)),o&&t.every(i=>i.match&&!i.match(r))},e}function sd(e,t){return{style:t,match:n=>n.kind===e}}function ie(e,t){return{style:t||\"punctuation\",match:n=>n.kind===\"Punctuation\"&&n.value===e}}const b3=e=>e===\" \"||e===\"\t\"||e===\",\"||e===`\n`||e===\"\\r\"||e===\"\\uFEFF\"||e===\" \",x3={Name:/^[_A-Za-z][_0-9A-Za-z]*/,Punctuation:/^(?:!|\\$|\\(|\\)|\\.\\.\\.|:|=|&|@|\\[|]|\\{|\\||\\})/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^(?:\"\"\"(?:\\\\\"\"\"|[^\"]|\"[^\"]|\"\"[^\"])*(?:\"\"\")?|\"(?:[^\"\\\\]|\\\\(?:\"|\\/|\\\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*\"?)/,Comment:/^#.*/},w3={Document:[de(\"Definition\")],Definition(e){switch(e.value){case\"{\":return\"ShortQuery\";case\"query\":return\"Query\";case\"mutation\":return\"Mutation\";case\"subscription\":return\"Subscription\";case\"fragment\":return L.FRAGMENT_DEFINITION;case\"schema\":return\"SchemaDef\";case\"scalar\":return\"ScalarDef\";case\"type\":return\"ObjectTypeDef\";case\"interface\":return\"InterfaceDef\";case\"union\":return\"UnionDef\";case\"enum\":return\"EnumDef\";case\"input\":return\"InputDef\";case\"extend\":return\"ExtendDef\";case\"directive\":return\"DirectiveDef\"}},ShortQuery:[\"SelectionSet\"],Query:[tt(\"query\"),Me(_e(\"def\")),Me(\"VariableDefinitions\"),de(\"Directive\"),\"SelectionSet\"],Mutation:[tt(\"mutation\"),Me(_e(\"def\")),Me(\"VariableDefinitions\"),de(\"Directive\"),\"SelectionSet\"],Subscription:[tt(\"subscription\"),Me(_e(\"def\")),Me(\"VariableDefinitions\"),de(\"Directive\"),\"SelectionSet\"],VariableDefinitions:[ie(\"(\"),de(\"VariableDefinition\"),ie(\")\")],VariableDefinition:[\"Variable\",ie(\":\"),\"Type\",Me(\"DefaultValue\")],Variable:[ie(\"$\",\"variable\"),_e(\"variable\")],DefaultValue:[ie(\"=\"),\"Value\"],SelectionSet:[ie(\"{\"),de(\"Selection\"),ie(\"}\")],Selection(e,t){return e.value===\"...\"?t.match(/[\\s\\u00a0,]*(on\\b|@|{)/,!1)?\"InlineFragment\":\"FragmentSpread\":t.match(/[\\s\\u00a0,]*:/,!1)?\"AliasedField\":\"Field\"},AliasedField:[_e(\"property\"),ie(\":\"),_e(\"qualifier\"),Me(\"Arguments\"),de(\"Directive\"),Me(\"SelectionSet\")],Field:[_e(\"property\"),Me(\"Arguments\"),de(\"Directive\"),Me(\"SelectionSet\")],Arguments:[ie(\"(\"),de(\"Argument\"),ie(\")\")],Argument:[_e(\"attribute\"),ie(\":\"),\"Value\"],FragmentSpread:[ie(\"...\"),_e(\"def\"),de(\"Directive\")],InlineFragment:[ie(\"...\"),Me(\"TypeCondition\"),de(\"Directive\"),\"SelectionSet\"],FragmentDefinition:[tt(\"fragment\"),Me(E3(_e(\"def\"),[tt(\"on\")])),\"TypeCondition\",de(\"Directive\"),\"SelectionSet\"],TypeCondition:[tt(\"on\"),\"NamedType\"],Value(e){switch(e.kind){case\"Number\":return\"NumberValue\";case\"String\":return\"StringValue\";case\"Punctuation\":switch(e.value){case\"[\":return\"ListValue\";case\"{\":return\"ObjectValue\";case\"$\":return\"Variable\";case\"&\":return\"NamedType\"}return null;case\"Name\":switch(e.value){case\"true\":case\"false\":return\"BooleanValue\"}return e.value===\"null\"?\"NullValue\":\"EnumValue\"}},NumberValue:[sd(\"Number\",\"number\")],StringValue:[{style:\"string\",match:e=>e.kind===\"String\",update(e,t){t.value.startsWith('\"\"\"')&&(e.inBlockstring=!t.value.slice(3).endsWith('\"\"\"'))}}],BooleanValue:[sd(\"Name\",\"builtin\")],NullValue:[sd(\"Name\",\"keyword\")],EnumValue:[_e(\"string-2\")],ListValue:[ie(\"[\"),de(\"Value\"),ie(\"]\")],ObjectValue:[ie(\"{\"),de(\"ObjectField\"),ie(\"}\")],ObjectField:[_e(\"attribute\"),ie(\":\"),\"Value\"],Type(e){return e.value===\"[\"?\"ListType\":\"NonNullType\"},ListType:[ie(\"[\"),\"Type\",ie(\"]\"),Me(ie(\"!\"))],NonNullType:[\"NamedType\",Me(ie(\"!\"))],NamedType:[_3(\"atom\")],Directive:[ie(\"@\",\"meta\"),_e(\"meta\"),Me(\"Arguments\")],DirectiveDef:[tt(\"directive\"),ie(\"@\",\"meta\"),_e(\"meta\"),Me(\"ArgumentsDef\"),tt(\"on\"),de(\"DirectiveLocation\",ie(\"|\"))],InterfaceDef:[tt(\"interface\"),_e(\"atom\"),Me(\"Implements\"),de(\"Directive\"),ie(\"{\"),de(\"FieldDef\"),ie(\"}\")],Implements:[tt(\"implements\"),de(\"NamedType\",ie(\"&\"))],DirectiveLocation:[_e(\"string-2\")],SchemaDef:[tt(\"schema\"),de(\"Directive\"),ie(\"{\"),de(\"OperationTypeDef\"),ie(\"}\")],OperationTypeDef:[_e(\"keyword\"),ie(\":\"),_e(\"atom\")],ScalarDef:[tt(\"scalar\"),_e(\"atom\"),de(\"Directive\")],ObjectTypeDef:[tt(\"type\"),_e(\"atom\"),Me(\"Implements\"),de(\"Directive\"),ie(\"{\"),de(\"FieldDef\"),ie(\"}\")],FieldDef:[_e(\"property\"),Me(\"ArgumentsDef\"),ie(\":\"),\"Type\",de(\"Directive\")],ArgumentsDef:[ie(\"(\"),de(\"InputValueDef\"),ie(\")\")],InputValueDef:[_e(\"attribute\"),ie(\":\"),\"Type\",Me(\"DefaultValue\"),de(\"Directive\")],UnionDef:[tt(\"union\"),_e(\"atom\"),de(\"Directive\"),ie(\"=\"),de(\"UnionMember\",ie(\"|\"))],UnionMember:[\"NamedType\"],EnumDef:[tt(\"enum\"),_e(\"atom\"),de(\"Directive\"),ie(\"{\"),de(\"EnumValueDef\"),ie(\"}\")],EnumValueDef:[_e(\"string-2\"),de(\"Directive\")],InputDef:[tt(\"input\"),_e(\"atom\"),de(\"Directive\"),ie(\"{\"),de(\"InputValueDef\"),ie(\"}\")],ExtendDef:[tt(\"extend\"),\"ExtensionDefinition\"],ExtensionDefinition(e){switch(e.value){case\"schema\":return L.SCHEMA_EXTENSION;case\"scalar\":return L.SCALAR_TYPE_EXTENSION;case\"type\":return L.OBJECT_TYPE_EXTENSION;case\"interface\":return L.INTERFACE_TYPE_EXTENSION;case\"union\":return L.UNION_TYPE_EXTENSION;case\"enum\":return L.ENUM_TYPE_EXTENSION;case\"input\":return L.INPUT_OBJECT_TYPE_EXTENSION}},[L.SCHEMA_EXTENSION]:[\"SchemaDef\"],[L.SCALAR_TYPE_EXTENSION]:[\"ScalarDef\"],[L.OBJECT_TYPE_EXTENSION]:[\"ObjectTypeDef\"],[L.INTERFACE_TYPE_EXTENSION]:[\"InterfaceDef\"],[L.UNION_TYPE_EXTENSION]:[\"UnionDef\"],[L.ENUM_TYPE_EXTENSION]:[\"EnumDef\"],[L.INPUT_OBJECT_TYPE_EXTENSION]:[\"InputDef\"]};function tt(e){return{style:\"keyword\",match:t=>t.kind===\"Name\"&&t.value===e}}function _e(e){return{style:e,match:t=>t.kind===\"Name\",update(t,n){t.name=n.value}}}function _3(e){return{style:e,match:t=>t.kind===\"Name\",update(t,n){var r;!((r=t.prevState)===null||r===void 0)&&r.prevState&&(t.name=n.value,t.prevState.prevState.type=n.value)}}}function S3(e={eatWhitespace:t=>t.eatWhile(b3),lexRules:x3,parseRules:w3,editorConfig:{}}){return{startState(){const t={level:0,step:0,name:null,kind:null,type:null,rule:null,needsSeparator:!1,prevState:null};return Ts(e.parseRules,t,L.DOCUMENT),t},token(t,n){return C3(t,n,e)}}}function C3(e,t,n){var r;if(t.inBlockstring)return e.match(/.*\"\"\"/)?(t.inBlockstring=!1,\"string\"):(e.skipToEnd(),\"string\");const{lexRules:o,parseRules:i,eatWhitespace:s,editorConfig:a}=n;if(t.rule&&t.rule.length===0?tv(t):t.needsAdvance&&(t.needsAdvance=!1,dh(t,!0)),e.sol()){const u=(a==null?void 0:a.tabSize)||2;t.indentLevel=Math.floor(e.indentation()/u)}if(s(e))return\"ws\";const l=k3(o,e);if(!l)return e.match(/\\S+/)||e.match(/\\s/),Ts(ad,t,\"Invalid\"),\"invalidchar\";if(l.kind===\"Comment\")return Ts(ad,t,\"Comment\"),\"comment\";const c=Yy({},t);if(l.kind===\"Punctuation\"){if(/^[{([]/.test(l.value))t.indentLevel!==void 0&&(t.levels=(t.levels||[]).concat(t.indentLevel+1));else if(/^[})\\]]/.test(l.value)){const u=t.levels=(t.levels||[]).slice(0,-1);t.indentLevel&&u.length>0&&u.at(-1)<t.indentLevel&&(t.indentLevel=u.at(-1))}}for(;t.rule;){let u=typeof t.rule==\"function\"?t.step===0?t.rule(l,e):null:t.rule[t.step];if(t.needsSeparator&&(u=u==null?void 0:u.separator),u){if(u.ofRule&&(u=u.ofRule),typeof u==\"string\"){Ts(i,t,u);continue}if(!((r=u.match)===null||r===void 0)&&r.call(u,l))return u.update&&u.update(t,l),l.kind===\"Punctuation\"?dh(t,!0):t.needsAdvance=!0,u.style}T3(t)}return Yy(t,c),Ts(ad,t,\"Invalid\"),\"invalidchar\"}function Yy(e,t){const n=Object.keys(t);for(let r=0;r<n.length;r++)e[n[r]]=t[n[r]];return e}const ad={Invalid:[],Comment:[]};function Ts(e,t,n){if(!e[n])throw new TypeError(\"Unknown rule: \"+n);t.prevState=Object.assign({},t),t.kind=n,t.name=null,t.type=null,t.rule=e[n],t.step=0,t.needsSeparator=!1}function tv(e){e.prevState&&(e.kind=e.prevState.kind,e.name=e.prevState.name,e.type=e.prevState.type,e.rule=e.prevState.rule,e.step=e.prevState.step,e.needsSeparator=e.prevState.needsSeparator,e.prevState=e.prevState.prevState)}function dh(e,t){var n;if(Zy(e)&&e.rule){const r=e.rule[e.step];if(r.separator){const{separator:o}=r;if(e.needsSeparator=!e.needsSeparator,!e.needsSeparator&&o.ofRule)return}if(t)return}for(e.needsSeparator=!1,e.step++;e.rule&&!(Array.isArray(e.rule)&&e.step<e.rule.length);)tv(e),e.rule&&(Zy(e)?!((n=e.rule)===null||n===void 0)&&n[e.step].separator&&(e.needsSeparator=!e.needsSeparator):(e.needsSeparator=!1,e.step++))}function Zy(e){const t=Array.isArray(e.rule)&&typeof e.rule[e.step]!=\"string\"&&e.rule[e.step];return t&&t.isList}function T3(e){for(;e.rule&&!(Array.isArray(e.rule)&&e.rule[e.step].ofRule);)tv(e);e.rule&&dh(e,!1)}function k3(e,t){const n=Object.keys(e);for(let r=0;r<n.length;r++){const o=t.match(e[n[r]]);if(o&&o instanceof Array)return{kind:n[r],value:o[0]}}}const N3={ALIASED_FIELD:\"AliasedField\",ARGUMENTS:\"Arguments\",SHORT_QUERY:\"ShortQuery\",QUERY:\"Query\",MUTATION:\"Mutation\",SUBSCRIPTION:\"Subscription\",TYPE_CONDITION:\"TypeCondition\",INVALID:\"Invalid\",COMMENT:\"Comment\",SCHEMA_DEF:\"SchemaDef\",SCALAR_DEF:\"ScalarDef\",OBJECT_TYPE_DEF:\"ObjectTypeDef\",OBJECT_VALUE:\"ObjectValue\",LIST_VALUE:\"ListValue\",INTERFACE_DEF:\"InterfaceDef\",UNION_DEF:\"UnionDef\",ENUM_DEF:\"EnumDef\",ENUM_VALUE:\"EnumValue\",FIELD_DEF:\"FieldDef\",INPUT_DEF:\"InputDef\",INPUT_VALUE_DEF:\"InputValueDef\",ARGUMENTS_DEF:\"ArgumentsDef\",EXTEND_DEF:\"ExtendDef\",EXTENSION_DEFINITION:\"ExtensionDefinition\",DIRECTIVE_DEF:\"DirectiveDef\",IMPLEMENTS:\"Implements\",VARIABLE_DEFINITIONS:\"VariableDefinitions\",TYPE:\"Type\"},Q=Object.assign(Object.assign({},L),N3),k_={command:\"editor.action.triggerSuggest\",title:\"Suggestions\"},A3=e=>{const t=[];if(e)try{Tn(qo(e),{FragmentDefinition(n){t.push(n)}})}catch{return[]}return t},D3=[L.SCHEMA_DEFINITION,L.OPERATION_TYPE_DEFINITION,L.SCALAR_TYPE_DEFINITION,L.OBJECT_TYPE_DEFINITION,L.INTERFACE_TYPE_DEFINITION,L.UNION_TYPE_DEFINITION,L.ENUM_TYPE_DEFINITION,L.INPUT_OBJECT_TYPE_DEFINITION,L.DIRECTIVE_DEFINITION,L.SCHEMA_EXTENSION,L.SCALAR_TYPE_EXTENSION,L.OBJECT_TYPE_EXTENSION,L.INTERFACE_TYPE_EXTENSION,L.UNION_TYPE_EXTENSION,L.ENUM_TYPE_EXTENSION,L.INPUT_OBJECT_TYPE_EXTENSION],I3=e=>{let t=!1;if(e)try{Tn(qo(e),{enter(n){if(n.kind!==\"Document\")return D3.includes(n.kind)?(t=!0,mi):!1}})}catch{return t}return t};function a_e(e,t,n,r,o,i){var s;const a=Object.assign(Object.assign({},i),{schema:e}),l=r||H3(t,n,1),c=l.state.kind===\"Invalid\"?l.state.prevState:l.state,u=(i==null?void 0:i.mode)||Q3(t,i==null?void 0:i.uri);if(!c)return[];const{kind:d,step:p,prevState:f}=c,m=W3(e,l.state);if(d===Q.DOCUMENT)return u===wo.TYPE_SYSTEM?L3(l):O3(l);if(d===Q.EXTEND_DEF)return P3(l);if(((s=f==null?void 0:f.prevState)===null||s===void 0?void 0:s.kind)===Q.EXTENSION_DEFINITION&&c.name)return Re(l,[]);if((f==null?void 0:f.kind)===L.SCALAR_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(Zr).map(b=>({label:b.name,kind:se.Function})));if((f==null?void 0:f.kind)===L.OBJECT_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(b=>Ae(b)&&!b.name.startsWith(\"__\")).map(b=>({label:b.name,kind:se.Function})));if((f==null?void 0:f.kind)===L.INTERFACE_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(De).map(b=>({label:b.name,kind:se.Function})));if((f==null?void 0:f.kind)===L.UNION_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(nn).map(b=>({label:b.name,kind:se.Function})));if((f==null?void 0:f.kind)===L.ENUM_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(b=>Bt(b)&&!b.name.startsWith(\"__\")).map(b=>({label:b.name,kind:se.Function})));if((f==null?void 0:f.kind)===L.INPUT_OBJECT_TYPE_EXTENSION)return Re(l,Object.values(e.getTypeMap()).filter(vt).map(b=>({label:b.name,kind:se.Function})));if(d===Q.IMPLEMENTS||d===Q.NAMED_TYPE&&(f==null?void 0:f.kind)===Q.IMPLEMENTS)return M3(l,c,e,t,m);if(d===Q.SELECTION_SET||d===Q.FIELD||d===Q.ALIASED_FIELD)return $3(l,m,a);if(d===Q.ARGUMENTS||d===Q.ARGUMENT&&p===0){const{argDefs:b}=m;if(b)return Re(l,b.map(y=>{var g;return{label:y.name,insertText:y.name+\": \",command:k_,detail:String(y.type),documentation:(g=y.description)!==null&&g!==void 0?g:void 0,kind:se.Variable,type:y.type}}))}if((d===Q.OBJECT_VALUE||d===Q.OBJECT_FIELD&&p===0)&&m.objectFieldDefs){const b=Ro(m.objectFieldDefs),y=d===Q.OBJECT_VALUE?se.Value:se.Field;return Re(l,b.map(g=>{var E;return{label:g.name,detail:String(g.type),documentation:(E=g.description)!==null&&E!==void 0?E:void 0,kind:y,type:g.type}}))}if(d===Q.ENUM_VALUE||d===Q.LIST_VALUE&&p===1||d===Q.OBJECT_FIELD&&p===2||d===Q.ARGUMENT&&p===2)return F3(l,m,t,e);if(d===Q.VARIABLE&&p===1){const b=Ft(m.inputType),y=N_(t,e,l);return Re(l,y.filter(g=>g.detail===(b==null?void 0:b.name)))}if(d===Q.TYPE_CONDITION&&p===1||d===Q.NAMED_TYPE&&f!=null&&f.kind===Q.TYPE_CONDITION)return V3(l,m,e);if(d===Q.FRAGMENT_SPREAD&&p===1)return j3(l,m,e,t,Array.isArray(o)?o:A3(o));const v=A_(c);if(u===wo.TYPE_SYSTEM&&!v.needsAdvance&&d===Q.NAMED_TYPE||d===Q.LIST_TYPE){if(v.kind===Q.FIELD_DEF)return Re(l,Object.values(e.getTypeMap()).filter(b=>xo(b)&&!b.name.startsWith(\"__\")).map(b=>({label:b.name,kind:se.Function})));if(v.kind===Q.INPUT_VALUE_DEF)return Re(l,Object.values(e.getTypeMap()).filter(b=>Yt(b)&&!b.name.startsWith(\"__\")).map(b=>({label:b.name,kind:se.Function})))}return d===Q.VARIABLE_DEFINITION&&p===2||d===Q.LIST_TYPE&&p===1||d===Q.NAMED_TYPE&&f&&(f.kind===Q.VARIABLE_DEFINITION||f.kind===Q.LIST_TYPE||f.kind===Q.NON_NULL_TYPE)?B3(l,e):d===Q.DIRECTIVE?z3(l,c,e):[]}const Tl=` {\n  $1\n}`,R3=e=>{const{type:t}=e;return Jt(t)||wt(t)&&Jt(t.ofType)||qe(t)&&(Jt(t.ofType)||wt(t.ofType)&&Jt(t.ofType.ofType))?Tl:null};function L3(e){return Re(e,[{label:\"extend\",kind:se.Function},{label:\"type\",kind:se.Function},{label:\"interface\",kind:se.Function},{label:\"union\",kind:se.Function},{label:\"input\",kind:se.Function},{label:\"scalar\",kind:se.Function},{label:\"schema\",kind:se.Function}])}function O3(e){return Re(e,[{label:\"query\",kind:se.Function},{label:\"mutation\",kind:se.Function},{label:\"subscription\",kind:se.Function},{label:\"fragment\",kind:se.Function},{label:\"{\",kind:se.Constructor}])}function P3(e){return Re(e,[{label:\"type\",kind:se.Function},{label:\"interface\",kind:se.Function},{label:\"union\",kind:se.Function},{label:\"input\",kind:se.Function},{label:\"scalar\",kind:se.Function},{label:\"schema\",kind:se.Function}])}function $3(e,t,n){var r;if(t.parentType){const{parentType:o}=t;let i=[];return\"getFields\"in o&&(i=Ro(o.getFields())),Jt(o)&&i.push(da),o===((r=n==null?void 0:n.schema)===null||r===void 0?void 0:r.getQueryType())&&i.push(ua,fa),Re(e,i.map((s,a)=>{var l;const c={sortText:String(a)+s.name,label:s.name,detail:String(s.type),documentation:(l=s.description)!==null&&l!==void 0?l:void 0,deprecated:!!s.deprecationReason,isDeprecated:!!s.deprecationReason,deprecationReason:s.deprecationReason,kind:se.Field,type:s.type};if(n!=null&&n.fillLeafsOnComplete){const u=R3(s);u&&(c.insertText=s.name+u,c.insertTextFormat=ch.Snippet,c.command=k_)}return c}))}return[]}function F3(e,t,n,r){const o=Ft(t.inputType),i=N_(n,r,e).filter(s=>s.detail===o.name);if(o instanceof Ji){const s=o.getValues();return Re(e,s.map(a=>{var l;return{label:a.name,detail:String(o),documentation:(l=a.description)!==null&&l!==void 0?l:void 0,deprecated:!!a.deprecationReason,isDeprecated:!!a.deprecationReason,deprecationReason:a.deprecationReason,kind:se.EnumMember,type:o}}).concat(i))}return o===ot?Re(e,i.concat([{label:\"true\",detail:String(ot),documentation:\"Not false.\",kind:se.Variable,type:ot},{label:\"false\",detail:String(ot),documentation:\"Not true.\",kind:se.Variable,type:ot}])):i}function M3(e,t,n,r,o){if(t.needsSeparator)return[];const i=n.getTypeMap(),s=Ro(i).filter(De),a=s.map(({name:f})=>f),l=new Set;Gu(r,(f,m)=>{var v,b,y,g,E;if(m.name&&(m.kind===Q.INTERFACE_DEF&&!a.includes(m.name)&&l.add(m.name),m.kind===Q.NAMED_TYPE&&((v=m.prevState)===null||v===void 0?void 0:v.kind)===Q.IMPLEMENTS)){if(o.interfaceDef){if((b=o.interfaceDef)===null||b===void 0?void 0:b.getInterfaces().find(({name:T})=>T===m.name))return;const w=n.getType(m.name),C=(y=o.interfaceDef)===null||y===void 0?void 0:y.toConfig();o.interfaceDef=new ki(Object.assign(Object.assign({},C),{interfaces:[...C.interfaces,w||new ki({name:m.name,fields:{}})]}))}else if(o.objectTypeDef){if((g=o.objectTypeDef)===null||g===void 0?void 0:g.getInterfaces().find(({name:T})=>T===m.name))return;const w=n.getType(m.name),C=(E=o.objectTypeDef)===null||E===void 0?void 0:E.toConfig();o.objectTypeDef=new zn(Object.assign(Object.assign({},C),{interfaces:[...C.interfaces,w||new ki({name:m.name,fields:{}})]}))}}});const c=o.interfaceDef||o.objectTypeDef,d=((c==null?void 0:c.getInterfaces())||[]).map(({name:f})=>f),p=s.concat([...l].map(f=>({name:f}))).filter(({name:f})=>f!==(c==null?void 0:c.name)&&!d.includes(f));return Re(e,p.map(f=>{const m={label:f.name,kind:se.Interface,type:f};return f!=null&&f.description&&(m.documentation=f.description),m}))}function V3(e,t,n,r){let o;if(t.parentType)if(jr(t.parentType)){const i=lD(t.parentType),s=n.getPossibleTypes(i),a=Object.create(null);for(const l of s)for(const c of l.getInterfaces())a[c.name]=c;o=s.concat(Ro(a))}else o=[t.parentType];else{const i=n.getTypeMap();o=Ro(i).filter(s=>Jt(s)&&!s.name.startsWith(\"__\"))}return Re(e,o.map(i=>{const s=Ft(i);return{label:String(i),documentation:(s==null?void 0:s.description)||\"\",kind:se.Field}}))}function j3(e,t,n,r,o){if(!r)return[];const i=n.getTypeMap(),s=h3(e.state),a=U3(r);o&&o.length>0&&a.push(...o);const l=a.filter(c=>i[c.typeCondition.name.value]&&!(s&&s.kind===Q.FRAGMENT_DEFINITION&&s.name===c.name.value)&&Jt(t.parentType)&&Jt(i[c.typeCondition.name.value])&&hD(n,t.parentType,i[c.typeCondition.name.value]));return Re(e,l.map(c=>({label:c.name.value,detail:String(i[c.typeCondition.name.value]),documentation:`fragment ${c.name.value} on ${c.typeCondition.name.value}`,kind:se.Field,type:i[c.typeCondition.name.value]})))}const q3=(e,t)=>{var n,r,o,i,s,a,l,c,u,d;if(((n=e.prevState)===null||n===void 0?void 0:n.kind)===t)return e.prevState;if(((o=(r=e.prevState)===null||r===void 0?void 0:r.prevState)===null||o===void 0?void 0:o.kind)===t)return e.prevState.prevState;if(((a=(s=(i=e.prevState)===null||i===void 0?void 0:i.prevState)===null||s===void 0?void 0:s.prevState)===null||a===void 0?void 0:a.kind)===t)return e.prevState.prevState.prevState;if(((d=(u=(c=(l=e.prevState)===null||l===void 0?void 0:l.prevState)===null||c===void 0?void 0:c.prevState)===null||u===void 0?void 0:u.prevState)===null||d===void 0?void 0:d.kind)===t)return e.prevState.prevState.prevState.prevState};function N_(e,t,n){let r=null,o;const i=Object.create({});return Gu(e,(s,a)=>{if((a==null?void 0:a.kind)===Q.VARIABLE&&a.name&&(r=a.name),(a==null?void 0:a.kind)===Q.NAMED_TYPE&&r){const l=q3(a,Q.TYPE);l!=null&&l.type&&(o=t.getType(l==null?void 0:l.type))}r&&o&&!i[r]&&(i[r]={detail:o.toString(),insertText:n.string===\"$\"?r:\"$\"+r,label:r,type:o,kind:se.Variable},r=null,o=null)}),Ro(i)}function U3(e){const t=[];return Gu(e,(n,r)=>{r.kind===Q.FRAGMENT_DEFINITION&&r.name&&r.type&&t.push({kind:Q.FRAGMENT_DEFINITION,name:{kind:L.NAME,value:r.name},selectionSet:{kind:Q.SELECTION_SET,selections:[]},typeCondition:{kind:Q.NAMED_TYPE,name:{kind:L.NAME,value:r.type}}})}),t}function B3(e,t,n){const r=t.getTypeMap(),o=Ro(r).filter(Yt);return Re(e,o.map(i=>({label:i.name,documentation:i.description,kind:se.Variable})))}function z3(e,t,n,r){var o;if(!((o=t.prevState)===null||o===void 0)&&o.kind){const i=n.getDirectives().filter(s=>G3(t.prevState,s));return Re(e,i.map(s=>({label:s.name,documentation:s.description||\"\",kind:se.Function})))}return[]}function H3(e,t,n=0){let r=null,o=null,i=null;const s=Gu(e,(a,l,c,u)=>{if(!(u!==t.line||a.getCurrentPosition()+n<t.character+1))return r=c,o=Object.assign({},l),i=a.current(),\"BREAK\"});return{start:s.start,end:s.end,string:i||s.string,state:o||s.state,style:r||s.style}}function Gu(e,t){const n=e.split(`\n`),r=S3();let o=r.startState(),i=\"\",s=new Qy(\"\");for(let a=0;a<n.length;a++){for(s=new Qy(n[a]);!s.eol()&&(i=r.token(s,o),t(s,o,i,a)!==\"BREAK\"););t(s,o,i,a),o.kind||(o=r.startState())}return{start:s.getStartOfToken(),end:s.getCurrentPosition(),string:s.current(),state:o,style:i}}function G3(e,t){if(!(e!=null&&e.kind))return!1;const{kind:n,prevState:r}=e,{locations:o}=t;switch(n){case Q.QUERY:return o.includes(ne.QUERY);case Q.MUTATION:return o.includes(ne.MUTATION);case Q.SUBSCRIPTION:return o.includes(ne.SUBSCRIPTION);case Q.FIELD:case Q.ALIASED_FIELD:return o.includes(ne.FIELD);case Q.FRAGMENT_DEFINITION:return o.includes(ne.FRAGMENT_DEFINITION);case Q.FRAGMENT_SPREAD:return o.includes(ne.FRAGMENT_SPREAD);case Q.INLINE_FRAGMENT:return o.includes(ne.INLINE_FRAGMENT);case Q.SCHEMA_DEF:return o.includes(ne.SCHEMA);case Q.SCALAR_DEF:return o.includes(ne.SCALAR);case Q.OBJECT_TYPE_DEF:return o.includes(ne.OBJECT);case Q.FIELD_DEF:return o.includes(ne.FIELD_DEFINITION);case Q.INTERFACE_DEF:return o.includes(ne.INTERFACE);case Q.UNION_DEF:return o.includes(ne.UNION);case Q.ENUM_DEF:return o.includes(ne.ENUM);case Q.ENUM_VALUE:return o.includes(ne.ENUM_VALUE);case Q.INPUT_DEF:return o.includes(ne.INPUT_OBJECT);case Q.INPUT_VALUE_DEF:switch(r==null?void 0:r.kind){case Q.ARGUMENTS_DEF:return o.includes(ne.ARGUMENT_DEFINITION);case Q.INPUT_DEF:return o.includes(ne.INPUT_FIELD_DEFINITION)}}return!1}function W3(e,t){let n,r,o,i,s,a,l,c,u,d,p;return C_(t,f=>{var m;switch(f.kind){case Q.QUERY:case\"ShortQuery\":d=e.getQueryType();break;case Q.MUTATION:d=e.getMutationType();break;case Q.SUBSCRIPTION:d=e.getSubscriptionType();break;case Q.INLINE_FRAGMENT:case Q.FRAGMENT_DEFINITION:f.type&&(d=e.getType(f.type));break;case Q.FIELD:case Q.ALIASED_FIELD:{!d||!f.name?s=null:(s=u?Wg(e,u,f.name):null,d=s?s.type:null);break}case Q.SELECTION_SET:u=Ft(d);break;case Q.DIRECTIVE:o=f.name?e.getDirective(f.name):null;break;case Q.INTERFACE_DEF:f.name&&(l=null,p=new ki({name:f.name,interfaces:[],fields:{}}));break;case Q.OBJECT_TYPE_DEF:f.name&&(p=null,l=new zn({name:f.name,interfaces:[],fields:{}}));break;case Q.ARGUMENTS:{if(f.prevState)switch(f.prevState.kind){case Q.FIELD:r=s&&s.args;break;case Q.DIRECTIVE:r=o&&o.args;break;case Q.ALIASED_FIELD:{const E=(m=f.prevState)===null||m===void 0?void 0:m.name;if(!E){r=null;break}const x=u?Wg(e,u,E):null;if(!x){r=null;break}r=x.args;break}default:r=null;break}else r=null;break}case Q.ARGUMENT:if(r){for(let E=0;E<r.length;E++)if(r[E].name===f.name){n=r[E];break}}a=n==null?void 0:n.type;break;case Q.ENUM_VALUE:const v=Ft(a);i=v instanceof Ji?v.getValues().find(E=>E.value===f.name):null;break;case Q.LIST_VALUE:const b=Jw(a);a=b instanceof kt?b.ofType:null;break;case Q.OBJECT_VALUE:const y=Ft(a);c=y instanceof Jm?y.getFields():null;break;case Q.OBJECT_FIELD:const g=f.name&&c?c[f.name]:null;a=g==null?void 0:g.type;break;case Q.NAMED_TYPE:f.name&&(d=e.getType(f.name));break}}),{argDef:n,argDefs:r,directiveDef:o,enumValue:i,fieldDef:s,inputType:a,objectFieldDefs:c,parentType:u,type:d,interfaceDef:p,objectTypeDef:l}}var wo;(function(e){e.TYPE_SYSTEM=\"TYPE_SYSTEM\",e.EXECUTABLE=\"EXECUTABLE\"})(wo||(wo={}));function Q3(e,t){return t!=null&&t.endsWith(\".graphqls\")||I3(e)?wo.TYPE_SYSTEM:wo.EXECUTABLE}function A_(e){return e.prevState&&e.kind&&[Q.NAMED_TYPE,Q.LIST_TYPE,Q.TYPE,Q.NON_NULL_TYPE].includes(e.kind)?A_(e.prevState):e}var Wu={exports:{}};function D_(e,t){if(e!=null)return e;var n=new Error(t!==void 0?t:\"Got unexpected \"+e);throw n.framesToPop=1,n}Wu.exports=D_;Wu.exports.default=D_;Object.defineProperty(Wu.exports,\"__esModule\",{value:!0});var Y3=Wu.exports;const Xy=Wi(Y3),Z3=(e,t)=>{if(!t)return[];const n=new Map,r=new Set;Tn(e,{FragmentDefinition(s){n.set(s.name.value,!0)},FragmentSpread(s){r.has(s.name.value)||r.add(s.name.value)}});const o=new Set;for(const s of r)!n.has(s)&&t.has(s)&&o.add(Xy(t.get(s)));const i=[];for(const s of o)Tn(s,{FragmentSpread(a){!r.has(a.name.value)&&t.get(a.name.value)&&(o.add(Xy(t.get(a.name.value))),r.add(a.name.value))}}),n.has(s.name.value)||i.push(s);return i};function X3(e,t){const n=Object.create(null);for(const r of t.definitions)if(r.kind===\"OperationDefinition\"){const{variableDefinitions:o}=r;if(o)for(const{variable:i,type:s}of o){const a=pa(e,s);a?n[i.name.value]=a:s.kind===L.NAMED_TYPE&&s.name.value===\"Float\"&&(n[i.name.value]=a_)}}return n}function J3(e,t){const n=t?X3(t,e):void 0,r=[];return Tn(e,{OperationDefinition(o){r.push(o)}}),{variableToType:n,operations:r}}function K3(e,t){if(t)try{const n=qo(t);return Object.assign(Object.assign({},J3(n,e)),{documentAST:n})}catch{return}}globalThis&&globalThis.__awaiter;/*!\n * is-primitive <https://github.com/jonschlinkert/is-primitive>\n *\n * Copyright (c) 2014-present, Jon Schlinkert.\n * Released under the MIT License.\n */var eI=function(t){return typeof t==\"object\"?t===null:typeof t!=\"function\"};/*!\n * isobject <https://github.com/jonschlinkert/isobject>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */var tI=function(t){return t!=null&&typeof t==\"object\"&&Array.isArray(t)===!1};/*!\n * is-plain-object <https://github.com/jonschlinkert/is-plain-object>\n *\n * Copyright (c) 2014-2017, Jon Schlinkert.\n * Released under the MIT License.\n */var nI=tI;function Jy(e){return nI(e)===!0&&Object.prototype.toString.call(e)===\"[object Object]\"}var rI=function(t){var n,r;return!(Jy(t)===!1||(n=t.constructor,typeof n!=\"function\")||(r=n.prototype,Jy(r)===!1)||r.hasOwnProperty(\"isPrototypeOf\")===!1)};/*!\n * set-value <https://github.com/jonschlinkert/set-value>\n *\n * Copyright (c) Jon Schlinkert (https://github.com/jonschlinkert).\n * Released under the MIT License.\n */const{deleteProperty:oI}=Reflect,iI=eI,Ky=rI,e1=e=>typeof e==\"object\"&&e!==null||typeof e==\"function\",sI=e=>e===\"__proto__\"||e===\"constructor\"||e===\"prototype\",nv=e=>{if(!iI(e))throw new TypeError(\"Object keys must be strings or symbols\");if(sI(e))throw new Error(`Cannot set unsafe key: \"${e}\"`)},aI=e=>Array.isArray(e)?e.flat().map(String).join(\",\"):e,lI=(e,t)=>{if(typeof e!=\"string\"||!t)return e;let n=e+\";\";return t.arrays!==void 0&&(n+=`arrays=${t.arrays};`),t.separator!==void 0&&(n+=`separator=${t.separator};`),t.split!==void 0&&(n+=`split=${t.split};`),t.merge!==void 0&&(n+=`merge=${t.merge};`),t.preservePaths!==void 0&&(n+=`preservePaths=${t.preservePaths};`),n},cI=(e,t,n)=>{const r=aI(t?lI(e,t):e);nv(r);const o=Lo.cache.get(r)||n();return Lo.cache.set(r,o),o},uI=(e,t={})=>{const n=t.separator||\".\",r=n===\"/\"?!1:t.preservePaths;if(typeof e==\"string\"&&r!==!1&&/\\//.test(e))return[e];const o=[];let i=\"\";const s=a=>{let l;a.trim()!==\"\"&&Number.isInteger(l=Number(a))?o.push(l):o.push(a)};for(let a=0;a<e.length;a++){const l=e[a];if(l===\"\\\\\"){i+=e[++a];continue}if(l===n){s(i),i=\"\";continue}i+=l}return i&&s(i),o},I_=(e,t)=>t&&typeof t.split==\"function\"?t.split(e):typeof e==\"symbol\"?[e]:Array.isArray(e)?e:cI(e,t,()=>uI(e,t)),fI=(e,t,n,r)=>{if(nv(t),n===void 0)oI(e,t);else if(r&&r.merge){const o=r.merge===\"function\"?r.merge:Object.assign;o&&Ky(e[t])&&Ky(n)?e[t]=o(e[t],n):e[t]=n}else e[t]=n;return e},Lo=(e,t,n,r)=>{if(!t||!e1(e))return e;const o=I_(t,r);let i=e;for(let s=0;s<o.length;s++){const a=o[s],l=o[s+1];if(nv(a),l===void 0){fI(i,a,n,r);break}if(typeof l==\"number\"&&!Array.isArray(i[a])){i=i[a]=[];continue}e1(i[a])||(i[a]={}),i=i[a]}return e};Lo.split=I_;Lo.cache=new Map;Lo.clear=()=>{Lo.cache=new Map};var dI=Lo;const pI=Wi(dI);var hI=function(){var e=document.getSelection();if(!e.rangeCount)return function(){};for(var t=document.activeElement,n=[],r=0;r<e.rangeCount;r++)n.push(e.getRangeAt(r));switch(t.tagName.toUpperCase()){case\"INPUT\":case\"TEXTAREA\":t.blur();break;default:t=null;break}return e.removeAllRanges(),function(){e.type===\"Caret\"&&e.removeAllRanges(),e.rangeCount||n.forEach(function(o){e.addRange(o)}),t&&t.focus()}},mI=hI,t1={\"text/plain\":\"Text\",\"text/html\":\"Url\",default:\"Text\"},vI=\"Copy to clipboard: #{key}, Enter\";function gI(e){var t=(/mac os x/i.test(navigator.userAgent)?\"⌘\":\"Ctrl\")+\"+C\";return e.replace(/#{\\s*key\\s*}/g,t)}function yI(e,t){var n,r,o,i,s,a,l=!1;t||(t={}),n=t.debug||!1;try{o=mI(),i=document.createRange(),s=document.getSelection(),a=document.createElement(\"span\"),a.textContent=e,a.ariaHidden=\"true\",a.style.all=\"unset\",a.style.position=\"fixed\",a.style.top=0,a.style.clip=\"rect(0, 0, 0, 0)\",a.style.whiteSpace=\"pre\",a.style.webkitUserSelect=\"text\",a.style.MozUserSelect=\"text\",a.style.msUserSelect=\"text\",a.style.userSelect=\"text\",a.addEventListener(\"copy\",function(u){if(u.stopPropagation(),t.format)if(u.preventDefault(),typeof u.clipboardData>\"u\"){n&&console.warn(\"unable to use e.clipboardData\"),n&&console.warn(\"trying IE specific stuff\"),window.clipboardData.clearData();var d=t1[t.format]||t1.default;window.clipboardData.setData(d,e)}else u.clipboardData.clearData(),u.clipboardData.setData(t.format,e);t.onCopy&&(u.preventDefault(),t.onCopy(u.clipboardData))}),document.body.appendChild(a),i.selectNodeContents(a),s.addRange(i);var c=document.execCommand(\"copy\");if(!c)throw new Error(\"copy command was unsuccessful\");l=!0}catch(u){n&&console.error(\"unable to copy using execCommand: \",u),n&&console.warn(\"trying IE specific stuff\");try{window.clipboardData.setData(t.format||\"text\",e),t.onCopy&&t.onCopy(window.clipboardData),l=!0}catch(d){n&&console.error(\"unable to copy using clipboardData: \",d),n&&console.error(\"falling back to prompt\"),r=gI(\"message\"in t?t.message:vI),window.prompt(r,e)}}finally{s&&(typeof s.removeRange==\"function\"?s.removeRange(i):s.removeAllRanges()),a&&document.body.removeChild(a),o()}return l}var EI=yI;const bI=Wi(EI);function oe(){return oe=Object.assign?Object.assign.bind():function(e){for(var t=1;t<arguments.length;t++){var n=arguments[t];for(var r in n)Object.prototype.hasOwnProperty.call(n,r)&&(e[r]=n[r])}return e},oe.apply(this,arguments)}function ae(e,t,{checkForDefaultPrevented:n=!0}={}){return function(o){if(e==null||e(o),n===!1||!o.defaultPrevented)return t==null?void 0:t(o)}}function xI(e,t){typeof e==\"function\"?e(t):e!=null&&(e.current=t)}function rv(...e){return t=>e.forEach(n=>xI(n,t))}function at(...e){return h.useCallback(rv(...e),e)}function Bo(e,t=[]){let n=[];function r(i,s){const a=h.createContext(s),l=n.length;n=[...n,s];function c(d){const{scope:p,children:f,...m}=d,v=(p==null?void 0:p[e][l])||a,b=h.useMemo(()=>m,Object.values(m));return h.createElement(v.Provider,{value:b},f)}function u(d,p){const f=(p==null?void 0:p[e][l])||a,m=h.useContext(f);if(m)return m;if(s!==void 0)return s;throw new Error(`\\`${d}\\` must be used within \\`${i}\\``)}return c.displayName=i+\"Provider\",[c,u]}const o=()=>{const i=n.map(s=>h.createContext(s));return function(a){const l=(a==null?void 0:a[e])||i;return h.useMemo(()=>({[`__scope${e}`]:{...a,[e]:l}}),[a,l])}};return o.scopeName=e,[r,wI(o,...t)]}function wI(...e){const t=e[0];if(e.length===1)return t;const n=()=>{const r=e.map(o=>({useScope:o(),scopeName:o.scopeName}));return function(i){const s=r.reduce((a,{useScope:l,scopeName:c})=>{const d=l(i)[`__scope${c}`];return{...a,...d}},{});return h.useMemo(()=>({[`__scope${t.scopeName}`]:s}),[s])}};return n.scopeName=t.scopeName,n}const Bi=globalThis!=null&&globalThis.document?h.useLayoutEffect:()=>{},_I=Wd[\"useId\".toString()]||(()=>{});let SI=0;function _o(e){const[t,n]=h.useState(_I());return Bi(()=>{e||n(r=>r??String(SI++))},[e]),e||(t?`radix-${t}`:\"\")}function jn(e){const t=h.useRef(e);return h.useEffect(()=>{t.current=e}),h.useMemo(()=>(...n)=>{var r;return(r=t.current)===null||r===void 0?void 0:r.call(t,...n)},[])}function Qu({prop:e,defaultProp:t,onChange:n=()=>{}}){const[r,o]=CI({defaultProp:t,onChange:n}),i=e!==void 0,s=i?e:r,a=jn(n),l=h.useCallback(c=>{if(i){const d=typeof c==\"function\"?c(e):c;d!==e&&a(d)}else o(c)},[i,e,o,a]);return[s,l]}function CI({defaultProp:e,onChange:t}){const n=h.useState(e),[r]=n,o=h.useRef(r),i=jn(t);return h.useEffect(()=>{o.current!==r&&(i(r),o.current=r)},[r,o,i]),n}const zi=h.forwardRef((e,t)=>{const{children:n,...r}=e,o=h.Children.toArray(n),i=o.find(TI);if(i){const s=i.props.children,a=o.map(l=>l===i?h.Children.count(s)>1?h.Children.only(null):h.isValidElement(s)?s.props.children:null:l);return h.createElement(ph,oe({},r,{ref:t}),h.isValidElement(s)?h.cloneElement(s,void 0,a):null)}return h.createElement(ph,oe({},r,{ref:t}),n)});zi.displayName=\"Slot\";const ph=h.forwardRef((e,t)=>{const{children:n,...r}=e;return h.isValidElement(n)?h.cloneElement(n,{...kI(r,n.props),ref:t?rv(t,n.ref):n.ref}):h.Children.count(n)>1?h.Children.only(null):null});ph.displayName=\"SlotClone\";const R_=({children:e})=>h.createElement(h.Fragment,null,e);function TI(e){return h.isValidElement(e)&&e.type===R_}function kI(e,t){const n={...t};for(const r in t){const o=e[r],i=t[r];/^on[A-Z]/.test(r)?o&&i?n[r]=(...a)=>{i(...a),o(...a)}:o&&(n[r]=o):r===\"style\"?n[r]={...o,...i}:r===\"className\"&&(n[r]=[o,i].filter(Boolean).join(\" \"))}return{...e,...n}}const NI=[\"a\",\"button\",\"div\",\"form\",\"h2\",\"h3\",\"img\",\"input\",\"label\",\"li\",\"nav\",\"ol\",\"p\",\"span\",\"svg\",\"ul\"],gt=NI.reduce((e,t)=>{const n=h.forwardRef((r,o)=>{const{asChild:i,...s}=r,a=i?zi:t;return h.useEffect(()=>{window[Symbol.for(\"radix-ui\")]=!0},[]),h.createElement(a,oe({},s,{ref:o}))});return n.displayName=`Primitive.${t}`,{...e,[t]:n}},{});function L_(e,t){e&&Va.flushSync(()=>e.dispatchEvent(t))}function AI(e,t=globalThis==null?void 0:globalThis.document){const n=jn(e);h.useEffect(()=>{const r=o=>{o.key===\"Escape\"&&n(o)};return t.addEventListener(\"keydown\",r),()=>t.removeEventListener(\"keydown\",r)},[n,t])}const hh=\"dismissableLayer.update\",DI=\"dismissableLayer.pointerDownOutside\",II=\"dismissableLayer.focusOutside\";let n1;const RI=h.createContext({layers:new Set,layersWithOutsidePointerEventsDisabled:new Set,branches:new Set}),ov=h.forwardRef((e,t)=>{var n;const{disableOutsidePointerEvents:r=!1,onEscapeKeyDown:o,onPointerDownOutside:i,onFocusOutside:s,onInteractOutside:a,onDismiss:l,...c}=e,u=h.useContext(RI),[d,p]=h.useState(null),f=(n=d==null?void 0:d.ownerDocument)!==null&&n!==void 0?n:globalThis==null?void 0:globalThis.document,[,m]=h.useState({}),v=at(t,A=>p(A)),b=Array.from(u.layers),[y]=[...u.layersWithOutsidePointerEventsDisabled].slice(-1),g=b.indexOf(y),E=d?b.indexOf(d):-1,x=u.layersWithOutsidePointerEventsDisabled.size>0,w=E>=g,C=LI(A=>{const S=A.target,k=[...u.branches].some(q=>q.contains(S));!w||k||(i==null||i(A),a==null||a(A),A.defaultPrevented||l==null||l())},f),T=OI(A=>{const S=A.target;[...u.branches].some(q=>q.contains(S))||(s==null||s(A),a==null||a(A),A.defaultPrevented||l==null||l())},f);return AI(A=>{E===u.layers.size-1&&(o==null||o(A),!A.defaultPrevented&&l&&(A.preventDefault(),l()))},f),h.useEffect(()=>{if(d)return r&&(u.layersWithOutsidePointerEventsDisabled.size===0&&(n1=f.body.style.pointerEvents,f.body.style.pointerEvents=\"none\"),u.layersWithOutsidePointerEventsDisabled.add(d)),u.layers.add(d),r1(),()=>{r&&u.layersWithOutsidePointerEventsDisabled.size===1&&(f.body.style.pointerEvents=n1)}},[d,f,r,u]),h.useEffect(()=>()=>{d&&(u.layers.delete(d),u.layersWithOutsidePointerEventsDisabled.delete(d),r1())},[d,u]),h.useEffect(()=>{const A=()=>m({});return document.addEventListener(hh,A),()=>document.removeEventListener(hh,A)},[]),h.createElement(gt.div,oe({},c,{ref:v,style:{pointerEvents:x?w?\"auto\":\"none\":void 0,...e.style},onFocusCapture:ae(e.onFocusCapture,T.onFocusCapture),onBlurCapture:ae(e.onBlurCapture,T.onBlurCapture),onPointerDownCapture:ae(e.onPointerDownCapture,C.onPointerDownCapture)}))});function LI(e,t=globalThis==null?void 0:globalThis.document){const n=jn(e),r=h.useRef(!1),o=h.useRef(()=>{});return h.useEffect(()=>{const i=a=>{if(a.target&&!r.current){let c=function(){O_(DI,n,l,{discrete:!0})};const l={originalEvent:a};a.pointerType===\"touch\"?(t.removeEventListener(\"click\",o.current),o.current=c,t.addEventListener(\"click\",o.current,{once:!0})):c()}else t.removeEventListener(\"click\",o.current);r.current=!1},s=window.setTimeout(()=>{t.addEventListener(\"pointerdown\",i)},0);return()=>{window.clearTimeout(s),t.removeEventListener(\"pointerdown\",i),t.removeEventListener(\"click\",o.current)}},[t,n]),{onPointerDownCapture:()=>r.current=!0}}function OI(e,t=globalThis==null?void 0:globalThis.document){const n=jn(e),r=h.useRef(!1);return h.useEffect(()=>{const o=i=>{i.target&&!r.current&&O_(II,n,{originalEvent:i},{discrete:!1})};return t.addEventListener(\"focusin\",o),()=>t.removeEventListener(\"focusin\",o)},[t,n]),{onFocusCapture:()=>r.current=!0,onBlurCapture:()=>r.current=!1}}function r1(){const e=new CustomEvent(hh);document.dispatchEvent(e)}function O_(e,t,n,{discrete:r}){const o=n.originalEvent.target,i=new CustomEvent(e,{bubbles:!1,cancelable:!0,detail:n});t&&o.addEventListener(e,t,{once:!0}),r?L_(o,i):o.dispatchEvent(i)}const ld=\"focusScope.autoFocusOnMount\",cd=\"focusScope.autoFocusOnUnmount\",o1={bubbles:!1,cancelable:!0},P_=h.forwardRef((e,t)=>{const{loop:n=!1,trapped:r=!1,onMountAutoFocus:o,onUnmountAutoFocus:i,...s}=e,[a,l]=h.useState(null),c=jn(o),u=jn(i),d=h.useRef(null),p=at(t,v=>l(v)),f=h.useRef({paused:!1,pause(){this.paused=!0},resume(){this.paused=!1}}).current;h.useEffect(()=>{if(r){let v=function(E){if(f.paused||!a)return;const x=E.target;a.contains(x)?d.current=x:vr(d.current,{select:!0})},b=function(E){if(f.paused||!a)return;const x=E.relatedTarget;x!==null&&(a.contains(x)||vr(d.current,{select:!0}))},y=function(E){if(document.activeElement===document.body)for(const w of E)w.removedNodes.length>0&&vr(a)};document.addEventListener(\"focusin\",v),document.addEventListener(\"focusout\",b);const g=new MutationObserver(y);return a&&g.observe(a,{childList:!0,subtree:!0}),()=>{document.removeEventListener(\"focusin\",v),document.removeEventListener(\"focusout\",b),g.disconnect()}}},[r,a,f.paused]),h.useEffect(()=>{if(a){s1.add(f);const v=document.activeElement;if(!a.contains(v)){const y=new CustomEvent(ld,o1);a.addEventListener(ld,c),a.dispatchEvent(y),y.defaultPrevented||(PI(jI($_(a)),{select:!0}),document.activeElement===v&&vr(a))}return()=>{a.removeEventListener(ld,c),setTimeout(()=>{const y=new CustomEvent(cd,o1);a.addEventListener(cd,u),a.dispatchEvent(y),y.defaultPrevented||vr(v??document.body,{select:!0}),a.removeEventListener(cd,u),s1.remove(f)},0)}}},[a,c,u,f]);const m=h.useCallback(v=>{if(!n&&!r||f.paused)return;const b=v.key===\"Tab\"&&!v.altKey&&!v.ctrlKey&&!v.metaKey,y=document.activeElement;if(b&&y){const g=v.currentTarget,[E,x]=$I(g);E&&x?!v.shiftKey&&y===x?(v.preventDefault(),n&&vr(E,{select:!0})):v.shiftKey&&y===E&&(v.preventDefault(),n&&vr(x,{select:!0})):y===g&&v.preventDefault()}},[n,r,f.paused]);return h.createElement(gt.div,oe({tabIndex:-1},s,{ref:p,onKeyDown:m}))});function PI(e,{select:t=!1}={}){const n=document.activeElement;for(const r of e)if(vr(r,{select:t}),document.activeElement!==n)return}function $I(e){const t=$_(e),n=i1(t,e),r=i1(t.reverse(),e);return[n,r]}function $_(e){const t=[],n=document.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,{acceptNode:r=>{const o=r.tagName===\"INPUT\"&&r.type===\"hidden\";return r.disabled||r.hidden||o?NodeFilter.FILTER_SKIP:r.tabIndex>=0?NodeFilter.FILTER_ACCEPT:NodeFilter.FILTER_SKIP}});for(;n.nextNode();)t.push(n.currentNode);return t}function i1(e,t){for(const n of e)if(!FI(n,{upTo:t}))return n}function FI(e,{upTo:t}){if(getComputedStyle(e).visibility===\"hidden\")return!0;for(;e;){if(t!==void 0&&e===t)return!1;if(getComputedStyle(e).display===\"none\")return!0;e=e.parentElement}return!1}function MI(e){return e instanceof HTMLInputElement&&\"select\"in e}function vr(e,{select:t=!1}={}){if(e&&e.focus){const n=document.activeElement;e.focus({preventScroll:!0}),e!==n&&MI(e)&&t&&e.select()}}const s1=VI();function VI(){let e=[];return{add(t){const n=e[0];t!==n&&(n==null||n.pause()),e=a1(e,t),e.unshift(t)},remove(t){var n;e=a1(e,t),(n=e[0])===null||n===void 0||n.resume()}}}function a1(e,t){const n=[...e],r=n.indexOf(t);return r!==-1&&n.splice(r,1),n}function jI(e){return e.filter(t=>t.tagName!==\"A\")}const iv=h.forwardRef((e,t)=>{var n;const{container:r=globalThis==null||(n=globalThis.document)===null||n===void 0?void 0:n.body,...o}=e;return r?qp.createPortal(h.createElement(gt.div,oe({},o,{ref:t})),r):null});function qI(e,t){return h.useReducer((n,r)=>{const o=t[n][r];return o??n},e)}const Xr=e=>{const{present:t,children:n}=e,r=UI(t),o=typeof n==\"function\"?n({present:r.isPresent}):h.Children.only(n),i=at(r.ref,o.ref);return typeof n==\"function\"||r.isPresent?h.cloneElement(o,{ref:i}):null};Xr.displayName=\"Presence\";function UI(e){const[t,n]=h.useState(),r=h.useRef({}),o=h.useRef(e),i=h.useRef(\"none\"),s=e?\"mounted\":\"unmounted\",[a,l]=qI(s,{mounted:{UNMOUNT:\"unmounted\",ANIMATION_OUT:\"unmountSuspended\"},unmountSuspended:{MOUNT:\"mounted\",ANIMATION_END:\"unmounted\"},unmounted:{MOUNT:\"mounted\"}});return h.useEffect(()=>{const c=kl(r.current);i.current=a===\"mounted\"?c:\"none\"},[a]),Bi(()=>{const c=r.current,u=o.current;if(u!==e){const p=i.current,f=kl(c);e?l(\"MOUNT\"):f===\"none\"||(c==null?void 0:c.display)===\"none\"?l(\"UNMOUNT\"):l(u&&p!==f?\"ANIMATION_OUT\":\"UNMOUNT\"),o.current=e}},[e,l]),Bi(()=>{if(t){const c=d=>{const f=kl(r.current).includes(d.animationName);d.target===t&&f&&Va.flushSync(()=>l(\"ANIMATION_END\"))},u=d=>{d.target===t&&(i.current=kl(r.current))};return t.addEventListener(\"animationstart\",u),t.addEventListener(\"animationcancel\",c),t.addEventListener(\"animationend\",c),()=>{t.removeEventListener(\"animationstart\",u),t.removeEventListener(\"animationcancel\",c),t.removeEventListener(\"animationend\",c)}}else l(\"ANIMATION_END\")},[t,l]),{isPresent:[\"mounted\",\"unmountSuspended\"].includes(a),ref:h.useCallback(c=>{c&&(r.current=getComputedStyle(c)),n(c)},[])}}function kl(e){return(e==null?void 0:e.animationName)||\"none\"}let ud=0;function F_(){h.useEffect(()=>{var e,t;const n=document.querySelectorAll(\"[data-radix-focus-guard]\");return document.body.insertAdjacentElement(\"afterbegin\",(e=n[0])!==null&&e!==void 0?e:l1()),document.body.insertAdjacentElement(\"beforeend\",(t=n[1])!==null&&t!==void 0?t:l1()),ud++,()=>{ud===1&&document.querySelectorAll(\"[data-radix-focus-guard]\").forEach(r=>r.remove()),ud--}},[])}function l1(){const e=document.createElement(\"span\");return e.setAttribute(\"data-radix-focus-guard\",\"\"),e.tabIndex=0,e.style.cssText=\"outline: none; opacity: 0; position: fixed; pointer-events: none\",e}var mh=function(e,t){return mh=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&(n[o]=r[o])},mh(e,t)};function M_(e,t){if(typeof t!=\"function\"&&t!==null)throw new TypeError(\"Class extends value \"+String(t)+\" is not a constructor or null\");mh(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var G=function(){return G=Object.assign||function(t){for(var n,r=1,o=arguments.length;r<o;r++){n=arguments[r];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},G.apply(this,arguments)};function yt(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==\"function\")for(var o=0,r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n}function Ie(e,t){var n=typeof Symbol==\"function\"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),o,i=[],s;try{for(;(t===void 0||t-- >0)&&!(o=r.next()).done;)i.push(o.value)}catch(a){s={error:a}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function _n(e,t,n){if(n||arguments.length===2)for(var r=0,o=t.length,i;r<o;r++)(i||!(r in t))&&(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}var cc=\"right-scroll-bar-position\",uc=\"width-before-scroll-bar\",BI=\"with-scroll-bars-hidden\",zI=\"--removed-body-scroll-bar-size\";function HI(e,t){return typeof e==\"function\"?e(t):e&&(e.current=t),e}function GI(e,t){var n=h.useState(function(){return{value:e,callback:t,facade:{get current(){return n.value},set current(r){var o=n.value;o!==r&&(n.value=r,n.callback(r,o))}}}})[0];return n.callback=t,n.facade}function WI(e,t){return GI(t||null,function(n){return e.forEach(function(r){return HI(r,n)})})}function QI(e){return e}function YI(e,t){t===void 0&&(t=QI);var n=[],r=!1,o={read:function(){if(r)throw new Error(\"Sidecar: could not `read` from an `assigned` medium. `read` could be used only with `useMedium`.\");return n.length?n[n.length-1]:e},useMedium:function(i){var s=t(i,r);return n.push(s),function(){n=n.filter(function(a){return a!==s})}},assignSyncMedium:function(i){for(r=!0;n.length;){var s=n;n=[],s.forEach(i)}n={push:function(a){return i(a)},filter:function(){return n}}},assignMedium:function(i){r=!0;var s=[];if(n.length){var a=n;n=[],a.forEach(i),s=n}var l=function(){var u=s;s=[],u.forEach(i)},c=function(){return Promise.resolve().then(l)};c(),n={push:function(u){s.push(u),c()},filter:function(u){return s=s.filter(u),n}}}};return o}function ZI(e){e===void 0&&(e={});var t=YI(null);return t.options=G({async:!0,ssr:!1},e),t}var V_=function(e){var t=e.sideCar,n=yt(e,[\"sideCar\"]);if(!t)throw new Error(\"Sidecar: please provide `sideCar` property to import the right car\");var r=t.read();if(!r)throw new Error(\"Sidecar medium not found\");return h.createElement(r,G({},n))};V_.isSideCarExport=!0;function XI(e,t){return e.useMedium(t),V_}var j_=ZI(),fd=function(){},Yu=h.forwardRef(function(e,t){var n=h.useRef(null),r=h.useState({onScrollCapture:fd,onWheelCapture:fd,onTouchMoveCapture:fd}),o=r[0],i=r[1],s=e.forwardProps,a=e.children,l=e.className,c=e.removeScrollBar,u=e.enabled,d=e.shards,p=e.sideCar,f=e.noIsolation,m=e.inert,v=e.allowPinchZoom,b=e.as,y=b===void 0?\"div\":b,g=yt(e,[\"forwardProps\",\"children\",\"className\",\"removeScrollBar\",\"enabled\",\"shards\",\"sideCar\",\"noIsolation\",\"inert\",\"allowPinchZoom\",\"as\"]),E=p,x=WI([n,t]),w=G(G({},g),o);return h.createElement(h.Fragment,null,u&&h.createElement(E,{sideCar:j_,removeScrollBar:c,shards:d,noIsolation:f,inert:m,setCallbacks:i,allowPinchZoom:!!v,lockRef:n}),s?h.cloneElement(h.Children.only(a),G(G({},w),{ref:x})):h.createElement(y,G({},w,{className:l,ref:x}),a))});Yu.defaultProps={enabled:!0,removeScrollBar:!0,inert:!1};Yu.classNames={fullWidth:uc,zeroRight:cc};var c1,JI=function(){if(c1)return c1;if(typeof __webpack_nonce__<\"u\")return __webpack_nonce__};function KI(){if(!document)return null;var e=document.createElement(\"style\");e.type=\"text/css\";var t=JI();return t&&e.setAttribute(\"nonce\",t),e}function e5(e,t){e.styleSheet?e.styleSheet.cssText=t:e.appendChild(document.createTextNode(t))}function t5(e){var t=document.head||document.getElementsByTagName(\"head\")[0];t.appendChild(e)}var n5=function(){var e=0,t=null;return{add:function(n){e==0&&(t=KI())&&(e5(t,n),t5(t)),e++},remove:function(){e--,!e&&t&&(t.parentNode&&t.parentNode.removeChild(t),t=null)}}},r5=function(){var e=n5();return function(t,n){h.useEffect(function(){return e.add(t),function(){e.remove()}},[t&&n])}},q_=function(){var e=r5(),t=function(n){var r=n.styles,o=n.dynamic;return e(r,o),null};return t},o5={left:0,top:0,right:0,gap:0},dd=function(e){return parseInt(e||\"\",10)||0},i5=function(e){var t=window.getComputedStyle(document.body),n=t[e===\"padding\"?\"paddingLeft\":\"marginLeft\"],r=t[e===\"padding\"?\"paddingTop\":\"marginTop\"],o=t[e===\"padding\"?\"paddingRight\":\"marginRight\"];return[dd(n),dd(r),dd(o)]},s5=function(e){if(e===void 0&&(e=\"margin\"),typeof window>\"u\")return o5;var t=i5(e),n=document.documentElement.clientWidth,r=window.innerWidth;return{left:t[0],top:t[1],right:t[2],gap:Math.max(0,r-n+t[2]-t[0])}},a5=q_(),l5=function(e,t,n,r){var o=e.left,i=e.top,s=e.right,a=e.gap;return n===void 0&&(n=\"margin\"),`\n  .`.concat(BI,` {\n   overflow: hidden `).concat(r,`;\n   padding-right: `).concat(a,\"px \").concat(r,`;\n  }\n  body {\n    overflow: hidden `).concat(r,`;\n    overscroll-behavior: contain;\n    `).concat([t&&\"position: relative \".concat(r,\";\"),n===\"margin\"&&`\n    padding-left: `.concat(o,`px;\n    padding-top: `).concat(i,`px;\n    padding-right: `).concat(s,`px;\n    margin-left:0;\n    margin-top:0;\n    margin-right: `).concat(a,\"px \").concat(r,`;\n    `),n===\"padding\"&&\"padding-right: \".concat(a,\"px \").concat(r,\";\")].filter(Boolean).join(\"\"),`\n  }\n  \n  .`).concat(cc,` {\n    right: `).concat(a,\"px \").concat(r,`;\n  }\n  \n  .`).concat(uc,` {\n    margin-right: `).concat(a,\"px \").concat(r,`;\n  }\n  \n  .`).concat(cc,\" .\").concat(cc,` {\n    right: 0 `).concat(r,`;\n  }\n  \n  .`).concat(uc,\" .\").concat(uc,` {\n    margin-right: 0 `).concat(r,`;\n  }\n  \n  body {\n    `).concat(zI,\": \").concat(a,`px;\n  }\n`)},c5=function(e){var t=e.noRelative,n=e.noImportant,r=e.gapMode,o=r===void 0?\"margin\":r,i=h.useMemo(function(){return s5(o)},[o]);return h.createElement(a5,{styles:l5(i,!t,o,n?\"\":\"!important\")})},vh=!1;if(typeof window<\"u\")try{var Nl=Object.defineProperty({},\"passive\",{get:function(){return vh=!0,!0}});window.addEventListener(\"test\",Nl,Nl),window.removeEventListener(\"test\",Nl,Nl)}catch{vh=!1}var Zo=vh?{passive:!1}:!1,u5=function(e){return e.tagName===\"TEXTAREA\"},U_=function(e,t){var n=window.getComputedStyle(e);return n[t]!==\"hidden\"&&!(n.overflowY===n.overflowX&&!u5(e)&&n[t]===\"visible\")},f5=function(e){return U_(e,\"overflowY\")},d5=function(e){return U_(e,\"overflowX\")},u1=function(e,t){var n=t;do{typeof ShadowRoot<\"u\"&&n instanceof ShadowRoot&&(n=n.host);var r=B_(e,n);if(r){var o=z_(e,n),i=o[1],s=o[2];if(i>s)return!0}n=n.parentNode}while(n&&n!==document.body);return!1},p5=function(e){var t=e.scrollTop,n=e.scrollHeight,r=e.clientHeight;return[t,n,r]},h5=function(e){var t=e.scrollLeft,n=e.scrollWidth,r=e.clientWidth;return[t,n,r]},B_=function(e,t){return e===\"v\"?f5(t):d5(t)},z_=function(e,t){return e===\"v\"?p5(t):h5(t)},m5=function(e,t){return e===\"h\"&&t===\"rtl\"?-1:1},v5=function(e,t,n,r,o){var i=m5(e,window.getComputedStyle(t).direction),s=i*r,a=n.target,l=t.contains(a),c=!1,u=s>0,d=0,p=0;do{var f=z_(e,a),m=f[0],v=f[1],b=f[2],y=v-b-i*m;(m||y)&&B_(e,a)&&(d+=y,p+=m),a=a.parentNode}while(!l&&a!==document.body||l&&(t.contains(a)||t===a));return(u&&(o&&d===0||!o&&s>d)||!u&&(o&&p===0||!o&&-s>p))&&(c=!0),c},Al=function(e){return\"changedTouches\"in e?[e.changedTouches[0].clientX,e.changedTouches[0].clientY]:[0,0]},f1=function(e){return[e.deltaX,e.deltaY]},d1=function(e){return e&&\"current\"in e?e.current:e},g5=function(e,t){return e[0]===t[0]&&e[1]===t[1]},y5=function(e){return`\n  .block-interactivity-`.concat(e,` {pointer-events: none;}\n  .allow-interactivity-`).concat(e,` {pointer-events: all;}\n`)},E5=0,Xo=[];function b5(e){var t=h.useRef([]),n=h.useRef([0,0]),r=h.useRef(),o=h.useState(E5++)[0],i=h.useState(function(){return q_()})[0],s=h.useRef(e);h.useEffect(function(){s.current=e},[e]),h.useEffect(function(){if(e.inert){document.body.classList.add(\"block-interactivity-\".concat(o));var v=_n([e.lockRef.current],(e.shards||[]).map(d1),!0).filter(Boolean);return v.forEach(function(b){return b.classList.add(\"allow-interactivity-\".concat(o))}),function(){document.body.classList.remove(\"block-interactivity-\".concat(o)),v.forEach(function(b){return b.classList.remove(\"allow-interactivity-\".concat(o))})}}},[e.inert,e.lockRef.current,e.shards]);var a=h.useCallback(function(v,b){if(\"touches\"in v&&v.touches.length===2)return!s.current.allowPinchZoom;var y=Al(v),g=n.current,E=\"deltaX\"in v?v.deltaX:g[0]-y[0],x=\"deltaY\"in v?v.deltaY:g[1]-y[1],w,C=v.target,T=Math.abs(E)>Math.abs(x)?\"h\":\"v\";if(\"touches\"in v&&T===\"h\"&&C.type===\"range\")return!1;var A=u1(T,C);if(!A)return!0;if(A?w=T:(w=T===\"v\"?\"h\":\"v\",A=u1(T,C)),!A)return!1;if(!r.current&&\"changedTouches\"in v&&(E||x)&&(r.current=w),!w)return!0;var S=r.current||w;return v5(S,b,v,S===\"h\"?E:x,!0)},[]),l=h.useCallback(function(v){var b=v;if(!(!Xo.length||Xo[Xo.length-1]!==i)){var y=\"deltaY\"in b?f1(b):Al(b),g=t.current.filter(function(w){return w.name===b.type&&w.target===b.target&&g5(w.delta,y)})[0];if(g&&g.should){b.cancelable&&b.preventDefault();return}if(!g){var E=(s.current.shards||[]).map(d1).filter(Boolean).filter(function(w){return w.contains(b.target)}),x=E.length>0?a(b,E[0]):!s.current.noIsolation;x&&b.cancelable&&b.preventDefault()}}},[]),c=h.useCallback(function(v,b,y,g){var E={name:v,delta:b,target:y,should:g};t.current.push(E),setTimeout(function(){t.current=t.current.filter(function(x){return x!==E})},1)},[]),u=h.useCallback(function(v){n.current=Al(v),r.current=void 0},[]),d=h.useCallback(function(v){c(v.type,f1(v),v.target,a(v,e.lockRef.current))},[]),p=h.useCallback(function(v){c(v.type,Al(v),v.target,a(v,e.lockRef.current))},[]);h.useEffect(function(){return Xo.push(i),e.setCallbacks({onScrollCapture:d,onWheelCapture:d,onTouchMoveCapture:p}),document.addEventListener(\"wheel\",l,Zo),document.addEventListener(\"touchmove\",l,Zo),document.addEventListener(\"touchstart\",u,Zo),function(){Xo=Xo.filter(function(v){return v!==i}),document.removeEventListener(\"wheel\",l,Zo),document.removeEventListener(\"touchmove\",l,Zo),document.removeEventListener(\"touchstart\",u,Zo)}},[]);var f=e.removeScrollBar,m=e.inert;return h.createElement(h.Fragment,null,m?h.createElement(i,{styles:y5(o)}):null,f?h.createElement(c5,{gapMode:\"margin\"}):null)}const x5=XI(j_,b5);var H_=h.forwardRef(function(e,t){return h.createElement(Yu,G({},e,{ref:t,sideCar:x5}))});H_.classNames=Yu.classNames;const G_=H_;var w5=function(e){if(typeof document>\"u\")return null;var t=Array.isArray(e)?e[0]:e;return t.ownerDocument.body},Jo=new WeakMap,Dl=new WeakMap,Il={},pd=0,W_=function(e){return e&&(e.host||W_(e.parentNode))},_5=function(e,t){return t.map(function(n){if(e.contains(n))return n;var r=W_(n);return r&&e.contains(r)?r:(console.error(\"aria-hidden\",n,\"in not contained inside\",e,\". Doing nothing\"),null)}).filter(function(n){return!!n})},S5=function(e,t,n,r){var o=_5(t,Array.isArray(e)?e:[e]);Il[n]||(Il[n]=new WeakMap);var i=Il[n],s=[],a=new Set,l=new Set(o),c=function(d){!d||a.has(d)||(a.add(d),c(d.parentNode))};o.forEach(c);var u=function(d){!d||l.has(d)||Array.prototype.forEach.call(d.children,function(p){if(a.has(p))u(p);else{var f=p.getAttribute(r),m=f!==null&&f!==\"false\",v=(Jo.get(p)||0)+1,b=(i.get(p)||0)+1;Jo.set(p,v),i.set(p,b),s.push(p),v===1&&m&&Dl.set(p,!0),b===1&&p.setAttribute(n,\"true\"),m||p.setAttribute(r,\"true\")}})};return u(t),a.clear(),pd++,function(){s.forEach(function(d){var p=Jo.get(d)-1,f=i.get(d)-1;Jo.set(d,p),i.set(d,f),p||(Dl.has(d)||d.removeAttribute(r),Dl.delete(d)),f||d.removeAttribute(n)}),pd--,pd||(Jo=new WeakMap,Jo=new WeakMap,Dl=new WeakMap,Il={})}},Q_=function(e,t,n){n===void 0&&(n=\"data-aria-hidden\");var r=Array.from(Array.isArray(e)?e:[e]),o=t||w5(e);return o?(r.push.apply(r,Array.from(o.querySelectorAll(\"[aria-live]\"))),S5(r,o,n,\"aria-hidden\")):function(){return null}};const Y_=\"Dialog\",[Z_,l_e]=Bo(Y_),[C5,An]=Z_(Y_),T5=e=>{const{__scopeDialog:t,children:n,open:r,defaultOpen:o,onOpenChange:i,modal:s=!0}=e,a=h.useRef(null),l=h.useRef(null),[c=!1,u]=Qu({prop:r,defaultProp:o,onChange:i});return h.createElement(C5,{scope:t,triggerRef:a,contentRef:l,contentId:_o(),titleId:_o(),descriptionId:_o(),open:c,onOpenChange:u,onOpenToggle:h.useCallback(()=>u(d=>!d),[u]),modal:s},n)},k5=\"DialogTrigger\",N5=h.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=An(k5,n),i=at(t,o.triggerRef);return h.createElement(gt.button,oe({type:\"button\",\"aria-haspopup\":\"dialog\",\"aria-expanded\":o.open,\"aria-controls\":o.contentId,\"data-state\":sv(o.open)},r,{ref:i,onClick:ae(e.onClick,o.onOpenToggle)}))}),X_=\"DialogPortal\",[A5,J_]=Z_(X_,{forceMount:void 0}),D5=e=>{const{__scopeDialog:t,forceMount:n,children:r,container:o}=e,i=An(X_,t);return h.createElement(A5,{scope:t,forceMount:n},h.Children.map(r,s=>h.createElement(Xr,{present:n||i.open},h.createElement(iv,{asChild:!0,container:o},s))))},gh=\"DialogOverlay\",I5=h.forwardRef((e,t)=>{const n=J_(gh,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=An(gh,e.__scopeDialog);return i.modal?h.createElement(Xr,{present:r||i.open},h.createElement(R5,oe({},o,{ref:t}))):null}),R5=h.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=An(gh,n);return h.createElement(G_,{as:zi,allowPinchZoom:!0,shards:[o.contentRef]},h.createElement(gt.div,oe({\"data-state\":sv(o.open)},r,{ref:t,style:{pointerEvents:\"auto\",...r.style}})))}),va=\"DialogContent\",L5=h.forwardRef((e,t)=>{const n=J_(va,e.__scopeDialog),{forceMount:r=n.forceMount,...o}=e,i=An(va,e.__scopeDialog);return h.createElement(Xr,{present:r||i.open},i.modal?h.createElement(O5,oe({},o,{ref:t})):h.createElement(P5,oe({},o,{ref:t})))}),O5=h.forwardRef((e,t)=>{const n=An(va,e.__scopeDialog),r=h.useRef(null),o=at(t,n.contentRef,r);return h.useEffect(()=>{const i=r.current;if(i)return Q_(i)},[]),h.createElement(K_,oe({},e,{ref:o,trapFocus:n.open,disableOutsidePointerEvents:!0,onCloseAutoFocus:ae(e.onCloseAutoFocus,i=>{var s;i.preventDefault(),(s=n.triggerRef.current)===null||s===void 0||s.focus()}),onPointerDownOutside:ae(e.onPointerDownOutside,i=>{const s=i.detail.originalEvent,a=s.button===0&&s.ctrlKey===!0;(s.button===2||a)&&i.preventDefault()}),onFocusOutside:ae(e.onFocusOutside,i=>i.preventDefault())}))}),P5=h.forwardRef((e,t)=>{const n=An(va,e.__scopeDialog),r=h.useRef(!1),o=h.useRef(!1);return h.createElement(K_,oe({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,onCloseAutoFocus:i=>{var s;if((s=e.onCloseAutoFocus)===null||s===void 0||s.call(e,i),!i.defaultPrevented){var a;r.current||(a=n.triggerRef.current)===null||a===void 0||a.focus(),i.preventDefault()}r.current=!1,o.current=!1},onInteractOutside:i=>{var s,a;(s=e.onInteractOutside)===null||s===void 0||s.call(e,i),i.defaultPrevented||(r.current=!0,i.detail.originalEvent.type===\"pointerdown\"&&(o.current=!0));const l=i.target;((a=n.triggerRef.current)===null||a===void 0?void 0:a.contains(l))&&i.preventDefault(),i.detail.originalEvent.type===\"focusin\"&&o.current&&i.preventDefault()}}))}),K_=h.forwardRef((e,t)=>{const{__scopeDialog:n,trapFocus:r,onOpenAutoFocus:o,onCloseAutoFocus:i,...s}=e,a=An(va,n),l=h.useRef(null),c=at(t,l);return F_(),h.createElement(h.Fragment,null,h.createElement(P_,{asChild:!0,loop:!0,trapped:r,onMountAutoFocus:o,onUnmountAutoFocus:i},h.createElement(ov,oe({role:\"dialog\",id:a.contentId,\"aria-describedby\":a.descriptionId,\"aria-labelledby\":a.titleId,\"data-state\":sv(a.open)},s,{ref:c,onDismiss:()=>a.onOpenChange(!1)}))),!1)}),$5=\"DialogTitle\",F5=h.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=An($5,n);return h.createElement(gt.h2,oe({id:o.titleId},r,{ref:t}))}),M5=\"DialogDescription\",V5=h.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=An(M5,n);return h.createElement(gt.p,oe({id:o.descriptionId},r,{ref:t}))}),j5=\"DialogClose\",q5=h.forwardRef((e,t)=>{const{__scopeDialog:n,...r}=e,o=An(j5,n);return h.createElement(gt.button,oe({type:\"button\"},r,{ref:t,onClick:ae(e.onClick,()=>o.onOpenChange(!1))}))});function sv(e){return e?\"open\":\"closed\"}const U5=T5,B5=N5,z5=D5,H5=I5,G5=L5,W5=F5,Q5=V5,Y5=q5,Z5=h.forwardRef((e,t)=>h.createElement(gt.span,oe({},e,{ref:t,style:{position:\"absolute\",border:0,width:1,height:1,padding:0,margin:-1,overflow:\"hidden\",clip:\"rect(0, 0, 0, 0)\",whiteSpace:\"nowrap\",wordWrap:\"normal\",...e.style}}))),eS=Z5;function tS(e){const t=e+\"CollectionProvider\",[n,r]=Bo(t),[o,i]=n(t,{collectionRef:{current:null},itemMap:new Map}),s=f=>{const{scope:m,children:v}=f,b=$.useRef(null),y=$.useRef(new Map).current;return $.createElement(o,{scope:m,itemMap:y,collectionRef:b},v)},a=e+\"CollectionSlot\",l=$.forwardRef((f,m)=>{const{scope:v,children:b}=f,y=i(a,v),g=at(m,y.collectionRef);return $.createElement(zi,{ref:g},b)}),c=e+\"CollectionItemSlot\",u=\"data-radix-collection-item\",d=$.forwardRef((f,m)=>{const{scope:v,children:b,...y}=f,g=$.useRef(null),E=at(m,g),x=i(c,v);return $.useEffect(()=>(x.itemMap.set(g,{ref:g,...y}),()=>void x.itemMap.delete(g))),$.createElement(zi,{[u]:\"\",ref:E},b)});function p(f){const m=i(e+\"CollectionConsumer\",f);return $.useCallback(()=>{const b=m.collectionRef.current;if(!b)return[];const y=Array.from(b.querySelectorAll(`[${u}]`));return Array.from(m.itemMap.values()).sort((x,w)=>y.indexOf(x.ref.current)-y.indexOf(w.ref.current))},[m.collectionRef,m.itemMap])}return[{Provider:s,Slot:l,ItemSlot:d},p,r]}const X5=h.createContext(void 0);function nS(e){const t=h.useContext(X5);return e||t||\"ltr\"}const J5=[\"top\",\"right\",\"bottom\",\"left\"],zr=Math.min,Pt=Math.max,Zc=Math.round,Rl=Math.floor,Hr=e=>({x:e,y:e}),K5={left:\"right\",right:\"left\",bottom:\"top\",top:\"bottom\"},eR={start:\"end\",end:\"start\"};function yh(e,t,n){return Pt(e,zr(t,n))}function lr(e,t){return typeof e==\"function\"?e(t):e}function cr(e){return e.split(\"-\")[0]}function es(e){return e.split(\"-\")[1]}function av(e){return e===\"x\"?\"y\":\"x\"}function lv(e){return e===\"y\"?\"height\":\"width\"}function ts(e){return[\"top\",\"bottom\"].includes(cr(e))?\"y\":\"x\"}function cv(e){return av(ts(e))}function tR(e,t,n){n===void 0&&(n=!1);const r=es(e),o=cv(e),i=lv(o);let s=o===\"x\"?r===(n?\"end\":\"start\")?\"right\":\"left\":r===\"start\"?\"bottom\":\"top\";return t.reference[i]>t.floating[i]&&(s=Xc(s)),[s,Xc(s)]}function nR(e){const t=Xc(e);return[Eh(e),t,Eh(t)]}function Eh(e){return e.replace(/start|end/g,t=>eR[t])}function rR(e,t,n){const r=[\"left\",\"right\"],o=[\"right\",\"left\"],i=[\"top\",\"bottom\"],s=[\"bottom\",\"top\"];switch(e){case\"top\":case\"bottom\":return n?t?o:r:t?r:o;case\"left\":case\"right\":return t?i:s;default:return[]}}function oR(e,t,n,r){const o=es(e);let i=rR(cr(e),n===\"start\",r);return o&&(i=i.map(s=>s+\"-\"+o),t&&(i=i.concat(i.map(Eh)))),i}function Xc(e){return e.replace(/left|right|bottom|top/g,t=>K5[t])}function iR(e){return{top:0,right:0,bottom:0,left:0,...e}}function rS(e){return typeof e!=\"number\"?iR(e):{top:e,right:e,bottom:e,left:e}}function Jc(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function p1(e,t,n){let{reference:r,floating:o}=e;const i=ts(t),s=cv(t),a=lv(s),l=cr(t),c=i===\"y\",u=r.x+r.width/2-o.width/2,d=r.y+r.height/2-o.height/2,p=r[a]/2-o[a]/2;let f;switch(l){case\"top\":f={x:u,y:r.y-o.height};break;case\"bottom\":f={x:u,y:r.y+r.height};break;case\"right\":f={x:r.x+r.width,y:d};break;case\"left\":f={x:r.x-o.width,y:d};break;default:f={x:r.x,y:r.y}}switch(es(t)){case\"start\":f[s]-=p*(n&&c?-1:1);break;case\"end\":f[s]+=p*(n&&c?-1:1);break}return f}const sR=async(e,t,n)=>{const{placement:r=\"bottom\",strategy:o=\"absolute\",middleware:i=[],platform:s}=n,a=i.filter(Boolean),l=await(s.isRTL==null?void 0:s.isRTL(t));let c=await s.getElementRects({reference:e,floating:t,strategy:o}),{x:u,y:d}=p1(c,r,l),p=r,f={},m=0;for(let v=0;v<a.length;v++){const{name:b,fn:y}=a[v],{x:g,y:E,data:x,reset:w}=await y({x:u,y:d,initialPlacement:r,placement:p,strategy:o,middlewareData:f,rects:c,platform:s,elements:{reference:e,floating:t}});if(u=g??u,d=E??d,f={...f,[b]:{...f[b],...x}},w&&m<=50){m++,typeof w==\"object\"&&(w.placement&&(p=w.placement),w.rects&&(c=w.rects===!0?await s.getElementRects({reference:e,floating:t,strategy:o}):w.rects),{x:u,y:d}=p1(c,p,l)),v=-1;continue}}return{x:u,y:d,placement:p,strategy:o,middlewareData:f}};async function ga(e,t){var n;t===void 0&&(t={});const{x:r,y:o,platform:i,rects:s,elements:a,strategy:l}=e,{boundary:c=\"clippingAncestors\",rootBoundary:u=\"viewport\",elementContext:d=\"floating\",altBoundary:p=!1,padding:f=0}=lr(t,e),m=rS(f),b=a[p?d===\"floating\"?\"reference\":\"floating\":d],y=Jc(await i.getClippingRect({element:(n=await(i.isElement==null?void 0:i.isElement(b)))==null||n?b:b.contextElement||await(i.getDocumentElement==null?void 0:i.getDocumentElement(a.floating)),boundary:c,rootBoundary:u,strategy:l})),g=d===\"floating\"?{...s.floating,x:r,y:o}:s.reference,E=await(i.getOffsetParent==null?void 0:i.getOffsetParent(a.floating)),x=await(i.isElement==null?void 0:i.isElement(E))?await(i.getScale==null?void 0:i.getScale(E))||{x:1,y:1}:{x:1,y:1},w=Jc(i.convertOffsetParentRelativeRectToViewportRelativeRect?await i.convertOffsetParentRelativeRectToViewportRelativeRect({rect:g,offsetParent:E,strategy:l}):g);return{top:(y.top-w.top+m.top)/x.y,bottom:(w.bottom-y.bottom+m.bottom)/x.y,left:(y.left-w.left+m.left)/x.x,right:(w.right-y.right+m.right)/x.x}}const h1=e=>({name:\"arrow\",options:e,async fn(t){const{x:n,y:r,placement:o,rects:i,platform:s,elements:a,middlewareData:l}=t,{element:c,padding:u=0}=lr(e,t)||{};if(c==null)return{};const d=rS(u),p={x:n,y:r},f=cv(o),m=lv(f),v=await s.getDimensions(c),b=f===\"y\",y=b?\"top\":\"left\",g=b?\"bottom\":\"right\",E=b?\"clientHeight\":\"clientWidth\",x=i.reference[m]+i.reference[f]-p[f]-i.floating[m],w=p[f]-i.reference[f],C=await(s.getOffsetParent==null?void 0:s.getOffsetParent(c));let T=C?C[E]:0;(!T||!await(s.isElement==null?void 0:s.isElement(C)))&&(T=a.floating[E]||i.floating[m]);const A=x/2-w/2,S=T/2-v[m]/2-1,k=zr(d[y],S),q=zr(d[g],S),H=k,V=T-v[m]-q,N=T/2-v[m]/2+A,M=yh(H,N,V),R=!l.arrow&&es(o)!=null&&N!=M&&i.reference[m]/2-(N<H?k:q)-v[m]/2<0,I=R?N<H?N-H:N-V:0;return{[f]:p[f]+I,data:{[f]:M,centerOffset:N-M-I,...R&&{alignmentOffset:I}},reset:R}}}),aR=function(e){return e===void 0&&(e={}),{name:\"flip\",options:e,async fn(t){var n,r;const{placement:o,middlewareData:i,rects:s,initialPlacement:a,platform:l,elements:c}=t,{mainAxis:u=!0,crossAxis:d=!0,fallbackPlacements:p,fallbackStrategy:f=\"bestFit\",fallbackAxisSideDirection:m=\"none\",flipAlignment:v=!0,...b}=lr(e,t);if((n=i.arrow)!=null&&n.alignmentOffset)return{};const y=cr(o),g=cr(a)===a,E=await(l.isRTL==null?void 0:l.isRTL(c.floating)),x=p||(g||!v?[Xc(a)]:nR(a));!p&&m!==\"none\"&&x.push(...oR(a,v,m,E));const w=[a,...x],C=await ga(t,b),T=[];let A=((r=i.flip)==null?void 0:r.overflows)||[];if(u&&T.push(C[y]),d){const H=tR(o,s,E);T.push(C[H[0]],C[H[1]])}if(A=[...A,{placement:o,overflows:T}],!T.every(H=>H<=0)){var S,k;const H=(((S=i.flip)==null?void 0:S.index)||0)+1,V=w[H];if(V)return{data:{index:H,overflows:A},reset:{placement:V}};let N=(k=A.filter(M=>M.overflows[0]<=0).sort((M,R)=>M.overflows[1]-R.overflows[1])[0])==null?void 0:k.placement;if(!N)switch(f){case\"bestFit\":{var q;const M=(q=A.map(R=>[R.placement,R.overflows.filter(I=>I>0).reduce((I,D)=>I+D,0)]).sort((R,I)=>R[1]-I[1])[0])==null?void 0:q[0];M&&(N=M);break}case\"initialPlacement\":N=a;break}if(o!==N)return{reset:{placement:N}}}return{}}}};function m1(e,t){return{top:e.top-t.height,right:e.right-t.width,bottom:e.bottom-t.height,left:e.left-t.width}}function v1(e){return J5.some(t=>e[t]>=0)}const lR=function(e){return e===void 0&&(e={}),{name:\"hide\",options:e,async fn(t){const{rects:n}=t,{strategy:r=\"referenceHidden\",...o}=lr(e,t);switch(r){case\"referenceHidden\":{const i=await ga(t,{...o,elementContext:\"reference\"}),s=m1(i,n.reference);return{data:{referenceHiddenOffsets:s,referenceHidden:v1(s)}}}case\"escaped\":{const i=await ga(t,{...o,altBoundary:!0}),s=m1(i,n.floating);return{data:{escapedOffsets:s,escaped:v1(s)}}}default:return{}}}}};async function cR(e,t){const{placement:n,platform:r,elements:o}=e,i=await(r.isRTL==null?void 0:r.isRTL(o.floating)),s=cr(n),a=es(n),l=ts(n)===\"y\",c=[\"left\",\"top\"].includes(s)?-1:1,u=i&&l?-1:1,d=lr(t,e);let{mainAxis:p,crossAxis:f,alignmentAxis:m}=typeof d==\"number\"?{mainAxis:d,crossAxis:0,alignmentAxis:null}:{mainAxis:0,crossAxis:0,alignmentAxis:null,...d};return a&&typeof m==\"number\"&&(f=a===\"end\"?m*-1:m),l?{x:f*u,y:p*c}:{x:p*c,y:f*u}}const uR=function(e){return e===void 0&&(e=0),{name:\"offset\",options:e,async fn(t){const{x:n,y:r}=t,o=await cR(t,e);return{x:n+o.x,y:r+o.y,data:o}}}},fR=function(e){return e===void 0&&(e={}),{name:\"shift\",options:e,async fn(t){const{x:n,y:r,placement:o}=t,{mainAxis:i=!0,crossAxis:s=!1,limiter:a={fn:b=>{let{x:y,y:g}=b;return{x:y,y:g}}},...l}=lr(e,t),c={x:n,y:r},u=await ga(t,l),d=ts(cr(o)),p=av(d);let f=c[p],m=c[d];if(i){const b=p===\"y\"?\"top\":\"left\",y=p===\"y\"?\"bottom\":\"right\",g=f+u[b],E=f-u[y];f=yh(g,f,E)}if(s){const b=d===\"y\"?\"top\":\"left\",y=d===\"y\"?\"bottom\":\"right\",g=m+u[b],E=m-u[y];m=yh(g,m,E)}const v=a.fn({...t,[p]:f,[d]:m});return{...v,data:{x:v.x-n,y:v.y-r}}}}},dR=function(e){return e===void 0&&(e={}),{options:e,fn(t){const{x:n,y:r,placement:o,rects:i,middlewareData:s}=t,{offset:a=0,mainAxis:l=!0,crossAxis:c=!0}=lr(e,t),u={x:n,y:r},d=ts(o),p=av(d);let f=u[p],m=u[d];const v=lr(a,t),b=typeof v==\"number\"?{mainAxis:v,crossAxis:0}:{mainAxis:0,crossAxis:0,...v};if(l){const E=p===\"y\"?\"height\":\"width\",x=i.reference[p]-i.floating[E]+b.mainAxis,w=i.reference[p]+i.reference[E]-b.mainAxis;f<x?f=x:f>w&&(f=w)}if(c){var y,g;const E=p===\"y\"?\"width\":\"height\",x=[\"top\",\"left\"].includes(cr(o)),w=i.reference[d]-i.floating[E]+(x&&((y=s.offset)==null?void 0:y[d])||0)+(x?0:b.crossAxis),C=i.reference[d]+i.reference[E]+(x?0:((g=s.offset)==null?void 0:g[d])||0)-(x?b.crossAxis:0);m<w?m=w:m>C&&(m=C)}return{[p]:f,[d]:m}}}},pR=function(e){return e===void 0&&(e={}),{name:\"size\",options:e,async fn(t){const{placement:n,rects:r,platform:o,elements:i}=t,{apply:s=()=>{},...a}=lr(e,t),l=await ga(t,a),c=cr(n),u=es(n),d=ts(n)===\"y\",{width:p,height:f}=r.floating;let m,v;c===\"top\"||c===\"bottom\"?(m=c,v=u===(await(o.isRTL==null?void 0:o.isRTL(i.floating))?\"start\":\"end\")?\"left\":\"right\"):(v=c,m=u===\"end\"?\"top\":\"bottom\");const b=f-l[m],y=p-l[v],g=!t.middlewareData.shift;let E=b,x=y;if(d){const C=p-l.left-l.right;x=u||g?zr(y,C):C}else{const C=f-l.top-l.bottom;E=u||g?zr(b,C):C}if(g&&!u){const C=Pt(l.left,0),T=Pt(l.right,0),A=Pt(l.top,0),S=Pt(l.bottom,0);d?x=p-2*(C!==0||T!==0?C+T:Pt(l.left,l.right)):E=f-2*(A!==0||S!==0?A+S:Pt(l.top,l.bottom))}await s({...t,availableWidth:x,availableHeight:E});const w=await o.getDimensions(i.floating);return p!==w.width||f!==w.height?{reset:{rects:!0}}:{}}}};function Gr(e){return oS(e)?(e.nodeName||\"\").toLowerCase():\"#document\"}function Vt(e){var t;return(e==null||(t=e.ownerDocument)==null?void 0:t.defaultView)||window}function hr(e){var t;return(t=(oS(e)?e.ownerDocument:e.document)||window.document)==null?void 0:t.documentElement}function oS(e){return e instanceof Node||e instanceof Vt(e).Node}function ur(e){return e instanceof Element||e instanceof Vt(e).Element}function qn(e){return e instanceof HTMLElement||e instanceof Vt(e).HTMLElement}function g1(e){return typeof ShadowRoot>\"u\"?!1:e instanceof ShadowRoot||e instanceof Vt(e).ShadowRoot}function qa(e){const{overflow:t,overflowX:n,overflowY:r,display:o}=rn(e);return/auto|scroll|overlay|hidden|clip/.test(t+r+n)&&![\"inline\",\"contents\"].includes(o)}function hR(e){return[\"table\",\"td\",\"th\"].includes(Gr(e))}function uv(e){const t=fv(),n=rn(e);return n.transform!==\"none\"||n.perspective!==\"none\"||(n.containerType?n.containerType!==\"normal\":!1)||!t&&(n.backdropFilter?n.backdropFilter!==\"none\":!1)||!t&&(n.filter?n.filter!==\"none\":!1)||[\"transform\",\"perspective\",\"filter\"].some(r=>(n.willChange||\"\").includes(r))||[\"paint\",\"layout\",\"strict\",\"content\"].some(r=>(n.contain||\"\").includes(r))}function mR(e){let t=Hi(e);for(;qn(t)&&!Zu(t);){if(uv(t))return t;t=Hi(t)}return null}function fv(){return typeof CSS>\"u\"||!CSS.supports?!1:CSS.supports(\"-webkit-backdrop-filter\",\"none\")}function Zu(e){return[\"html\",\"body\",\"#document\"].includes(Gr(e))}function rn(e){return Vt(e).getComputedStyle(e)}function Xu(e){return ur(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Hi(e){if(Gr(e)===\"html\")return e;const t=e.assignedSlot||e.parentNode||g1(e)&&e.host||hr(e);return g1(t)?t.host:t}function iS(e){const t=Hi(e);return Zu(t)?e.ownerDocument?e.ownerDocument.body:e.body:qn(t)&&qa(t)?t:iS(t)}function ya(e,t,n){var r;t===void 0&&(t=[]),n===void 0&&(n=!0);const o=iS(e),i=o===((r=e.ownerDocument)==null?void 0:r.body),s=Vt(o);return i?t.concat(s,s.visualViewport||[],qa(o)?o:[],s.frameElement&&n?ya(s.frameElement):[]):t.concat(o,ya(o,[],n))}function sS(e){const t=rn(e);let n=parseFloat(t.width)||0,r=parseFloat(t.height)||0;const o=qn(e),i=o?e.offsetWidth:n,s=o?e.offsetHeight:r,a=Zc(n)!==i||Zc(r)!==s;return a&&(n=i,r=s),{width:n,height:r,$:a}}function dv(e){return ur(e)?e:e.contextElement}function Ni(e){const t=dv(e);if(!qn(t))return Hr(1);const n=t.getBoundingClientRect(),{width:r,height:o,$:i}=sS(t);let s=(i?Zc(n.width):n.width)/r,a=(i?Zc(n.height):n.height)/o;return(!s||!Number.isFinite(s))&&(s=1),(!a||!Number.isFinite(a))&&(a=1),{x:s,y:a}}const vR=Hr(0);function aS(e){const t=Vt(e);return!fv()||!t.visualViewport?vR:{x:t.visualViewport.offsetLeft,y:t.visualViewport.offsetTop}}function gR(e,t,n){return t===void 0&&(t=!1),!n||t&&n!==Vt(e)?!1:t}function Oo(e,t,n,r){t===void 0&&(t=!1),n===void 0&&(n=!1);const o=e.getBoundingClientRect(),i=dv(e);let s=Hr(1);t&&(r?ur(r)&&(s=Ni(r)):s=Ni(e));const a=gR(i,n,r)?aS(i):Hr(0);let l=(o.left+a.x)/s.x,c=(o.top+a.y)/s.y,u=o.width/s.x,d=o.height/s.y;if(i){const p=Vt(i),f=r&&ur(r)?Vt(r):r;let m=p.frameElement;for(;m&&r&&f!==p;){const v=Ni(m),b=m.getBoundingClientRect(),y=rn(m),g=b.left+(m.clientLeft+parseFloat(y.paddingLeft))*v.x,E=b.top+(m.clientTop+parseFloat(y.paddingTop))*v.y;l*=v.x,c*=v.y,u*=v.x,d*=v.y,l+=g,c+=E,m=Vt(m).frameElement}}return Jc({width:u,height:d,x:l,y:c})}function yR(e){let{rect:t,offsetParent:n,strategy:r}=e;const o=qn(n),i=hr(n);if(n===i)return t;let s={scrollLeft:0,scrollTop:0},a=Hr(1);const l=Hr(0);if((o||!o&&r!==\"fixed\")&&((Gr(n)!==\"body\"||qa(i))&&(s=Xu(n)),qn(n))){const c=Oo(n);a=Ni(n),l.x=c.x+n.clientLeft,l.y=c.y+n.clientTop}return{width:t.width*a.x,height:t.height*a.y,x:t.x*a.x-s.scrollLeft*a.x+l.x,y:t.y*a.y-s.scrollTop*a.y+l.y}}function ER(e){return Array.from(e.getClientRects())}function lS(e){return Oo(hr(e)).left+Xu(e).scrollLeft}function bR(e){const t=hr(e),n=Xu(e),r=e.ownerDocument.body,o=Pt(t.scrollWidth,t.clientWidth,r.scrollWidth,r.clientWidth),i=Pt(t.scrollHeight,t.clientHeight,r.scrollHeight,r.clientHeight);let s=-n.scrollLeft+lS(e);const a=-n.scrollTop;return rn(r).direction===\"rtl\"&&(s+=Pt(t.clientWidth,r.clientWidth)-o),{width:o,height:i,x:s,y:a}}function xR(e,t){const n=Vt(e),r=hr(e),o=n.visualViewport;let i=r.clientWidth,s=r.clientHeight,a=0,l=0;if(o){i=o.width,s=o.height;const c=fv();(!c||c&&t===\"fixed\")&&(a=o.offsetLeft,l=o.offsetTop)}return{width:i,height:s,x:a,y:l}}function wR(e,t){const n=Oo(e,!0,t===\"fixed\"),r=n.top+e.clientTop,o=n.left+e.clientLeft,i=qn(e)?Ni(e):Hr(1),s=e.clientWidth*i.x,a=e.clientHeight*i.y,l=o*i.x,c=r*i.y;return{width:s,height:a,x:l,y:c}}function y1(e,t,n){let r;if(t===\"viewport\")r=xR(e,n);else if(t===\"document\")r=bR(hr(e));else if(ur(t))r=wR(t,n);else{const o=aS(e);r={...t,x:t.x-o.x,y:t.y-o.y}}return Jc(r)}function cS(e,t){const n=Hi(e);return n===t||!ur(n)||Zu(n)?!1:rn(n).position===\"fixed\"||cS(n,t)}function _R(e,t){const n=t.get(e);if(n)return n;let r=ya(e,[],!1).filter(a=>ur(a)&&Gr(a)!==\"body\"),o=null;const i=rn(e).position===\"fixed\";let s=i?Hi(e):e;for(;ur(s)&&!Zu(s);){const a=rn(s),l=uv(s);!l&&a.position===\"fixed\"&&(o=null),(i?!l&&!o:!l&&a.position===\"static\"&&!!o&&[\"absolute\",\"fixed\"].includes(o.position)||qa(s)&&!l&&cS(e,s))?r=r.filter(u=>u!==s):o=a,s=Hi(s)}return t.set(e,r),r}function SR(e){let{element:t,boundary:n,rootBoundary:r,strategy:o}=e;const s=[...n===\"clippingAncestors\"?_R(t,this._c):[].concat(n),r],a=s[0],l=s.reduce((c,u)=>{const d=y1(t,u,o);return c.top=Pt(d.top,c.top),c.right=zr(d.right,c.right),c.bottom=zr(d.bottom,c.bottom),c.left=Pt(d.left,c.left),c},y1(t,a,o));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}}function CR(e){return sS(e)}function TR(e,t,n){const r=qn(t),o=hr(t),i=n===\"fixed\",s=Oo(e,!0,i,t);let a={scrollLeft:0,scrollTop:0};const l=Hr(0);if(r||!r&&!i)if((Gr(t)!==\"body\"||qa(o))&&(a=Xu(t)),r){const c=Oo(t,!0,i,t);l.x=c.x+t.clientLeft,l.y=c.y+t.clientTop}else o&&(l.x=lS(o));return{x:s.left+a.scrollLeft-l.x,y:s.top+a.scrollTop-l.y,width:s.width,height:s.height}}function E1(e,t){return!qn(e)||rn(e).position===\"fixed\"?null:t?t(e):e.offsetParent}function uS(e,t){const n=Vt(e);if(!qn(e))return n;let r=E1(e,t);for(;r&&hR(r)&&rn(r).position===\"static\";)r=E1(r,t);return r&&(Gr(r)===\"html\"||Gr(r)===\"body\"&&rn(r).position===\"static\"&&!uv(r))?n:r||mR(e)||n}const kR=async function(e){let{reference:t,floating:n,strategy:r}=e;const o=this.getOffsetParent||uS,i=this.getDimensions;return{reference:TR(t,await o(n),r),floating:{x:0,y:0,...await i(n)}}};function NR(e){return rn(e).direction===\"rtl\"}const AR={convertOffsetParentRelativeRectToViewportRelativeRect:yR,getDocumentElement:hr,getClippingRect:SR,getOffsetParent:uS,getElementRects:kR,getClientRects:ER,getDimensions:CR,getScale:Ni,isElement:ur,isRTL:NR};function DR(e,t){let n=null,r;const o=hr(e);function i(){clearTimeout(r),n&&n.disconnect(),n=null}function s(a,l){a===void 0&&(a=!1),l===void 0&&(l=1),i();const{left:c,top:u,width:d,height:p}=e.getBoundingClientRect();if(a||t(),!d||!p)return;const f=Rl(u),m=Rl(o.clientWidth-(c+d)),v=Rl(o.clientHeight-(u+p)),b=Rl(c),g={rootMargin:-f+\"px \"+-m+\"px \"+-v+\"px \"+-b+\"px\",threshold:Pt(0,zr(1,l))||1};let E=!0;function x(w){const C=w[0].intersectionRatio;if(C!==l){if(!E)return s();C?s(!1,C):r=setTimeout(()=>{s(!1,1e-7)},100)}E=!1}try{n=new IntersectionObserver(x,{...g,root:o.ownerDocument})}catch{n=new IntersectionObserver(x,g)}n.observe(e)}return s(!0),i}function IR(e,t,n,r){r===void 0&&(r={});const{ancestorScroll:o=!0,ancestorResize:i=!0,elementResize:s=typeof ResizeObserver==\"function\",layoutShift:a=typeof IntersectionObserver==\"function\",animationFrame:l=!1}=r,c=dv(e),u=o||i?[...c?ya(c):[],...ya(t)]:[];u.forEach(y=>{o&&y.addEventListener(\"scroll\",n,{passive:!0}),i&&y.addEventListener(\"resize\",n)});const d=c&&a?DR(c,n):null;let p=-1,f=null;s&&(f=new ResizeObserver(y=>{let[g]=y;g&&g.target===c&&f&&(f.unobserve(t),cancelAnimationFrame(p),p=requestAnimationFrame(()=>{f&&f.observe(t)})),n()}),c&&!l&&f.observe(c),f.observe(t));let m,v=l?Oo(e):null;l&&b();function b(){const y=Oo(e);v&&(y.x!==v.x||y.y!==v.y||y.width!==v.width||y.height!==v.height)&&n(),v=y,m=requestAnimationFrame(b)}return n(),()=>{u.forEach(y=>{o&&y.removeEventListener(\"scroll\",n),i&&y.removeEventListener(\"resize\",n)}),d&&d(),f&&f.disconnect(),f=null,l&&cancelAnimationFrame(m)}}const RR=(e,t,n)=>{const r=new Map,o={platform:AR,...n},i={...o.platform,_c:r};return sR(e,t,{...o,platform:i})},LR=e=>{function t(n){return{}.hasOwnProperty.call(n,\"current\")}return{name:\"arrow\",options:e,fn(n){const{element:r,padding:o}=typeof e==\"function\"?e(n):e;return r&&t(r)?r.current!=null?h1({element:r.current,padding:o}).fn(n):{}:r?h1({element:r,padding:o}).fn(n):{}}}};var fc=typeof document<\"u\"?h.useLayoutEffect:h.useEffect;function Kc(e,t){if(e===t)return!0;if(typeof e!=typeof t)return!1;if(typeof e==\"function\"&&e.toString()===t.toString())return!0;let n,r,o;if(e&&t&&typeof e==\"object\"){if(Array.isArray(e)){if(n=e.length,n!=t.length)return!1;for(r=n;r--!==0;)if(!Kc(e[r],t[r]))return!1;return!0}if(o=Object.keys(e),n=o.length,n!==Object.keys(t).length)return!1;for(r=n;r--!==0;)if(!{}.hasOwnProperty.call(t,o[r]))return!1;for(r=n;r--!==0;){const i=o[r];if(!(i===\"_owner\"&&e.$$typeof)&&!Kc(e[i],t[i]))return!1}return!0}return e!==e&&t!==t}function fS(e){return typeof window>\"u\"?1:(e.ownerDocument.defaultView||window).devicePixelRatio||1}function b1(e,t){const n=fS(e);return Math.round(t*n)/n}function x1(e){const t=h.useRef(e);return fc(()=>{t.current=e}),t}function OR(e){e===void 0&&(e={});const{placement:t=\"bottom\",strategy:n=\"absolute\",middleware:r=[],platform:o,elements:{reference:i,floating:s}={},transform:a=!0,whileElementsMounted:l,open:c}=e,[u,d]=h.useState({x:0,y:0,strategy:n,placement:t,middlewareData:{},isPositioned:!1}),[p,f]=h.useState(r);Kc(p,r)||f(r);const[m,v]=h.useState(null),[b,y]=h.useState(null),g=h.useCallback(R=>{R!=C.current&&(C.current=R,v(R))},[v]),E=h.useCallback(R=>{R!==T.current&&(T.current=R,y(R))},[y]),x=i||m,w=s||b,C=h.useRef(null),T=h.useRef(null),A=h.useRef(u),S=x1(l),k=x1(o),q=h.useCallback(()=>{if(!C.current||!T.current)return;const R={placement:t,strategy:n,middleware:p};k.current&&(R.platform=k.current),RR(C.current,T.current,R).then(I=>{const D={...I,isPositioned:!0};H.current&&!Kc(A.current,D)&&(A.current=D,Va.flushSync(()=>{d(D)}))})},[p,t,n,k]);fc(()=>{c===!1&&A.current.isPositioned&&(A.current.isPositioned=!1,d(R=>({...R,isPositioned:!1})))},[c]);const H=h.useRef(!1);fc(()=>(H.current=!0,()=>{H.current=!1}),[]),fc(()=>{if(x&&(C.current=x),w&&(T.current=w),x&&w){if(S.current)return S.current(x,w,q);q()}},[x,w,q,S]);const V=h.useMemo(()=>({reference:C,floating:T,setReference:g,setFloating:E}),[g,E]),N=h.useMemo(()=>({reference:x,floating:w}),[x,w]),M=h.useMemo(()=>{const R={position:n,left:0,top:0};if(!N.floating)return R;const I=b1(N.floating,u.x),D=b1(N.floating,u.y);return a?{...R,transform:\"translate(\"+I+\"px, \"+D+\"px)\",...fS(N.floating)>=1.5&&{willChange:\"transform\"}}:{position:n,left:I,top:D}},[n,a,N.floating,u.x,u.y]);return h.useMemo(()=>({...u,update:q,refs:V,elements:N,floatingStyles:M}),[u,q,V,N,M])}function PR(e){const[t,n]=h.useState(void 0);return Bi(()=>{if(e){n({width:e.offsetWidth,height:e.offsetHeight});const r=new ResizeObserver(o=>{if(!Array.isArray(o)||!o.length)return;const i=o[0];let s,a;if(\"borderBoxSize\"in i){const l=i.borderBoxSize,c=Array.isArray(l)?l[0]:l;s=c.inlineSize,a=c.blockSize}else s=e.offsetWidth,a=e.offsetHeight;n({width:s,height:a})});return r.observe(e,{box:\"border-box\"}),()=>r.unobserve(e)}else n(void 0)},[e]),t}const dS=\"Popper\",[pS,Ju]=Bo(dS),[$R,hS]=pS(dS),FR=e=>{const{__scopePopper:t,children:n}=e,[r,o]=h.useState(null);return h.createElement($R,{scope:t,anchor:r,onAnchorChange:o},n)},MR=\"PopperAnchor\",VR=h.forwardRef((e,t)=>{const{__scopePopper:n,virtualRef:r,...o}=e,i=hS(MR,n),s=h.useRef(null),a=at(t,s);return h.useEffect(()=>{i.onAnchorChange((r==null?void 0:r.current)||s.current)}),r?null:h.createElement(gt.div,oe({},o,{ref:a}))}),mS=\"PopperContent\",[jR,c_e]=pS(mS),qR=h.forwardRef((e,t)=>{var n,r,o,i,s,a,l,c;const{__scopePopper:u,side:d=\"bottom\",sideOffset:p=0,align:f=\"center\",alignOffset:m=0,arrowPadding:v=0,avoidCollisions:b=!0,collisionBoundary:y=[],collisionPadding:g=0,sticky:E=\"partial\",hideWhenDetached:x=!1,updatePositionStrategy:w=\"optimized\",onPlaced:C,...T}=e,A=hS(mS,u),[S,k]=h.useState(null),q=at(t,Qn=>k(Qn)),[H,V]=h.useState(null),N=PR(H),M=(n=N==null?void 0:N.width)!==null&&n!==void 0?n:0,R=(r=N==null?void 0:N.height)!==null&&r!==void 0?r:0,I=d+(f!==\"center\"?\"-\"+f:\"\"),D=typeof g==\"number\"?g:{top:0,right:0,bottom:0,left:0,...g},P=Array.isArray(y)?y:[y],U=P.length>0,Z={padding:D,boundary:P.filter(UR),altBoundary:U},{refs:ee,floatingStyles:te,placement:j,isPositioned:z,middlewareData:Y}=OR({strategy:\"fixed\",placement:I,whileElementsMounted:(...Qn)=>IR(...Qn,{animationFrame:w===\"always\"}),elements:{reference:A.anchor},middleware:[uR({mainAxis:p+R,alignmentAxis:m}),b&&fR({mainAxis:!0,crossAxis:!1,limiter:E===\"partial\"?dR():void 0,...Z}),b&&aR({...Z}),pR({...Z,apply:({elements:Qn,rects:kf,availableWidth:Nf,availableHeight:B2})=>{const{width:z2,height:H2}=kf.reference,ol=Qn.floating.style;ol.setProperty(\"--radix-popper-available-width\",`${Nf}px`),ol.setProperty(\"--radix-popper-available-height\",`${B2}px`),ol.setProperty(\"--radix-popper-anchor-width\",`${z2}px`),ol.setProperty(\"--radix-popper-anchor-height\",`${H2}px`)}}),H&&LR({element:H,padding:v}),BR({arrowWidth:M,arrowHeight:R}),x&&lR({strategy:\"referenceHidden\",...Z})]}),[be,lt]=vS(j),ze=jn(C);Bi(()=>{z&&(ze==null||ze())},[z,ze]);const ro=(o=Y.arrow)===null||o===void 0?void 0:o.x,fe=(i=Y.arrow)===null||i===void 0?void 0:i.y,ct=((s=Y.arrow)===null||s===void 0?void 0:s.centerOffset)!==0,[Qo,oo]=h.useState();return Bi(()=>{S&&oo(window.getComputedStyle(S).zIndex)},[S]),h.createElement(\"div\",{ref:ee.setFloating,\"data-radix-popper-content-wrapper\":\"\",style:{...te,transform:z?te.transform:\"translate(0, -200%)\",minWidth:\"max-content\",zIndex:Qo,\"--radix-popper-transform-origin\":[(a=Y.transformOrigin)===null||a===void 0?void 0:a.x,(l=Y.transformOrigin)===null||l===void 0?void 0:l.y].join(\" \")},dir:e.dir},h.createElement(jR,{scope:u,placedSide:be,onArrowChange:V,arrowX:ro,arrowY:fe,shouldHideArrow:ct},h.createElement(gt.div,oe({\"data-side\":be,\"data-align\":lt},T,{ref:q,style:{...T.style,animation:z?void 0:\"none\",opacity:(c=Y.hide)!==null&&c!==void 0&&c.referenceHidden?0:void 0}}))))});function UR(e){return e!==null}const BR=e=>({name:\"transformOrigin\",options:e,fn(t){var n,r,o,i,s;const{placement:a,rects:l,middlewareData:c}=t,d=((n=c.arrow)===null||n===void 0?void 0:n.centerOffset)!==0,p=d?0:e.arrowWidth,f=d?0:e.arrowHeight,[m,v]=vS(a),b={start:\"0%\",center:\"50%\",end:\"100%\"}[v],y=((r=(o=c.arrow)===null||o===void 0?void 0:o.x)!==null&&r!==void 0?r:0)+p/2,g=((i=(s=c.arrow)===null||s===void 0?void 0:s.y)!==null&&i!==void 0?i:0)+f/2;let E=\"\",x=\"\";return m===\"bottom\"?(E=d?b:`${y}px`,x=`${-f}px`):m===\"top\"?(E=d?b:`${y}px`,x=`${l.floating.height+f}px`):m===\"right\"?(E=`${-f}px`,x=d?b:`${g}px`):m===\"left\"&&(E=`${l.floating.width+f}px`,x=d?b:`${g}px`),{data:{x:E,y:x}}}});function vS(e){const[t,n=\"center\"]=e.split(\"-\");return[t,n]}const gS=FR,yS=VR,ES=qR,hd=\"rovingFocusGroup.onEntryFocus\",zR={bubbles:!1,cancelable:!0},pv=\"RovingFocusGroup\",[bh,bS,HR]=tS(pv),[GR,xS]=Bo(pv,[HR]),[WR,QR]=GR(pv),YR=h.forwardRef((e,t)=>h.createElement(bh.Provider,{scope:e.__scopeRovingFocusGroup},h.createElement(bh.Slot,{scope:e.__scopeRovingFocusGroup},h.createElement(ZR,oe({},e,{ref:t}))))),ZR=h.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,orientation:r,loop:o=!1,dir:i,currentTabStopId:s,defaultCurrentTabStopId:a,onCurrentTabStopIdChange:l,onEntryFocus:c,...u}=e,d=h.useRef(null),p=at(t,d),f=nS(i),[m=null,v]=Qu({prop:s,defaultProp:a,onChange:l}),[b,y]=h.useState(!1),g=jn(c),E=bS(n),x=h.useRef(!1),[w,C]=h.useState(0);return h.useEffect(()=>{const T=d.current;if(T)return T.addEventListener(hd,g),()=>T.removeEventListener(hd,g)},[g]),h.createElement(WR,{scope:n,orientation:r,dir:f,loop:o,currentTabStopId:m,onItemFocus:h.useCallback(T=>v(T),[v]),onItemShiftTab:h.useCallback(()=>y(!0),[]),onFocusableItemAdd:h.useCallback(()=>C(T=>T+1),[]),onFocusableItemRemove:h.useCallback(()=>C(T=>T-1),[])},h.createElement(gt.div,oe({tabIndex:b||w===0?-1:0,\"data-orientation\":r},u,{ref:p,style:{outline:\"none\",...e.style},onMouseDown:ae(e.onMouseDown,()=>{x.current=!0}),onFocus:ae(e.onFocus,T=>{const A=!x.current;if(T.target===T.currentTarget&&A&&!b){const S=new CustomEvent(hd,zR);if(T.currentTarget.dispatchEvent(S),!S.defaultPrevented){const k=E().filter(M=>M.focusable),q=k.find(M=>M.active),H=k.find(M=>M.id===m),N=[q,H,...k].filter(Boolean).map(M=>M.ref.current);wS(N)}}x.current=!1}),onBlur:ae(e.onBlur,()=>y(!1))})))}),XR=\"RovingFocusGroupItem\",JR=h.forwardRef((e,t)=>{const{__scopeRovingFocusGroup:n,focusable:r=!0,active:o=!1,tabStopId:i,...s}=e,a=_o(),l=i||a,c=QR(XR,n),u=c.currentTabStopId===l,d=bS(n),{onFocusableItemAdd:p,onFocusableItemRemove:f}=c;return h.useEffect(()=>{if(r)return p(),()=>f()},[r,p,f]),h.createElement(bh.ItemSlot,{scope:n,id:l,focusable:r,active:o},h.createElement(gt.span,oe({tabIndex:u?0:-1,\"data-orientation\":c.orientation},s,{ref:t,onMouseDown:ae(e.onMouseDown,m=>{r?c.onItemFocus(l):m.preventDefault()}),onFocus:ae(e.onFocus,()=>c.onItemFocus(l)),onKeyDown:ae(e.onKeyDown,m=>{if(m.key===\"Tab\"&&m.shiftKey){c.onItemShiftTab();return}if(m.target!==m.currentTarget)return;const v=tL(m,c.orientation,c.dir);if(v!==void 0){m.preventDefault();let y=d().filter(g=>g.focusable).map(g=>g.ref.current);if(v===\"last\")y.reverse();else if(v===\"prev\"||v===\"next\"){v===\"prev\"&&y.reverse();const g=y.indexOf(m.currentTarget);y=c.loop?nL(y,g+1):y.slice(g+1)}setTimeout(()=>wS(y))}})})))}),KR={ArrowLeft:\"prev\",ArrowUp:\"prev\",ArrowRight:\"next\",ArrowDown:\"next\",PageUp:\"first\",Home:\"first\",PageDown:\"last\",End:\"last\"};function eL(e,t){return t!==\"rtl\"?e:e===\"ArrowLeft\"?\"ArrowRight\":e===\"ArrowRight\"?\"ArrowLeft\":e}function tL(e,t,n){const r=eL(e.key,n);if(!(t===\"vertical\"&&[\"ArrowLeft\",\"ArrowRight\"].includes(r))&&!(t===\"horizontal\"&&[\"ArrowUp\",\"ArrowDown\"].includes(r)))return KR[r]}function wS(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function nL(e,t){return e.map((n,r)=>e[(t+r)%e.length])}const rL=YR,oL=JR,iL=[\"Enter\",\" \"],sL=[\"ArrowDown\",\"PageUp\",\"Home\"],_S=[\"ArrowUp\",\"PageDown\",\"End\"],aL=[...sL,..._S],Ku=\"Menu\",[xh,lL,cL]=tS(Ku),[zo,SS]=Bo(Ku,[cL,Ju,xS]),hv=Ju(),CS=xS(),[uL,Ua]=zo(Ku),[fL,mv]=zo(Ku),dL=e=>{const{__scopeMenu:t,open:n=!1,children:r,dir:o,onOpenChange:i,modal:s=!0}=e,a=hv(t),[l,c]=h.useState(null),u=h.useRef(!1),d=jn(i),p=nS(o);return h.useEffect(()=>{const f=()=>{u.current=!0,document.addEventListener(\"pointerdown\",m,{capture:!0,once:!0}),document.addEventListener(\"pointermove\",m,{capture:!0,once:!0})},m=()=>u.current=!1;return document.addEventListener(\"keydown\",f,{capture:!0}),()=>{document.removeEventListener(\"keydown\",f,{capture:!0}),document.removeEventListener(\"pointerdown\",m,{capture:!0}),document.removeEventListener(\"pointermove\",m,{capture:!0})}},[]),h.createElement(gS,a,h.createElement(uL,{scope:t,open:n,onOpenChange:d,content:l,onContentChange:c},h.createElement(fL,{scope:t,onClose:h.useCallback(()=>d(!1),[d]),isUsingKeyboardRef:u,dir:p,modal:s},r)))},pL=h.forwardRef((e,t)=>{const{__scopeMenu:n,...r}=e,o=hv(n);return h.createElement(yS,oe({},o,r,{ref:t}))}),TS=\"MenuPortal\",[hL,mL]=zo(TS,{forceMount:void 0}),vL=e=>{const{__scopeMenu:t,forceMount:n,children:r,container:o}=e,i=Ua(TS,t);return h.createElement(hL,{scope:t,forceMount:n},h.createElement(Xr,{present:n||i.open},h.createElement(iv,{asChild:!0,container:o},r)))},qr=\"MenuContent\",[gL,kS]=zo(qr),yL=h.forwardRef((e,t)=>{const n=mL(qr,e.__scopeMenu),{forceMount:r=n.forceMount,...o}=e,i=Ua(qr,e.__scopeMenu),s=mv(qr,e.__scopeMenu);return h.createElement(xh.Provider,{scope:e.__scopeMenu},h.createElement(Xr,{present:r||i.open},h.createElement(xh.Slot,{scope:e.__scopeMenu},s.modal?h.createElement(EL,oe({},o,{ref:t})):h.createElement(bL,oe({},o,{ref:t})))))}),EL=h.forwardRef((e,t)=>{const n=Ua(qr,e.__scopeMenu),r=h.useRef(null),o=at(t,r);return h.useEffect(()=>{const i=r.current;if(i)return Q_(i)},[]),h.createElement(NS,oe({},e,{ref:o,trapFocus:n.open,disableOutsidePointerEvents:n.open,disableOutsideScroll:!0,onFocusOutside:ae(e.onFocusOutside,i=>i.preventDefault(),{checkForDefaultPrevented:!1}),onDismiss:()=>n.onOpenChange(!1)}))}),bL=h.forwardRef((e,t)=>{const n=Ua(qr,e.__scopeMenu);return h.createElement(NS,oe({},e,{ref:t,trapFocus:!1,disableOutsidePointerEvents:!1,disableOutsideScroll:!1,onDismiss:()=>n.onOpenChange(!1)}))}),NS=h.forwardRef((e,t)=>{const{__scopeMenu:n,loop:r=!1,trapFocus:o,onOpenAutoFocus:i,onCloseAutoFocus:s,disableOutsidePointerEvents:a,onEntryFocus:l,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onInteractOutside:p,onDismiss:f,disableOutsideScroll:m,...v}=e,b=Ua(qr,n),y=mv(qr,n),g=hv(n),E=CS(n),x=lL(n),[w,C]=h.useState(null),T=h.useRef(null),A=at(t,T,b.onContentChange),S=h.useRef(0),k=h.useRef(\"\"),q=h.useRef(0),H=h.useRef(null),V=h.useRef(\"right\"),N=h.useRef(0),M=m?G_:h.Fragment,R=m?{as:zi,allowPinchZoom:!0}:void 0,I=P=>{var U,Z;const ee=k.current+P,te=x().filter(ze=>!ze.disabled),j=document.activeElement,z=(U=te.find(ze=>ze.ref.current===j))===null||U===void 0?void 0:U.textValue,Y=te.map(ze=>ze.textValue),be=AL(Y,ee,z),lt=(Z=te.find(ze=>ze.textValue===be))===null||Z===void 0?void 0:Z.ref.current;(function ze(ro){k.current=ro,window.clearTimeout(S.current),ro!==\"\"&&(S.current=window.setTimeout(()=>ze(\"\"),1e3))})(ee),lt&&setTimeout(()=>lt.focus())};h.useEffect(()=>()=>window.clearTimeout(S.current),[]),F_();const D=h.useCallback(P=>{var U,Z;return V.current===((U=H.current)===null||U===void 0?void 0:U.side)&&IL(P,(Z=H.current)===null||Z===void 0?void 0:Z.area)},[]);return h.createElement(gL,{scope:n,searchRef:k,onItemEnter:h.useCallback(P=>{D(P)&&P.preventDefault()},[D]),onItemLeave:h.useCallback(P=>{var U;D(P)||((U=T.current)===null||U===void 0||U.focus(),C(null))},[D]),onTriggerLeave:h.useCallback(P=>{D(P)&&P.preventDefault()},[D]),pointerGraceTimerRef:q,onPointerGraceIntentChange:h.useCallback(P=>{H.current=P},[])},h.createElement(M,R,h.createElement(P_,{asChild:!0,trapped:o,onMountAutoFocus:ae(i,P=>{var U;P.preventDefault(),(U=T.current)===null||U===void 0||U.focus()}),onUnmountAutoFocus:s},h.createElement(ov,{asChild:!0,disableOutsidePointerEvents:a,onEscapeKeyDown:c,onPointerDownOutside:u,onFocusOutside:d,onInteractOutside:p,onDismiss:f},h.createElement(rL,oe({asChild:!0},E,{dir:y.dir,orientation:\"vertical\",loop:r,currentTabStopId:w,onCurrentTabStopIdChange:C,onEntryFocus:ae(l,P=>{y.isUsingKeyboardRef.current||P.preventDefault()})}),h.createElement(ES,oe({role:\"menu\",\"aria-orientation\":\"vertical\",\"data-state\":TL(b.open),\"data-radix-menu-content\":\"\",dir:y.dir},g,v,{ref:A,style:{outline:\"none\",...v.style},onKeyDown:ae(v.onKeyDown,P=>{const Z=P.target.closest(\"[data-radix-menu-content]\")===P.currentTarget,ee=P.ctrlKey||P.altKey||P.metaKey,te=P.key.length===1;Z&&(P.key===\"Tab\"&&P.preventDefault(),!ee&&te&&I(P.key));const j=T.current;if(P.target!==j||!aL.includes(P.key))return;P.preventDefault();const Y=x().filter(be=>!be.disabled).map(be=>be.ref.current);_S.includes(P.key)&&Y.reverse(),kL(Y)}),onBlur:ae(e.onBlur,P=>{P.currentTarget.contains(P.target)||(window.clearTimeout(S.current),k.current=\"\")}),onPointerMove:ae(e.onPointerMove,_h(P=>{const U=P.target,Z=N.current!==P.clientX;if(P.currentTarget.contains(U)&&Z){const ee=P.clientX>N.current?\"right\":\"left\";V.current=ee,N.current=P.clientX}}))})))))))}),wh=\"MenuItem\",w1=\"menu.itemSelect\",xL=h.forwardRef((e,t)=>{const{disabled:n=!1,onSelect:r,...o}=e,i=h.useRef(null),s=mv(wh,e.__scopeMenu),a=kS(wh,e.__scopeMenu),l=at(t,i),c=h.useRef(!1),u=()=>{const d=i.current;if(!n&&d){const p=new CustomEvent(w1,{bubbles:!0,cancelable:!0});d.addEventListener(w1,f=>r==null?void 0:r(f),{once:!0}),L_(d,p),p.defaultPrevented?c.current=!1:s.onClose()}};return h.createElement(wL,oe({},o,{ref:l,disabled:n,onClick:ae(e.onClick,u),onPointerDown:d=>{var p;(p=e.onPointerDown)===null||p===void 0||p.call(e,d),c.current=!0},onPointerUp:ae(e.onPointerUp,d=>{var p;c.current||(p=d.currentTarget)===null||p===void 0||p.click()}),onKeyDown:ae(e.onKeyDown,d=>{const p=a.searchRef.current!==\"\";n||p&&d.key===\" \"||iL.includes(d.key)&&(d.currentTarget.click(),d.preventDefault())})}))}),wL=h.forwardRef((e,t)=>{const{__scopeMenu:n,disabled:r=!1,textValue:o,...i}=e,s=kS(wh,n),a=CS(n),l=h.useRef(null),c=at(t,l),[u,d]=h.useState(!1),[p,f]=h.useState(\"\");return h.useEffect(()=>{const m=l.current;if(m){var v;f(((v=m.textContent)!==null&&v!==void 0?v:\"\").trim())}},[i.children]),h.createElement(xh.ItemSlot,{scope:n,disabled:r,textValue:o??p},h.createElement(oL,oe({asChild:!0},a,{focusable:!r}),h.createElement(gt.div,oe({role:\"menuitem\",\"data-highlighted\":u?\"\":void 0,\"aria-disabled\":r||void 0,\"data-disabled\":r?\"\":void 0},i,{ref:c,onPointerMove:ae(e.onPointerMove,_h(m=>{r?s.onItemLeave(m):(s.onItemEnter(m),m.defaultPrevented||m.currentTarget.focus())})),onPointerLeave:ae(e.onPointerLeave,_h(m=>s.onItemLeave(m))),onFocus:ae(e.onFocus,()=>d(!0)),onBlur:ae(e.onBlur,()=>d(!1))}))))}),_L=\"MenuRadioGroup\";zo(_L,{value:void 0,onValueChange:()=>{}});const SL=\"MenuItemIndicator\";zo(SL,{checked:!1});const CL=\"MenuSub\";zo(CL);function TL(e){return e?\"open\":\"closed\"}function kL(e){const t=document.activeElement;for(const n of e)if(n===t||(n.focus(),document.activeElement!==t))return}function NL(e,t){return e.map((n,r)=>e[(t+r)%e.length])}function AL(e,t,n){const o=t.length>1&&Array.from(t).every(c=>c===t[0])?t[0]:t,i=n?e.indexOf(n):-1;let s=NL(e,Math.max(i,0));o.length===1&&(s=s.filter(c=>c!==n));const l=s.find(c=>c.toLowerCase().startsWith(o.toLowerCase()));return l!==n?l:void 0}function DL(e,t){const{x:n,y:r}=e;let o=!1;for(let i=0,s=t.length-1;i<t.length;s=i++){const a=t[i].x,l=t[i].y,c=t[s].x,u=t[s].y;l>r!=u>r&&n<(c-a)*(r-l)/(u-l)+a&&(o=!o)}return o}function IL(e,t){if(!t)return!1;const n={x:e.clientX,y:e.clientY};return DL(n,t)}function _h(e){return t=>t.pointerType===\"mouse\"?e(t):void 0}const RL=dL,LL=pL,OL=vL,PL=yL,$L=xL,AS=\"DropdownMenu\",[FL,u_e]=Bo(AS,[SS]),Ba=SS(),[ML,DS]=FL(AS),VL=e=>{const{__scopeDropdownMenu:t,children:n,dir:r,open:o,defaultOpen:i,onOpenChange:s,modal:a=!0}=e,l=Ba(t),c=h.useRef(null),[u=!1,d]=Qu({prop:o,defaultProp:i,onChange:s});return h.createElement(ML,{scope:t,triggerId:_o(),triggerRef:c,contentId:_o(),open:u,onOpenChange:d,onOpenToggle:h.useCallback(()=>d(p=>!p),[d]),modal:a},h.createElement(RL,oe({},l,{open:u,onOpenChange:d,dir:r,modal:a}),n))},jL=\"DropdownMenuTrigger\",qL=h.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,disabled:r=!1,...o}=e,i=DS(jL,n),s=Ba(n);return h.createElement(LL,oe({asChild:!0},s),h.createElement(gt.button,oe({type:\"button\",id:i.triggerId,\"aria-haspopup\":\"menu\",\"aria-expanded\":i.open,\"aria-controls\":i.open?i.contentId:void 0,\"data-state\":i.open?\"open\":\"closed\",\"data-disabled\":r?\"\":void 0,disabled:r},o,{ref:rv(t,i.triggerRef),onPointerDown:ae(e.onPointerDown,a=>{!r&&a.button===0&&a.ctrlKey===!1&&(i.onOpenToggle(),i.open||a.preventDefault())}),onKeyDown:ae(e.onKeyDown,a=>{r||([\"Enter\",\" \"].includes(a.key)&&i.onOpenToggle(),a.key===\"ArrowDown\"&&i.onOpenChange(!0),[\"Enter\",\" \",\"ArrowDown\"].includes(a.key)&&a.preventDefault())})})))}),UL=e=>{const{__scopeDropdownMenu:t,...n}=e,r=Ba(t);return h.createElement(OL,oe({},r,n))},BL=\"DropdownMenuContent\",zL=h.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=DS(BL,n),i=Ba(n),s=h.useRef(!1);return h.createElement(PL,oe({id:o.contentId,\"aria-labelledby\":o.triggerId},i,r,{ref:t,onCloseAutoFocus:ae(e.onCloseAutoFocus,a=>{var l;s.current||(l=o.triggerRef.current)===null||l===void 0||l.focus(),s.current=!1,a.preventDefault()}),onInteractOutside:ae(e.onInteractOutside,a=>{const l=a.detail.originalEvent,c=l.button===0&&l.ctrlKey===!0,u=l.button===2||c;(!o.modal||u)&&(s.current=!0)}),style:{...e.style,\"--radix-dropdown-menu-content-transform-origin\":\"var(--radix-popper-transform-origin)\",\"--radix-dropdown-menu-content-available-width\":\"var(--radix-popper-available-width)\",\"--radix-dropdown-menu-content-available-height\":\"var(--radix-popper-available-height)\",\"--radix-dropdown-menu-trigger-width\":\"var(--radix-popper-anchor-width)\",\"--radix-dropdown-menu-trigger-height\":\"var(--radix-popper-anchor-height)\"}}))}),HL=h.forwardRef((e,t)=>{const{__scopeDropdownMenu:n,...r}=e,o=Ba(n);return h.createElement($L,oe({},o,r,{ref:t}))}),GL=VL,WL=qL,QL=UL,YL=zL,ZL=HL;var ye={};const XL=\"Á\",JL=\"á\",KL=\"Ă\",eO=\"ă\",tO=\"∾\",nO=\"∿\",rO=\"∾̳\",oO=\"Â\",iO=\"â\",sO=\"´\",aO=\"А\",lO=\"а\",cO=\"Æ\",uO=\"æ\",fO=\"⁡\",dO=\"𝔄\",pO=\"𝔞\",hO=\"À\",mO=\"à\",vO=\"ℵ\",gO=\"ℵ\",yO=\"Α\",EO=\"α\",bO=\"Ā\",xO=\"ā\",wO=\"⨿\",_O=\"&\",SO=\"&\",CO=\"⩕\",TO=\"⩓\",kO=\"∧\",NO=\"⩜\",AO=\"⩘\",DO=\"⩚\",IO=\"∠\",RO=\"⦤\",LO=\"∠\",OO=\"⦨\",PO=\"⦩\",$O=\"⦪\",FO=\"⦫\",MO=\"⦬\",VO=\"⦭\",jO=\"⦮\",qO=\"⦯\",UO=\"∡\",BO=\"∟\",zO=\"⊾\",HO=\"⦝\",GO=\"∢\",WO=\"Å\",QO=\"⍼\",YO=\"Ą\",ZO=\"ą\",XO=\"𝔸\",JO=\"𝕒\",KO=\"⩯\",eP=\"≈\",tP=\"⩰\",nP=\"≊\",rP=\"≋\",oP=\"'\",iP=\"⁡\",sP=\"≈\",aP=\"≊\",lP=\"Å\",cP=\"å\",uP=\"𝒜\",fP=\"𝒶\",dP=\"≔\",pP=\"*\",hP=\"≈\",mP=\"≍\",vP=\"Ã\",gP=\"ã\",yP=\"Ä\",EP=\"ä\",bP=\"∳\",xP=\"⨑\",wP=\"≌\",_P=\"϶\",SP=\"‵\",CP=\"∽\",TP=\"⋍\",kP=\"∖\",NP=\"⫧\",AP=\"⊽\",DP=\"⌅\",IP=\"⌆\",RP=\"⌅\",LP=\"⎵\",OP=\"⎶\",PP=\"≌\",$P=\"Б\",FP=\"б\",MP=\"„\",VP=\"∵\",jP=\"∵\",qP=\"∵\",UP=\"⦰\",BP=\"϶\",zP=\"ℬ\",HP=\"ℬ\",GP=\"Β\",WP=\"β\",QP=\"ℶ\",YP=\"≬\",ZP=\"𝔅\",XP=\"𝔟\",JP=\"⋂\",KP=\"◯\",e4=\"⋃\",t4=\"⨀\",n4=\"⨁\",r4=\"⨂\",o4=\"⨆\",i4=\"★\",s4=\"▽\",a4=\"△\",l4=\"⨄\",c4=\"⋁\",u4=\"⋀\",f4=\"⤍\",d4=\"⧫\",p4=\"▪\",h4=\"▴\",m4=\"▾\",v4=\"◂\",g4=\"▸\",y4=\"␣\",E4=\"▒\",b4=\"░\",x4=\"▓\",w4=\"█\",_4=\"=⃥\",S4=\"≡⃥\",C4=\"⫭\",T4=\"⌐\",k4=\"𝔹\",N4=\"𝕓\",A4=\"⊥\",D4=\"⊥\",I4=\"⋈\",R4=\"⧉\",L4=\"┐\",O4=\"╕\",P4=\"╖\",$4=\"╗\",F4=\"┌\",M4=\"╒\",V4=\"╓\",j4=\"╔\",q4=\"─\",U4=\"═\",B4=\"┬\",z4=\"╤\",H4=\"╥\",G4=\"╦\",W4=\"┴\",Q4=\"╧\",Y4=\"╨\",Z4=\"╩\",X4=\"⊟\",J4=\"⊞\",K4=\"⊠\",e$=\"┘\",t$=\"╛\",n$=\"╜\",r$=\"╝\",o$=\"└\",i$=\"╘\",s$=\"╙\",a$=\"╚\",l$=\"│\",c$=\"║\",u$=\"┼\",f$=\"╪\",d$=\"╫\",p$=\"╬\",h$=\"┤\",m$=\"╡\",v$=\"╢\",g$=\"╣\",y$=\"├\",E$=\"╞\",b$=\"╟\",x$=\"╠\",w$=\"‵\",_$=\"˘\",S$=\"˘\",C$=\"¦\",T$=\"𝒷\",k$=\"ℬ\",N$=\"⁏\",A$=\"∽\",D$=\"⋍\",I$=\"⧅\",R$=\"\\\\\",L$=\"⟈\",O$=\"•\",P$=\"•\",$$=\"≎\",F$=\"⪮\",M$=\"≏\",V$=\"≎\",j$=\"≏\",q$=\"Ć\",U$=\"ć\",B$=\"⩄\",z$=\"⩉\",H$=\"⩋\",G$=\"∩\",W$=\"⋒\",Q$=\"⩇\",Y$=\"⩀\",Z$=\"ⅅ\",X$=\"∩︀\",J$=\"⁁\",K$=\"ˇ\",e6=\"ℭ\",t6=\"⩍\",n6=\"Č\",r6=\"č\",o6=\"Ç\",i6=\"ç\",s6=\"Ĉ\",a6=\"ĉ\",l6=\"∰\",c6=\"⩌\",u6=\"⩐\",f6=\"Ċ\",d6=\"ċ\",p6=\"¸\",h6=\"¸\",m6=\"⦲\",v6=\"¢\",g6=\"·\",y6=\"·\",E6=\"𝔠\",b6=\"ℭ\",x6=\"Ч\",w6=\"ч\",_6=\"✓\",S6=\"✓\",C6=\"Χ\",T6=\"χ\",k6=\"ˆ\",N6=\"≗\",A6=\"↺\",D6=\"↻\",I6=\"⊛\",R6=\"⊚\",L6=\"⊝\",O6=\"⊙\",P6=\"®\",$6=\"Ⓢ\",F6=\"⊖\",M6=\"⊕\",V6=\"⊗\",j6=\"○\",q6=\"⧃\",U6=\"≗\",B6=\"⨐\",z6=\"⫯\",H6=\"⧂\",G6=\"∲\",W6=\"”\",Q6=\"’\",Y6=\"♣\",Z6=\"♣\",X6=\":\",J6=\"∷\",K6=\"⩴\",e7=\"≔\",t7=\"≔\",n7=\",\",r7=\"@\",o7=\"∁\",i7=\"∘\",s7=\"∁\",a7=\"ℂ\",l7=\"≅\",c7=\"⩭\",u7=\"≡\",f7=\"∮\",d7=\"∯\",p7=\"∮\",h7=\"𝕔\",m7=\"ℂ\",v7=\"∐\",g7=\"∐\",y7=\"©\",E7=\"©\",b7=\"℗\",x7=\"∳\",w7=\"↵\",_7=\"✗\",S7=\"⨯\",C7=\"𝒞\",T7=\"𝒸\",k7=\"⫏\",N7=\"⫑\",A7=\"⫐\",D7=\"⫒\",I7=\"⋯\",R7=\"⤸\",L7=\"⤵\",O7=\"⋞\",P7=\"⋟\",$7=\"↶\",F7=\"⤽\",M7=\"⩈\",V7=\"⩆\",j7=\"≍\",q7=\"∪\",U7=\"⋓\",B7=\"⩊\",z7=\"⊍\",H7=\"⩅\",G7=\"∪︀\",W7=\"↷\",Q7=\"⤼\",Y7=\"⋞\",Z7=\"⋟\",X7=\"⋎\",J7=\"⋏\",K7=\"¤\",eF=\"↶\",tF=\"↷\",nF=\"⋎\",rF=\"⋏\",oF=\"∲\",iF=\"∱\",sF=\"⌭\",aF=\"†\",lF=\"‡\",cF=\"ℸ\",uF=\"↓\",fF=\"↡\",dF=\"⇓\",pF=\"‐\",hF=\"⫤\",mF=\"⊣\",vF=\"⤏\",gF=\"˝\",yF=\"Ď\",EF=\"ď\",bF=\"Д\",xF=\"д\",wF=\"‡\",_F=\"⇊\",SF=\"ⅅ\",CF=\"ⅆ\",TF=\"⤑\",kF=\"⩷\",NF=\"°\",AF=\"∇\",DF=\"Δ\",IF=\"δ\",RF=\"⦱\",LF=\"⥿\",OF=\"𝔇\",PF=\"𝔡\",$F=\"⥥\",FF=\"⇃\",MF=\"⇂\",VF=\"´\",jF=\"˙\",qF=\"˝\",UF=\"`\",BF=\"˜\",zF=\"⋄\",HF=\"⋄\",GF=\"⋄\",WF=\"♦\",QF=\"♦\",YF=\"¨\",ZF=\"ⅆ\",XF=\"ϝ\",JF=\"⋲\",KF=\"÷\",e8=\"÷\",t8=\"⋇\",n8=\"⋇\",r8=\"Ђ\",o8=\"ђ\",i8=\"⌞\",s8=\"⌍\",a8=\"$\",l8=\"𝔻\",c8=\"𝕕\",u8=\"¨\",f8=\"˙\",d8=\"⃜\",p8=\"≐\",h8=\"≑\",m8=\"≐\",v8=\"∸\",g8=\"∔\",y8=\"⊡\",E8=\"⌆\",b8=\"∯\",x8=\"¨\",w8=\"⇓\",_8=\"⇐\",S8=\"⇔\",C8=\"⫤\",T8=\"⟸\",k8=\"⟺\",N8=\"⟹\",A8=\"⇒\",D8=\"⊨\",I8=\"⇑\",R8=\"⇕\",L8=\"∥\",O8=\"⤓\",P8=\"↓\",$8=\"↓\",F8=\"⇓\",M8=\"⇵\",V8=\"̑\",j8=\"⇊\",q8=\"⇃\",U8=\"⇂\",B8=\"⥐\",z8=\"⥞\",H8=\"⥖\",G8=\"↽\",W8=\"⥟\",Q8=\"⥗\",Y8=\"⇁\",Z8=\"↧\",X8=\"⊤\",J8=\"⤐\",K8=\"⌟\",e9=\"⌌\",t9=\"𝒟\",n9=\"𝒹\",r9=\"Ѕ\",o9=\"ѕ\",i9=\"⧶\",s9=\"Đ\",a9=\"đ\",l9=\"⋱\",c9=\"▿\",u9=\"▾\",f9=\"⇵\",d9=\"⥯\",p9=\"⦦\",h9=\"Џ\",m9=\"џ\",v9=\"⟿\",g9=\"É\",y9=\"é\",E9=\"⩮\",b9=\"Ě\",x9=\"ě\",w9=\"Ê\",_9=\"ê\",S9=\"≖\",C9=\"≕\",T9=\"Э\",k9=\"э\",N9=\"⩷\",A9=\"Ė\",D9=\"ė\",I9=\"≑\",R9=\"ⅇ\",L9=\"≒\",O9=\"𝔈\",P9=\"𝔢\",$9=\"⪚\",F9=\"È\",M9=\"è\",V9=\"⪖\",j9=\"⪘\",q9=\"⪙\",U9=\"∈\",B9=\"⏧\",z9=\"ℓ\",H9=\"⪕\",G9=\"⪗\",W9=\"Ē\",Q9=\"ē\",Y9=\"∅\",Z9=\"∅\",X9=\"◻\",J9=\"∅\",K9=\"▫\",eM=\" \",tM=\" \",nM=\" \",rM=\"Ŋ\",oM=\"ŋ\",iM=\" \",sM=\"Ę\",aM=\"ę\",lM=\"𝔼\",cM=\"𝕖\",uM=\"⋕\",fM=\"⧣\",dM=\"⩱\",pM=\"ε\",hM=\"Ε\",mM=\"ε\",vM=\"ϵ\",gM=\"≖\",yM=\"≕\",EM=\"≂\",bM=\"⪖\",xM=\"⪕\",wM=\"⩵\",_M=\"=\",SM=\"≂\",CM=\"≟\",TM=\"⇌\",kM=\"≡\",NM=\"⩸\",AM=\"⧥\",DM=\"⥱\",IM=\"≓\",RM=\"ℯ\",LM=\"ℰ\",OM=\"≐\",PM=\"⩳\",$M=\"≂\",FM=\"Η\",MM=\"η\",VM=\"Ð\",jM=\"ð\",qM=\"Ë\",UM=\"ë\",BM=\"€\",zM=\"!\",HM=\"∃\",GM=\"∃\",WM=\"ℰ\",QM=\"ⅇ\",YM=\"ⅇ\",ZM=\"≒\",XM=\"Ф\",JM=\"ф\",KM=\"♀\",eV=\"ﬃ\",tV=\"ﬀ\",nV=\"ﬄ\",rV=\"𝔉\",oV=\"𝔣\",iV=\"ﬁ\",sV=\"◼\",aV=\"▪\",lV=\"fj\",cV=\"♭\",uV=\"ﬂ\",fV=\"▱\",dV=\"ƒ\",pV=\"𝔽\",hV=\"𝕗\",mV=\"∀\",vV=\"∀\",gV=\"⋔\",yV=\"⫙\",EV=\"ℱ\",bV=\"⨍\",xV=\"½\",wV=\"⅓\",_V=\"¼\",SV=\"⅕\",CV=\"⅙\",TV=\"⅛\",kV=\"⅔\",NV=\"⅖\",AV=\"¾\",DV=\"⅗\",IV=\"⅜\",RV=\"⅘\",LV=\"⅚\",OV=\"⅝\",PV=\"⅞\",$V=\"⁄\",FV=\"⌢\",MV=\"𝒻\",VV=\"ℱ\",jV=\"ǵ\",qV=\"Γ\",UV=\"γ\",BV=\"Ϝ\",zV=\"ϝ\",HV=\"⪆\",GV=\"Ğ\",WV=\"ğ\",QV=\"Ģ\",YV=\"Ĝ\",ZV=\"ĝ\",XV=\"Г\",JV=\"г\",KV=\"Ġ\",ej=\"ġ\",tj=\"≥\",nj=\"≧\",rj=\"⪌\",oj=\"⋛\",ij=\"≥\",sj=\"≧\",aj=\"⩾\",lj=\"⪩\",cj=\"⩾\",uj=\"⪀\",fj=\"⪂\",dj=\"⪄\",pj=\"⋛︀\",hj=\"⪔\",mj=\"𝔊\",vj=\"𝔤\",gj=\"≫\",yj=\"⋙\",Ej=\"⋙\",bj=\"ℷ\",xj=\"Ѓ\",wj=\"ѓ\",_j=\"⪥\",Sj=\"≷\",Cj=\"⪒\",Tj=\"⪤\",kj=\"⪊\",Nj=\"⪊\",Aj=\"⪈\",Dj=\"≩\",Ij=\"⪈\",Rj=\"≩\",Lj=\"⋧\",Oj=\"𝔾\",Pj=\"𝕘\",$j=\"`\",Fj=\"≥\",Mj=\"⋛\",Vj=\"≧\",jj=\"⪢\",qj=\"≷\",Uj=\"⩾\",Bj=\"≳\",zj=\"𝒢\",Hj=\"ℊ\",Gj=\"≳\",Wj=\"⪎\",Qj=\"⪐\",Yj=\"⪧\",Zj=\"⩺\",Xj=\">\",Jj=\">\",Kj=\"≫\",eq=\"⋗\",tq=\"⦕\",nq=\"⩼\",rq=\"⪆\",oq=\"⥸\",iq=\"⋗\",sq=\"⋛\",aq=\"⪌\",lq=\"≷\",cq=\"≳\",uq=\"≩︀\",fq=\"≩︀\",dq=\"ˇ\",pq=\" \",hq=\"½\",mq=\"ℋ\",vq=\"Ъ\",gq=\"ъ\",yq=\"⥈\",Eq=\"↔\",bq=\"⇔\",xq=\"↭\",wq=\"^\",_q=\"ℏ\",Sq=\"Ĥ\",Cq=\"ĥ\",Tq=\"♥\",kq=\"♥\",Nq=\"…\",Aq=\"⊹\",Dq=\"𝔥\",Iq=\"ℌ\",Rq=\"ℋ\",Lq=\"⤥\",Oq=\"⤦\",Pq=\"⇿\",$q=\"∻\",Fq=\"↩\",Mq=\"↪\",Vq=\"𝕙\",jq=\"ℍ\",qq=\"―\",Uq=\"─\",Bq=\"𝒽\",zq=\"ℋ\",Hq=\"ℏ\",Gq=\"Ħ\",Wq=\"ħ\",Qq=\"≎\",Yq=\"≏\",Zq=\"⁃\",Xq=\"‐\",Jq=\"Í\",Kq=\"í\",eU=\"⁣\",tU=\"Î\",nU=\"î\",rU=\"И\",oU=\"и\",iU=\"İ\",sU=\"Е\",aU=\"е\",lU=\"¡\",cU=\"⇔\",uU=\"𝔦\",fU=\"ℑ\",dU=\"Ì\",pU=\"ì\",hU=\"ⅈ\",mU=\"⨌\",vU=\"∭\",gU=\"⧜\",yU=\"℩\",EU=\"Ĳ\",bU=\"ĳ\",xU=\"Ī\",wU=\"ī\",_U=\"ℑ\",SU=\"ⅈ\",CU=\"ℐ\",TU=\"ℑ\",kU=\"ı\",NU=\"ℑ\",AU=\"⊷\",DU=\"Ƶ\",IU=\"⇒\",RU=\"℅\",LU=\"∞\",OU=\"⧝\",PU=\"ı\",$U=\"⊺\",FU=\"∫\",MU=\"∬\",VU=\"ℤ\",jU=\"∫\",qU=\"⊺\",UU=\"⋂\",BU=\"⨗\",zU=\"⨼\",HU=\"⁣\",GU=\"⁢\",WU=\"Ё\",QU=\"ё\",YU=\"Į\",ZU=\"į\",XU=\"𝕀\",JU=\"𝕚\",KU=\"Ι\",eB=\"ι\",tB=\"⨼\",nB=\"¿\",rB=\"𝒾\",oB=\"ℐ\",iB=\"∈\",sB=\"⋵\",aB=\"⋹\",lB=\"⋴\",cB=\"⋳\",uB=\"∈\",fB=\"⁢\",dB=\"Ĩ\",pB=\"ĩ\",hB=\"І\",mB=\"і\",vB=\"Ï\",gB=\"ï\",yB=\"Ĵ\",EB=\"ĵ\",bB=\"Й\",xB=\"й\",wB=\"𝔍\",_B=\"𝔧\",SB=\"ȷ\",CB=\"𝕁\",TB=\"𝕛\",kB=\"𝒥\",NB=\"𝒿\",AB=\"Ј\",DB=\"ј\",IB=\"Є\",RB=\"є\",LB=\"Κ\",OB=\"κ\",PB=\"ϰ\",$B=\"Ķ\",FB=\"ķ\",MB=\"К\",VB=\"к\",jB=\"𝔎\",qB=\"𝔨\",UB=\"ĸ\",BB=\"Х\",zB=\"х\",HB=\"Ќ\",GB=\"ќ\",WB=\"𝕂\",QB=\"𝕜\",YB=\"𝒦\",ZB=\"𝓀\",XB=\"⇚\",JB=\"Ĺ\",KB=\"ĺ\",ez=\"⦴\",tz=\"ℒ\",nz=\"Λ\",rz=\"λ\",oz=\"⟨\",iz=\"⟪\",sz=\"⦑\",az=\"⟨\",lz=\"⪅\",cz=\"ℒ\",uz=\"«\",fz=\"⇤\",dz=\"⤟\",pz=\"←\",hz=\"↞\",mz=\"⇐\",vz=\"⤝\",gz=\"↩\",yz=\"↫\",Ez=\"⤹\",bz=\"⥳\",xz=\"↢\",wz=\"⤙\",_z=\"⤛\",Sz=\"⪫\",Cz=\"⪭\",Tz=\"⪭︀\",kz=\"⤌\",Nz=\"⤎\",Az=\"❲\",Dz=\"{\",Iz=\"[\",Rz=\"⦋\",Lz=\"⦏\",Oz=\"⦍\",Pz=\"Ľ\",$z=\"ľ\",Fz=\"Ļ\",Mz=\"ļ\",Vz=\"⌈\",jz=\"{\",qz=\"Л\",Uz=\"л\",Bz=\"⤶\",zz=\"“\",Hz=\"„\",Gz=\"⥧\",Wz=\"⥋\",Qz=\"↲\",Yz=\"≤\",Zz=\"≦\",Xz=\"⟨\",Jz=\"⇤\",Kz=\"←\",eH=\"←\",tH=\"⇐\",nH=\"⇆\",rH=\"↢\",oH=\"⌈\",iH=\"⟦\",sH=\"⥡\",aH=\"⥙\",lH=\"⇃\",cH=\"⌊\",uH=\"↽\",fH=\"↼\",dH=\"⇇\",pH=\"↔\",hH=\"↔\",mH=\"⇔\",vH=\"⇆\",gH=\"⇋\",yH=\"↭\",EH=\"⥎\",bH=\"↤\",xH=\"⊣\",wH=\"⥚\",_H=\"⋋\",SH=\"⧏\",CH=\"⊲\",TH=\"⊴\",kH=\"⥑\",NH=\"⥠\",AH=\"⥘\",DH=\"↿\",IH=\"⥒\",RH=\"↼\",LH=\"⪋\",OH=\"⋚\",PH=\"≤\",$H=\"≦\",FH=\"⩽\",MH=\"⪨\",VH=\"⩽\",jH=\"⩿\",qH=\"⪁\",UH=\"⪃\",BH=\"⋚︀\",zH=\"⪓\",HH=\"⪅\",GH=\"⋖\",WH=\"⋚\",QH=\"⪋\",YH=\"⋚\",ZH=\"≦\",XH=\"≶\",JH=\"≶\",KH=\"⪡\",eG=\"≲\",tG=\"⩽\",nG=\"≲\",rG=\"⥼\",oG=\"⌊\",iG=\"𝔏\",sG=\"𝔩\",aG=\"≶\",lG=\"⪑\",cG=\"⥢\",uG=\"↽\",fG=\"↼\",dG=\"⥪\",pG=\"▄\",hG=\"Љ\",mG=\"љ\",vG=\"⇇\",gG=\"≪\",yG=\"⋘\",EG=\"⌞\",bG=\"⇚\",xG=\"⥫\",wG=\"◺\",_G=\"Ŀ\",SG=\"ŀ\",CG=\"⎰\",TG=\"⎰\",kG=\"⪉\",NG=\"⪉\",AG=\"⪇\",DG=\"≨\",IG=\"⪇\",RG=\"≨\",LG=\"⋦\",OG=\"⟬\",PG=\"⇽\",$G=\"⟦\",FG=\"⟵\",MG=\"⟵\",VG=\"⟸\",jG=\"⟷\",qG=\"⟷\",UG=\"⟺\",BG=\"⟼\",zG=\"⟶\",HG=\"⟶\",GG=\"⟹\",WG=\"↫\",QG=\"↬\",YG=\"⦅\",ZG=\"𝕃\",XG=\"𝕝\",JG=\"⨭\",KG=\"⨴\",eW=\"∗\",tW=\"_\",nW=\"↙\",rW=\"↘\",oW=\"◊\",iW=\"◊\",sW=\"⧫\",aW=\"(\",lW=\"⦓\",cW=\"⇆\",uW=\"⌟\",fW=\"⇋\",dW=\"⥭\",pW=\"‎\",hW=\"⊿\",mW=\"‹\",vW=\"𝓁\",gW=\"ℒ\",yW=\"↰\",EW=\"↰\",bW=\"≲\",xW=\"⪍\",wW=\"⪏\",_W=\"[\",SW=\"‘\",CW=\"‚\",TW=\"Ł\",kW=\"ł\",NW=\"⪦\",AW=\"⩹\",DW=\"<\",IW=\"<\",RW=\"≪\",LW=\"⋖\",OW=\"⋋\",PW=\"⋉\",$W=\"⥶\",FW=\"⩻\",MW=\"◃\",VW=\"⊴\",jW=\"◂\",qW=\"⦖\",UW=\"⥊\",BW=\"⥦\",zW=\"≨︀\",HW=\"≨︀\",GW=\"¯\",WW=\"♂\",QW=\"✠\",YW=\"✠\",ZW=\"↦\",XW=\"↦\",JW=\"↧\",KW=\"↤\",eQ=\"↥\",tQ=\"▮\",nQ=\"⨩\",rQ=\"М\",oQ=\"м\",iQ=\"—\",sQ=\"∺\",aQ=\"∡\",lQ=\" \",cQ=\"ℳ\",uQ=\"𝔐\",fQ=\"𝔪\",dQ=\"℧\",pQ=\"µ\",hQ=\"*\",mQ=\"⫰\",vQ=\"∣\",gQ=\"·\",yQ=\"⊟\",EQ=\"−\",bQ=\"∸\",xQ=\"⨪\",wQ=\"∓\",_Q=\"⫛\",SQ=\"…\",CQ=\"∓\",TQ=\"⊧\",kQ=\"𝕄\",NQ=\"𝕞\",AQ=\"∓\",DQ=\"𝓂\",IQ=\"ℳ\",RQ=\"∾\",LQ=\"Μ\",OQ=\"μ\",PQ=\"⊸\",$Q=\"⊸\",FQ=\"∇\",MQ=\"Ń\",VQ=\"ń\",jQ=\"∠⃒\",qQ=\"≉\",UQ=\"⩰̸\",BQ=\"≋̸\",zQ=\"ŉ\",HQ=\"≉\",GQ=\"♮\",WQ=\"ℕ\",QQ=\"♮\",YQ=\" \",ZQ=\"≎̸\",XQ=\"≏̸\",JQ=\"⩃\",KQ=\"Ň\",eY=\"ň\",tY=\"Ņ\",nY=\"ņ\",rY=\"≇\",oY=\"⩭̸\",iY=\"⩂\",sY=\"Н\",aY=\"н\",lY=\"–\",cY=\"⤤\",uY=\"↗\",fY=\"⇗\",dY=\"↗\",pY=\"≠\",hY=\"≐̸\",mY=\"​\",vY=\"​\",gY=\"​\",yY=\"​\",EY=\"≢\",bY=\"⤨\",xY=\"≂̸\",wY=\"≫\",_Y=\"≪\",SY=`\n`,CY=\"∄\",TY=\"∄\",kY=\"𝔑\",NY=\"𝔫\",AY=\"≧̸\",DY=\"≱\",IY=\"≱\",RY=\"≧̸\",LY=\"⩾̸\",OY=\"⩾̸\",PY=\"⋙̸\",$Y=\"≵\",FY=\"≫⃒\",MY=\"≯\",VY=\"≯\",jY=\"≫̸\",qY=\"↮\",UY=\"⇎\",BY=\"⫲\",zY=\"∋\",HY=\"⋼\",GY=\"⋺\",WY=\"∋\",QY=\"Њ\",YY=\"њ\",ZY=\"↚\",XY=\"⇍\",JY=\"‥\",KY=\"≦̸\",eZ=\"≰\",tZ=\"↚\",nZ=\"⇍\",rZ=\"↮\",oZ=\"⇎\",iZ=\"≰\",sZ=\"≦̸\",aZ=\"⩽̸\",lZ=\"⩽̸\",cZ=\"≮\",uZ=\"⋘̸\",fZ=\"≴\",dZ=\"≪⃒\",pZ=\"≮\",hZ=\"⋪\",mZ=\"⋬\",vZ=\"≪̸\",gZ=\"∤\",yZ=\"⁠\",EZ=\" \",bZ=\"𝕟\",xZ=\"ℕ\",wZ=\"⫬\",_Z=\"¬\",SZ=\"≢\",CZ=\"≭\",TZ=\"∦\",kZ=\"∉\",NZ=\"≠\",AZ=\"≂̸\",DZ=\"∄\",IZ=\"≯\",RZ=\"≱\",LZ=\"≧̸\",OZ=\"≫̸\",PZ=\"≹\",$Z=\"⩾̸\",FZ=\"≵\",MZ=\"≎̸\",VZ=\"≏̸\",jZ=\"∉\",qZ=\"⋵̸\",UZ=\"⋹̸\",BZ=\"∉\",zZ=\"⋷\",HZ=\"⋶\",GZ=\"⧏̸\",WZ=\"⋪\",QZ=\"⋬\",YZ=\"≮\",ZZ=\"≰\",XZ=\"≸\",JZ=\"≪̸\",KZ=\"⩽̸\",eX=\"≴\",tX=\"⪢̸\",nX=\"⪡̸\",rX=\"∌\",oX=\"∌\",iX=\"⋾\",sX=\"⋽\",aX=\"⊀\",lX=\"⪯̸\",cX=\"⋠\",uX=\"∌\",fX=\"⧐̸\",dX=\"⋫\",pX=\"⋭\",hX=\"⊏̸\",mX=\"⋢\",vX=\"⊐̸\",gX=\"⋣\",yX=\"⊂⃒\",EX=\"⊈\",bX=\"⊁\",xX=\"⪰̸\",wX=\"⋡\",_X=\"≿̸\",SX=\"⊃⃒\",CX=\"⊉\",TX=\"≁\",kX=\"≄\",NX=\"≇\",AX=\"≉\",DX=\"∤\",IX=\"∦\",RX=\"∦\",LX=\"⫽⃥\",OX=\"∂̸\",PX=\"⨔\",$X=\"⊀\",FX=\"⋠\",MX=\"⊀\",VX=\"⪯̸\",jX=\"⪯̸\",qX=\"⤳̸\",UX=\"↛\",BX=\"⇏\",zX=\"↝̸\",HX=\"↛\",GX=\"⇏\",WX=\"⋫\",QX=\"⋭\",YX=\"⊁\",ZX=\"⋡\",XX=\"⪰̸\",JX=\"𝒩\",KX=\"𝓃\",eJ=\"∤\",tJ=\"∦\",nJ=\"≁\",rJ=\"≄\",oJ=\"≄\",iJ=\"∤\",sJ=\"∦\",aJ=\"⋢\",lJ=\"⋣\",cJ=\"⊄\",uJ=\"⫅̸\",fJ=\"⊈\",dJ=\"⊂⃒\",pJ=\"⊈\",hJ=\"⫅̸\",mJ=\"⊁\",vJ=\"⪰̸\",gJ=\"⊅\",yJ=\"⫆̸\",EJ=\"⊉\",bJ=\"⊃⃒\",xJ=\"⊉\",wJ=\"⫆̸\",_J=\"≹\",SJ=\"Ñ\",CJ=\"ñ\",TJ=\"≸\",kJ=\"⋪\",NJ=\"⋬\",AJ=\"⋫\",DJ=\"⋭\",IJ=\"Ν\",RJ=\"ν\",LJ=\"#\",OJ=\"№\",PJ=\" \",$J=\"≍⃒\",FJ=\"⊬\",MJ=\"⊭\",VJ=\"⊮\",jJ=\"⊯\",qJ=\"≥⃒\",UJ=\">⃒\",BJ=\"⤄\",zJ=\"⧞\",HJ=\"⤂\",GJ=\"≤⃒\",WJ=\"<⃒\",QJ=\"⊴⃒\",YJ=\"⤃\",ZJ=\"⊵⃒\",XJ=\"∼⃒\",JJ=\"⤣\",KJ=\"↖\",eK=\"⇖\",tK=\"↖\",nK=\"⤧\",rK=\"Ó\",oK=\"ó\",iK=\"⊛\",sK=\"Ô\",aK=\"ô\",lK=\"⊚\",cK=\"О\",uK=\"о\",fK=\"⊝\",dK=\"Ő\",pK=\"ő\",hK=\"⨸\",mK=\"⊙\",vK=\"⦼\",gK=\"Œ\",yK=\"œ\",EK=\"⦿\",bK=\"𝔒\",xK=\"𝔬\",wK=\"˛\",_K=\"Ò\",SK=\"ò\",CK=\"⧁\",TK=\"⦵\",kK=\"Ω\",NK=\"∮\",AK=\"↺\",DK=\"⦾\",IK=\"⦻\",RK=\"‾\",LK=\"⧀\",OK=\"Ō\",PK=\"ō\",$K=\"Ω\",FK=\"ω\",MK=\"Ο\",VK=\"ο\",jK=\"⦶\",qK=\"⊖\",UK=\"𝕆\",BK=\"𝕠\",zK=\"⦷\",HK=\"“\",GK=\"‘\",WK=\"⦹\",QK=\"⊕\",YK=\"↻\",ZK=\"⩔\",XK=\"∨\",JK=\"⩝\",KK=\"ℴ\",eee=\"ℴ\",tee=\"ª\",nee=\"º\",ree=\"⊶\",oee=\"⩖\",iee=\"⩗\",see=\"⩛\",aee=\"Ⓢ\",lee=\"𝒪\",cee=\"ℴ\",uee=\"Ø\",fee=\"ø\",dee=\"⊘\",pee=\"Õ\",hee=\"õ\",mee=\"⨶\",vee=\"⨷\",gee=\"⊗\",yee=\"Ö\",Eee=\"ö\",bee=\"⌽\",xee=\"‾\",wee=\"⏞\",_ee=\"⎴\",See=\"⏜\",Cee=\"¶\",Tee=\"∥\",kee=\"∥\",Nee=\"⫳\",Aee=\"⫽\",Dee=\"∂\",Iee=\"∂\",Ree=\"П\",Lee=\"п\",Oee=\"%\",Pee=\".\",$ee=\"‰\",Fee=\"⊥\",Mee=\"‱\",Vee=\"𝔓\",jee=\"𝔭\",qee=\"Φ\",Uee=\"φ\",Bee=\"ϕ\",zee=\"ℳ\",Hee=\"☎\",Gee=\"Π\",Wee=\"π\",Qee=\"⋔\",Yee=\"ϖ\",Zee=\"ℏ\",Xee=\"ℎ\",Jee=\"ℏ\",Kee=\"⨣\",ete=\"⊞\",tte=\"⨢\",nte=\"+\",rte=\"∔\",ote=\"⨥\",ite=\"⩲\",ste=\"±\",ate=\"±\",lte=\"⨦\",cte=\"⨧\",ute=\"±\",fte=\"ℌ\",dte=\"⨕\",pte=\"𝕡\",hte=\"ℙ\",mte=\"£\",vte=\"⪷\",gte=\"⪻\",yte=\"≺\",Ete=\"≼\",bte=\"⪷\",xte=\"≺\",wte=\"≼\",_te=\"≺\",Ste=\"⪯\",Cte=\"≼\",Tte=\"≾\",kte=\"⪯\",Nte=\"⪹\",Ate=\"⪵\",Dte=\"⋨\",Ite=\"⪯\",Rte=\"⪳\",Lte=\"≾\",Ote=\"′\",Pte=\"″\",$te=\"ℙ\",Fte=\"⪹\",Mte=\"⪵\",Vte=\"⋨\",jte=\"∏\",qte=\"∏\",Ute=\"⌮\",Bte=\"⌒\",zte=\"⌓\",Hte=\"∝\",Gte=\"∝\",Wte=\"∷\",Qte=\"∝\",Yte=\"≾\",Zte=\"⊰\",Xte=\"𝒫\",Jte=\"𝓅\",Kte=\"Ψ\",ene=\"ψ\",tne=\" \",nne=\"𝔔\",rne=\"𝔮\",one=\"⨌\",ine=\"𝕢\",sne=\"ℚ\",ane=\"⁗\",lne=\"𝒬\",cne=\"𝓆\",une=\"ℍ\",fne=\"⨖\",dne=\"?\",pne=\"≟\",hne='\"',mne='\"',vne=\"⇛\",gne=\"∽̱\",yne=\"Ŕ\",Ene=\"ŕ\",bne=\"√\",xne=\"⦳\",wne=\"⟩\",_ne=\"⟫\",Sne=\"⦒\",Cne=\"⦥\",Tne=\"⟩\",kne=\"»\",Nne=\"⥵\",Ane=\"⇥\",Dne=\"⤠\",Ine=\"⤳\",Rne=\"→\",Lne=\"↠\",One=\"⇒\",Pne=\"⤞\",$ne=\"↪\",Fne=\"↬\",Mne=\"⥅\",Vne=\"⥴\",jne=\"⤖\",qne=\"↣\",Une=\"↝\",Bne=\"⤚\",zne=\"⤜\",Hne=\"∶\",Gne=\"ℚ\",Wne=\"⤍\",Qne=\"⤏\",Yne=\"⤐\",Zne=\"❳\",Xne=\"}\",Jne=\"]\",Kne=\"⦌\",ere=\"⦎\",tre=\"⦐\",nre=\"Ř\",rre=\"ř\",ore=\"Ŗ\",ire=\"ŗ\",sre=\"⌉\",are=\"}\",lre=\"Р\",cre=\"р\",ure=\"⤷\",fre=\"⥩\",dre=\"”\",pre=\"”\",hre=\"↳\",mre=\"ℜ\",vre=\"ℛ\",gre=\"ℜ\",yre=\"ℝ\",Ere=\"ℜ\",bre=\"▭\",xre=\"®\",wre=\"®\",_re=\"∋\",Sre=\"⇋\",Cre=\"⥯\",Tre=\"⥽\",kre=\"⌋\",Nre=\"𝔯\",Are=\"ℜ\",Dre=\"⥤\",Ire=\"⇁\",Rre=\"⇀\",Lre=\"⥬\",Ore=\"Ρ\",Pre=\"ρ\",$re=\"ϱ\",Fre=\"⟩\",Mre=\"⇥\",Vre=\"→\",jre=\"→\",qre=\"⇒\",Ure=\"⇄\",Bre=\"↣\",zre=\"⌉\",Hre=\"⟧\",Gre=\"⥝\",Wre=\"⥕\",Qre=\"⇂\",Yre=\"⌋\",Zre=\"⇁\",Xre=\"⇀\",Jre=\"⇄\",Kre=\"⇌\",eoe=\"⇉\",toe=\"↝\",noe=\"↦\",roe=\"⊢\",ooe=\"⥛\",ioe=\"⋌\",soe=\"⧐\",aoe=\"⊳\",loe=\"⊵\",coe=\"⥏\",uoe=\"⥜\",foe=\"⥔\",doe=\"↾\",poe=\"⥓\",hoe=\"⇀\",moe=\"˚\",voe=\"≓\",goe=\"⇄\",yoe=\"⇌\",Eoe=\"‏\",boe=\"⎱\",xoe=\"⎱\",woe=\"⫮\",_oe=\"⟭\",Soe=\"⇾\",Coe=\"⟧\",Toe=\"⦆\",koe=\"𝕣\",Noe=\"ℝ\",Aoe=\"⨮\",Doe=\"⨵\",Ioe=\"⥰\",Roe=\")\",Loe=\"⦔\",Ooe=\"⨒\",Poe=\"⇉\",$oe=\"⇛\",Foe=\"›\",Moe=\"𝓇\",Voe=\"ℛ\",joe=\"↱\",qoe=\"↱\",Uoe=\"]\",Boe=\"’\",zoe=\"’\",Hoe=\"⋌\",Goe=\"⋊\",Woe=\"▹\",Qoe=\"⊵\",Yoe=\"▸\",Zoe=\"⧎\",Xoe=\"⧴\",Joe=\"⥨\",Koe=\"℞\",eie=\"Ś\",tie=\"ś\",nie=\"‚\",rie=\"⪸\",oie=\"Š\",iie=\"š\",sie=\"⪼\",aie=\"≻\",lie=\"≽\",cie=\"⪰\",uie=\"⪴\",fie=\"Ş\",die=\"ş\",pie=\"Ŝ\",hie=\"ŝ\",mie=\"⪺\",vie=\"⪶\",gie=\"⋩\",yie=\"⨓\",Eie=\"≿\",bie=\"С\",xie=\"с\",wie=\"⊡\",_ie=\"⋅\",Sie=\"⩦\",Cie=\"⤥\",Tie=\"↘\",kie=\"⇘\",Nie=\"↘\",Aie=\"§\",Die=\";\",Iie=\"⤩\",Rie=\"∖\",Lie=\"∖\",Oie=\"✶\",Pie=\"𝔖\",$ie=\"𝔰\",Fie=\"⌢\",Mie=\"♯\",Vie=\"Щ\",jie=\"щ\",qie=\"Ш\",Uie=\"ш\",Bie=\"↓\",zie=\"←\",Hie=\"∣\",Gie=\"∥\",Wie=\"→\",Qie=\"↑\",Yie=\"­\",Zie=\"Σ\",Xie=\"σ\",Jie=\"ς\",Kie=\"ς\",ese=\"∼\",tse=\"⩪\",nse=\"≃\",rse=\"≃\",ose=\"⪞\",ise=\"⪠\",sse=\"⪝\",ase=\"⪟\",lse=\"≆\",cse=\"⨤\",use=\"⥲\",fse=\"←\",dse=\"∘\",pse=\"∖\",hse=\"⨳\",mse=\"⧤\",vse=\"∣\",gse=\"⌣\",yse=\"⪪\",Ese=\"⪬\",bse=\"⪬︀\",xse=\"Ь\",wse=\"ь\",_se=\"⌿\",Sse=\"⧄\",Cse=\"/\",Tse=\"𝕊\",kse=\"𝕤\",Nse=\"♠\",Ase=\"♠\",Dse=\"∥\",Ise=\"⊓\",Rse=\"⊓︀\",Lse=\"⊔\",Ose=\"⊔︀\",Pse=\"√\",$se=\"⊏\",Fse=\"⊑\",Mse=\"⊏\",Vse=\"⊑\",jse=\"⊐\",qse=\"⊒\",Use=\"⊐\",Bse=\"⊒\",zse=\"□\",Hse=\"□\",Gse=\"⊓\",Wse=\"⊏\",Qse=\"⊑\",Yse=\"⊐\",Zse=\"⊒\",Xse=\"⊔\",Jse=\"▪\",Kse=\"□\",eae=\"▪\",tae=\"→\",nae=\"𝒮\",rae=\"𝓈\",oae=\"∖\",iae=\"⌣\",sae=\"⋆\",aae=\"⋆\",lae=\"☆\",cae=\"★\",uae=\"ϵ\",fae=\"ϕ\",dae=\"¯\",pae=\"⊂\",hae=\"⋐\",mae=\"⪽\",vae=\"⫅\",gae=\"⊆\",yae=\"⫃\",Eae=\"⫁\",bae=\"⫋\",xae=\"⊊\",wae=\"⪿\",_ae=\"⥹\",Sae=\"⊂\",Cae=\"⋐\",Tae=\"⊆\",kae=\"⫅\",Nae=\"⊆\",Aae=\"⊊\",Dae=\"⫋\",Iae=\"⫇\",Rae=\"⫕\",Lae=\"⫓\",Oae=\"⪸\",Pae=\"≻\",$ae=\"≽\",Fae=\"≻\",Mae=\"⪰\",Vae=\"≽\",jae=\"≿\",qae=\"⪰\",Uae=\"⪺\",Bae=\"⪶\",zae=\"⋩\",Hae=\"≿\",Gae=\"∋\",Wae=\"∑\",Qae=\"∑\",Yae=\"♪\",Zae=\"¹\",Xae=\"²\",Jae=\"³\",Kae=\"⊃\",ele=\"⋑\",tle=\"⪾\",nle=\"⫘\",rle=\"⫆\",ole=\"⊇\",ile=\"⫄\",sle=\"⊃\",ale=\"⊇\",lle=\"⟉\",cle=\"⫗\",ule=\"⥻\",fle=\"⫂\",dle=\"⫌\",ple=\"⊋\",hle=\"⫀\",mle=\"⊃\",vle=\"⋑\",gle=\"⊇\",yle=\"⫆\",Ele=\"⊋\",ble=\"⫌\",xle=\"⫈\",wle=\"⫔\",_le=\"⫖\",Sle=\"⤦\",Cle=\"↙\",Tle=\"⇙\",kle=\"↙\",Nle=\"⤪\",Ale=\"ß\",Dle=\"\t\",Ile=\"⌖\",Rle=\"Τ\",Lle=\"τ\",Ole=\"⎴\",Ple=\"Ť\",$le=\"ť\",Fle=\"Ţ\",Mle=\"ţ\",Vle=\"Т\",jle=\"т\",qle=\"⃛\",Ule=\"⌕\",Ble=\"𝔗\",zle=\"𝔱\",Hle=\"∴\",Gle=\"∴\",Wle=\"∴\",Qle=\"Θ\",Yle=\"θ\",Zle=\"ϑ\",Xle=\"ϑ\",Jle=\"≈\",Kle=\"∼\",ece=\"  \",tce=\" \",nce=\" \",rce=\"≈\",oce=\"∼\",ice=\"Þ\",sce=\"þ\",ace=\"˜\",lce=\"∼\",cce=\"≃\",uce=\"≅\",fce=\"≈\",dce=\"⨱\",pce=\"⊠\",hce=\"×\",mce=\"⨰\",vce=\"∭\",gce=\"⤨\",yce=\"⌶\",Ece=\"⫱\",bce=\"⊤\",xce=\"𝕋\",wce=\"𝕥\",_ce=\"⫚\",Sce=\"⤩\",Cce=\"‴\",Tce=\"™\",kce=\"™\",Nce=\"▵\",Ace=\"▿\",Dce=\"◃\",Ice=\"⊴\",Rce=\"≜\",Lce=\"▹\",Oce=\"⊵\",Pce=\"◬\",$ce=\"≜\",Fce=\"⨺\",Mce=\"⃛\",Vce=\"⨹\",jce=\"⧍\",qce=\"⨻\",Uce=\"⏢\",Bce=\"𝒯\",zce=\"𝓉\",Hce=\"Ц\",Gce=\"ц\",Wce=\"Ћ\",Qce=\"ћ\",Yce=\"Ŧ\",Zce=\"ŧ\",Xce=\"≬\",Jce=\"↞\",Kce=\"↠\",eue=\"Ú\",tue=\"ú\",nue=\"↑\",rue=\"↟\",oue=\"⇑\",iue=\"⥉\",sue=\"Ў\",aue=\"ў\",lue=\"Ŭ\",cue=\"ŭ\",uue=\"Û\",fue=\"û\",due=\"У\",pue=\"у\",hue=\"⇅\",mue=\"Ű\",vue=\"ű\",gue=\"⥮\",yue=\"⥾\",Eue=\"𝔘\",bue=\"𝔲\",xue=\"Ù\",wue=\"ù\",_ue=\"⥣\",Sue=\"↿\",Cue=\"↾\",Tue=\"▀\",kue=\"⌜\",Nue=\"⌜\",Aue=\"⌏\",Due=\"◸\",Iue=\"Ū\",Rue=\"ū\",Lue=\"¨\",Oue=\"_\",Pue=\"⏟\",$ue=\"⎵\",Fue=\"⏝\",Mue=\"⋃\",Vue=\"⊎\",jue=\"Ų\",que=\"ų\",Uue=\"𝕌\",Bue=\"𝕦\",zue=\"⤒\",Hue=\"↑\",Gue=\"↑\",Wue=\"⇑\",Que=\"⇅\",Yue=\"↕\",Zue=\"↕\",Xue=\"⇕\",Jue=\"⥮\",Kue=\"↿\",efe=\"↾\",tfe=\"⊎\",nfe=\"↖\",rfe=\"↗\",ofe=\"υ\",ife=\"ϒ\",sfe=\"ϒ\",afe=\"Υ\",lfe=\"υ\",cfe=\"↥\",ufe=\"⊥\",ffe=\"⇈\",dfe=\"⌝\",pfe=\"⌝\",hfe=\"⌎\",mfe=\"Ů\",vfe=\"ů\",gfe=\"◹\",yfe=\"𝒰\",Efe=\"𝓊\",bfe=\"⋰\",xfe=\"Ũ\",wfe=\"ũ\",_fe=\"▵\",Sfe=\"▴\",Cfe=\"⇈\",Tfe=\"Ü\",kfe=\"ü\",Nfe=\"⦧\",Afe=\"⦜\",Dfe=\"ϵ\",Ife=\"ϰ\",Rfe=\"∅\",Lfe=\"ϕ\",Ofe=\"ϖ\",Pfe=\"∝\",$fe=\"↕\",Ffe=\"⇕\",Mfe=\"ϱ\",Vfe=\"ς\",jfe=\"⊊︀\",qfe=\"⫋︀\",Ufe=\"⊋︀\",Bfe=\"⫌︀\",zfe=\"ϑ\",Hfe=\"⊲\",Gfe=\"⊳\",Wfe=\"⫨\",Qfe=\"⫫\",Yfe=\"⫩\",Zfe=\"В\",Xfe=\"в\",Jfe=\"⊢\",Kfe=\"⊨\",ede=\"⊩\",tde=\"⊫\",nde=\"⫦\",rde=\"⊻\",ode=\"∨\",ide=\"⋁\",sde=\"≚\",ade=\"⋮\",lde=\"|\",cde=\"‖\",ude=\"|\",fde=\"‖\",dde=\"∣\",pde=\"|\",hde=\"❘\",mde=\"≀\",vde=\" \",gde=\"𝔙\",yde=\"𝔳\",Ede=\"⊲\",bde=\"⊂⃒\",xde=\"⊃⃒\",wde=\"𝕍\",_de=\"𝕧\",Sde=\"∝\",Cde=\"⊳\",Tde=\"𝒱\",kde=\"𝓋\",Nde=\"⫋︀\",Ade=\"⊊︀\",Dde=\"⫌︀\",Ide=\"⊋︀\",Rde=\"⊪\",Lde=\"⦚\",Ode=\"Ŵ\",Pde=\"ŵ\",$de=\"⩟\",Fde=\"∧\",Mde=\"⋀\",Vde=\"≙\",jde=\"℘\",qde=\"𝔚\",Ude=\"𝔴\",Bde=\"𝕎\",zde=\"𝕨\",Hde=\"℘\",Gde=\"≀\",Wde=\"≀\",Qde=\"𝒲\",Yde=\"𝓌\",Zde=\"⋂\",Xde=\"◯\",Jde=\"⋃\",Kde=\"▽\",epe=\"𝔛\",tpe=\"𝔵\",npe=\"⟷\",rpe=\"⟺\",ope=\"Ξ\",ipe=\"ξ\",spe=\"⟵\",ape=\"⟸\",lpe=\"⟼\",cpe=\"⋻\",upe=\"⨀\",fpe=\"𝕏\",dpe=\"𝕩\",ppe=\"⨁\",hpe=\"⨂\",mpe=\"⟶\",vpe=\"⟹\",gpe=\"𝒳\",ype=\"𝓍\",Epe=\"⨆\",bpe=\"⨄\",xpe=\"△\",wpe=\"⋁\",_pe=\"⋀\",Spe=\"Ý\",Cpe=\"ý\",Tpe=\"Я\",kpe=\"я\",Npe=\"Ŷ\",Ape=\"ŷ\",Dpe=\"Ы\",Ipe=\"ы\",Rpe=\"¥\",Lpe=\"𝔜\",Ope=\"𝔶\",Ppe=\"Ї\",$pe=\"ї\",Fpe=\"𝕐\",Mpe=\"𝕪\",Vpe=\"𝒴\",jpe=\"𝓎\",qpe=\"Ю\",Upe=\"ю\",Bpe=\"ÿ\",zpe=\"Ÿ\",Hpe=\"Ź\",Gpe=\"ź\",Wpe=\"Ž\",Qpe=\"ž\",Ype=\"З\",Zpe=\"з\",Xpe=\"Ż\",Jpe=\"ż\",Kpe=\"ℨ\",ehe=\"​\",the=\"Ζ\",nhe=\"ζ\",rhe=\"𝔷\",ohe=\"ℨ\",ihe=\"Ж\",she=\"ж\",ahe=\"⇝\",lhe=\"𝕫\",che=\"ℤ\",uhe=\"𝒵\",fhe=\"𝓏\",dhe=\"‍\",phe=\"‌\",hhe={Aacute:XL,aacute:JL,Abreve:KL,abreve:eO,ac:tO,acd:nO,acE:rO,Acirc:oO,acirc:iO,acute:sO,Acy:aO,acy:lO,AElig:cO,aelig:uO,af:fO,Afr:dO,afr:pO,Agrave:hO,agrave:mO,alefsym:vO,aleph:gO,Alpha:yO,alpha:EO,Amacr:bO,amacr:xO,amalg:wO,amp:_O,AMP:SO,andand:CO,And:TO,and:kO,andd:NO,andslope:AO,andv:DO,ang:IO,ange:RO,angle:LO,angmsdaa:OO,angmsdab:PO,angmsdac:$O,angmsdad:FO,angmsdae:MO,angmsdaf:VO,angmsdag:jO,angmsdah:qO,angmsd:UO,angrt:BO,angrtvb:zO,angrtvbd:HO,angsph:GO,angst:WO,angzarr:QO,Aogon:YO,aogon:ZO,Aopf:XO,aopf:JO,apacir:KO,ap:eP,apE:tP,ape:nP,apid:rP,apos:oP,ApplyFunction:iP,approx:sP,approxeq:aP,Aring:lP,aring:cP,Ascr:uP,ascr:fP,Assign:dP,ast:pP,asymp:hP,asympeq:mP,Atilde:vP,atilde:gP,Auml:yP,auml:EP,awconint:bP,awint:xP,backcong:wP,backepsilon:_P,backprime:SP,backsim:CP,backsimeq:TP,Backslash:kP,Barv:NP,barvee:AP,barwed:DP,Barwed:IP,barwedge:RP,bbrk:LP,bbrktbrk:OP,bcong:PP,Bcy:$P,bcy:FP,bdquo:MP,becaus:VP,because:jP,Because:qP,bemptyv:UP,bepsi:BP,bernou:zP,Bernoullis:HP,Beta:GP,beta:WP,beth:QP,between:YP,Bfr:ZP,bfr:XP,bigcap:JP,bigcirc:KP,bigcup:e4,bigodot:t4,bigoplus:n4,bigotimes:r4,bigsqcup:o4,bigstar:i4,bigtriangledown:s4,bigtriangleup:a4,biguplus:l4,bigvee:c4,bigwedge:u4,bkarow:f4,blacklozenge:d4,blacksquare:p4,blacktriangle:h4,blacktriangledown:m4,blacktriangleleft:v4,blacktriangleright:g4,blank:y4,blk12:E4,blk14:b4,blk34:x4,block:w4,bne:_4,bnequiv:S4,bNot:C4,bnot:T4,Bopf:k4,bopf:N4,bot:A4,bottom:D4,bowtie:I4,boxbox:R4,boxdl:L4,boxdL:O4,boxDl:P4,boxDL:$4,boxdr:F4,boxdR:M4,boxDr:V4,boxDR:j4,boxh:q4,boxH:U4,boxhd:B4,boxHd:z4,boxhD:H4,boxHD:G4,boxhu:W4,boxHu:Q4,boxhU:Y4,boxHU:Z4,boxminus:X4,boxplus:J4,boxtimes:K4,boxul:e$,boxuL:t$,boxUl:n$,boxUL:r$,boxur:o$,boxuR:i$,boxUr:s$,boxUR:a$,boxv:l$,boxV:c$,boxvh:u$,boxvH:f$,boxVh:d$,boxVH:p$,boxvl:h$,boxvL:m$,boxVl:v$,boxVL:g$,boxvr:y$,boxvR:E$,boxVr:b$,boxVR:x$,bprime:w$,breve:_$,Breve:S$,brvbar:C$,bscr:T$,Bscr:k$,bsemi:N$,bsim:A$,bsime:D$,bsolb:I$,bsol:R$,bsolhsub:L$,bull:O$,bullet:P$,bump:$$,bumpE:F$,bumpe:M$,Bumpeq:V$,bumpeq:j$,Cacute:q$,cacute:U$,capand:B$,capbrcup:z$,capcap:H$,cap:G$,Cap:W$,capcup:Q$,capdot:Y$,CapitalDifferentialD:Z$,caps:X$,caret:J$,caron:K$,Cayleys:e6,ccaps:t6,Ccaron:n6,ccaron:r6,Ccedil:o6,ccedil:i6,Ccirc:s6,ccirc:a6,Cconint:l6,ccups:c6,ccupssm:u6,Cdot:f6,cdot:d6,cedil:p6,Cedilla:h6,cemptyv:m6,cent:v6,centerdot:g6,CenterDot:y6,cfr:E6,Cfr:b6,CHcy:x6,chcy:w6,check:_6,checkmark:S6,Chi:C6,chi:T6,circ:k6,circeq:N6,circlearrowleft:A6,circlearrowright:D6,circledast:I6,circledcirc:R6,circleddash:L6,CircleDot:O6,circledR:P6,circledS:$6,CircleMinus:F6,CirclePlus:M6,CircleTimes:V6,cir:j6,cirE:q6,cire:U6,cirfnint:B6,cirmid:z6,cirscir:H6,ClockwiseContourIntegral:G6,CloseCurlyDoubleQuote:W6,CloseCurlyQuote:Q6,clubs:Y6,clubsuit:Z6,colon:X6,Colon:J6,Colone:K6,colone:e7,coloneq:t7,comma:n7,commat:r7,comp:o7,compfn:i7,complement:s7,complexes:a7,cong:l7,congdot:c7,Congruent:u7,conint:f7,Conint:d7,ContourIntegral:p7,copf:h7,Copf:m7,coprod:v7,Coproduct:g7,copy:y7,COPY:E7,copysr:b7,CounterClockwiseContourIntegral:x7,crarr:w7,cross:_7,Cross:S7,Cscr:C7,cscr:T7,csub:k7,csube:N7,csup:A7,csupe:D7,ctdot:I7,cudarrl:R7,cudarrr:L7,cuepr:O7,cuesc:P7,cularr:$7,cularrp:F7,cupbrcap:M7,cupcap:V7,CupCap:j7,cup:q7,Cup:U7,cupcup:B7,cupdot:z7,cupor:H7,cups:G7,curarr:W7,curarrm:Q7,curlyeqprec:Y7,curlyeqsucc:Z7,curlyvee:X7,curlywedge:J7,curren:K7,curvearrowleft:eF,curvearrowright:tF,cuvee:nF,cuwed:rF,cwconint:oF,cwint:iF,cylcty:sF,dagger:aF,Dagger:lF,daleth:cF,darr:uF,Darr:fF,dArr:dF,dash:pF,Dashv:hF,dashv:mF,dbkarow:vF,dblac:gF,Dcaron:yF,dcaron:EF,Dcy:bF,dcy:xF,ddagger:wF,ddarr:_F,DD:SF,dd:CF,DDotrahd:TF,ddotseq:kF,deg:NF,Del:AF,Delta:DF,delta:IF,demptyv:RF,dfisht:LF,Dfr:OF,dfr:PF,dHar:$F,dharl:FF,dharr:MF,DiacriticalAcute:VF,DiacriticalDot:jF,DiacriticalDoubleAcute:qF,DiacriticalGrave:UF,DiacriticalTilde:BF,diam:zF,diamond:HF,Diamond:GF,diamondsuit:WF,diams:QF,die:YF,DifferentialD:ZF,digamma:XF,disin:JF,div:KF,divide:e8,divideontimes:t8,divonx:n8,DJcy:r8,djcy:o8,dlcorn:i8,dlcrop:s8,dollar:a8,Dopf:l8,dopf:c8,Dot:u8,dot:f8,DotDot:d8,doteq:p8,doteqdot:h8,DotEqual:m8,dotminus:v8,dotplus:g8,dotsquare:y8,doublebarwedge:E8,DoubleContourIntegral:b8,DoubleDot:x8,DoubleDownArrow:w8,DoubleLeftArrow:_8,DoubleLeftRightArrow:S8,DoubleLeftTee:C8,DoubleLongLeftArrow:T8,DoubleLongLeftRightArrow:k8,DoubleLongRightArrow:N8,DoubleRightArrow:A8,DoubleRightTee:D8,DoubleUpArrow:I8,DoubleUpDownArrow:R8,DoubleVerticalBar:L8,DownArrowBar:O8,downarrow:P8,DownArrow:$8,Downarrow:F8,DownArrowUpArrow:M8,DownBreve:V8,downdownarrows:j8,downharpoonleft:q8,downharpoonright:U8,DownLeftRightVector:B8,DownLeftTeeVector:z8,DownLeftVectorBar:H8,DownLeftVector:G8,DownRightTeeVector:W8,DownRightVectorBar:Q8,DownRightVector:Y8,DownTeeArrow:Z8,DownTee:X8,drbkarow:J8,drcorn:K8,drcrop:e9,Dscr:t9,dscr:n9,DScy:r9,dscy:o9,dsol:i9,Dstrok:s9,dstrok:a9,dtdot:l9,dtri:c9,dtrif:u9,duarr:f9,duhar:d9,dwangle:p9,DZcy:h9,dzcy:m9,dzigrarr:v9,Eacute:g9,eacute:y9,easter:E9,Ecaron:b9,ecaron:x9,Ecirc:w9,ecirc:_9,ecir:S9,ecolon:C9,Ecy:T9,ecy:k9,eDDot:N9,Edot:A9,edot:D9,eDot:I9,ee:R9,efDot:L9,Efr:O9,efr:P9,eg:$9,Egrave:F9,egrave:M9,egs:V9,egsdot:j9,el:q9,Element:U9,elinters:B9,ell:z9,els:H9,elsdot:G9,Emacr:W9,emacr:Q9,empty:Y9,emptyset:Z9,EmptySmallSquare:X9,emptyv:J9,EmptyVerySmallSquare:K9,emsp13:eM,emsp14:tM,emsp:nM,ENG:rM,eng:oM,ensp:iM,Eogon:sM,eogon:aM,Eopf:lM,eopf:cM,epar:uM,eparsl:fM,eplus:dM,epsi:pM,Epsilon:hM,epsilon:mM,epsiv:vM,eqcirc:gM,eqcolon:yM,eqsim:EM,eqslantgtr:bM,eqslantless:xM,Equal:wM,equals:_M,EqualTilde:SM,equest:CM,Equilibrium:TM,equiv:kM,equivDD:NM,eqvparsl:AM,erarr:DM,erDot:IM,escr:RM,Escr:LM,esdot:OM,Esim:PM,esim:$M,Eta:FM,eta:MM,ETH:VM,eth:jM,Euml:qM,euml:UM,euro:BM,excl:zM,exist:HM,Exists:GM,expectation:WM,exponentiale:QM,ExponentialE:YM,fallingdotseq:ZM,Fcy:XM,fcy:JM,female:KM,ffilig:eV,fflig:tV,ffllig:nV,Ffr:rV,ffr:oV,filig:iV,FilledSmallSquare:sV,FilledVerySmallSquare:aV,fjlig:lV,flat:cV,fllig:uV,fltns:fV,fnof:dV,Fopf:pV,fopf:hV,forall:mV,ForAll:vV,fork:gV,forkv:yV,Fouriertrf:EV,fpartint:bV,frac12:xV,frac13:wV,frac14:_V,frac15:SV,frac16:CV,frac18:TV,frac23:kV,frac25:NV,frac34:AV,frac35:DV,frac38:IV,frac45:RV,frac56:LV,frac58:OV,frac78:PV,frasl:$V,frown:FV,fscr:MV,Fscr:VV,gacute:jV,Gamma:qV,gamma:UV,Gammad:BV,gammad:zV,gap:HV,Gbreve:GV,gbreve:WV,Gcedil:QV,Gcirc:YV,gcirc:ZV,Gcy:XV,gcy:JV,Gdot:KV,gdot:ej,ge:tj,gE:nj,gEl:rj,gel:oj,geq:ij,geqq:sj,geqslant:aj,gescc:lj,ges:cj,gesdot:uj,gesdoto:fj,gesdotol:dj,gesl:pj,gesles:hj,Gfr:mj,gfr:vj,gg:gj,Gg:yj,ggg:Ej,gimel:bj,GJcy:xj,gjcy:wj,gla:_j,gl:Sj,glE:Cj,glj:Tj,gnap:kj,gnapprox:Nj,gne:Aj,gnE:Dj,gneq:Ij,gneqq:Rj,gnsim:Lj,Gopf:Oj,gopf:Pj,grave:$j,GreaterEqual:Fj,GreaterEqualLess:Mj,GreaterFullEqual:Vj,GreaterGreater:jj,GreaterLess:qj,GreaterSlantEqual:Uj,GreaterTilde:Bj,Gscr:zj,gscr:Hj,gsim:Gj,gsime:Wj,gsiml:Qj,gtcc:Yj,gtcir:Zj,gt:Xj,GT:Jj,Gt:Kj,gtdot:eq,gtlPar:tq,gtquest:nq,gtrapprox:rq,gtrarr:oq,gtrdot:iq,gtreqless:sq,gtreqqless:aq,gtrless:lq,gtrsim:cq,gvertneqq:uq,gvnE:fq,Hacek:dq,hairsp:pq,half:hq,hamilt:mq,HARDcy:vq,hardcy:gq,harrcir:yq,harr:Eq,hArr:bq,harrw:xq,Hat:wq,hbar:_q,Hcirc:Sq,hcirc:Cq,hearts:Tq,heartsuit:kq,hellip:Nq,hercon:Aq,hfr:Dq,Hfr:Iq,HilbertSpace:Rq,hksearow:Lq,hkswarow:Oq,hoarr:Pq,homtht:$q,hookleftarrow:Fq,hookrightarrow:Mq,hopf:Vq,Hopf:jq,horbar:qq,HorizontalLine:Uq,hscr:Bq,Hscr:zq,hslash:Hq,Hstrok:Gq,hstrok:Wq,HumpDownHump:Qq,HumpEqual:Yq,hybull:Zq,hyphen:Xq,Iacute:Jq,iacute:Kq,ic:eU,Icirc:tU,icirc:nU,Icy:rU,icy:oU,Idot:iU,IEcy:sU,iecy:aU,iexcl:lU,iff:cU,ifr:uU,Ifr:fU,Igrave:dU,igrave:pU,ii:hU,iiiint:mU,iiint:vU,iinfin:gU,iiota:yU,IJlig:EU,ijlig:bU,Imacr:xU,imacr:wU,image:_U,ImaginaryI:SU,imagline:CU,imagpart:TU,imath:kU,Im:NU,imof:AU,imped:DU,Implies:IU,incare:RU,in:\"∈\",infin:LU,infintie:OU,inodot:PU,intcal:$U,int:FU,Int:MU,integers:VU,Integral:jU,intercal:qU,Intersection:UU,intlarhk:BU,intprod:zU,InvisibleComma:HU,InvisibleTimes:GU,IOcy:WU,iocy:QU,Iogon:YU,iogon:ZU,Iopf:XU,iopf:JU,Iota:KU,iota:eB,iprod:tB,iquest:nB,iscr:rB,Iscr:oB,isin:iB,isindot:sB,isinE:aB,isins:lB,isinsv:cB,isinv:uB,it:fB,Itilde:dB,itilde:pB,Iukcy:hB,iukcy:mB,Iuml:vB,iuml:gB,Jcirc:yB,jcirc:EB,Jcy:bB,jcy:xB,Jfr:wB,jfr:_B,jmath:SB,Jopf:CB,jopf:TB,Jscr:kB,jscr:NB,Jsercy:AB,jsercy:DB,Jukcy:IB,jukcy:RB,Kappa:LB,kappa:OB,kappav:PB,Kcedil:$B,kcedil:FB,Kcy:MB,kcy:VB,Kfr:jB,kfr:qB,kgreen:UB,KHcy:BB,khcy:zB,KJcy:HB,kjcy:GB,Kopf:WB,kopf:QB,Kscr:YB,kscr:ZB,lAarr:XB,Lacute:JB,lacute:KB,laemptyv:ez,lagran:tz,Lambda:nz,lambda:rz,lang:oz,Lang:iz,langd:sz,langle:az,lap:lz,Laplacetrf:cz,laquo:uz,larrb:fz,larrbfs:dz,larr:pz,Larr:hz,lArr:mz,larrfs:vz,larrhk:gz,larrlp:yz,larrpl:Ez,larrsim:bz,larrtl:xz,latail:wz,lAtail:_z,lat:Sz,late:Cz,lates:Tz,lbarr:kz,lBarr:Nz,lbbrk:Az,lbrace:Dz,lbrack:Iz,lbrke:Rz,lbrksld:Lz,lbrkslu:Oz,Lcaron:Pz,lcaron:$z,Lcedil:Fz,lcedil:Mz,lceil:Vz,lcub:jz,Lcy:qz,lcy:Uz,ldca:Bz,ldquo:zz,ldquor:Hz,ldrdhar:Gz,ldrushar:Wz,ldsh:Qz,le:Yz,lE:Zz,LeftAngleBracket:Xz,LeftArrowBar:Jz,leftarrow:Kz,LeftArrow:eH,Leftarrow:tH,LeftArrowRightArrow:nH,leftarrowtail:rH,LeftCeiling:oH,LeftDoubleBracket:iH,LeftDownTeeVector:sH,LeftDownVectorBar:aH,LeftDownVector:lH,LeftFloor:cH,leftharpoondown:uH,leftharpoonup:fH,leftleftarrows:dH,leftrightarrow:pH,LeftRightArrow:hH,Leftrightarrow:mH,leftrightarrows:vH,leftrightharpoons:gH,leftrightsquigarrow:yH,LeftRightVector:EH,LeftTeeArrow:bH,LeftTee:xH,LeftTeeVector:wH,leftthreetimes:_H,LeftTriangleBar:SH,LeftTriangle:CH,LeftTriangleEqual:TH,LeftUpDownVector:kH,LeftUpTeeVector:NH,LeftUpVectorBar:AH,LeftUpVector:DH,LeftVectorBar:IH,LeftVector:RH,lEg:LH,leg:OH,leq:PH,leqq:$H,leqslant:FH,lescc:MH,les:VH,lesdot:jH,lesdoto:qH,lesdotor:UH,lesg:BH,lesges:zH,lessapprox:HH,lessdot:GH,lesseqgtr:WH,lesseqqgtr:QH,LessEqualGreater:YH,LessFullEqual:ZH,LessGreater:XH,lessgtr:JH,LessLess:KH,lesssim:eG,LessSlantEqual:tG,LessTilde:nG,lfisht:rG,lfloor:oG,Lfr:iG,lfr:sG,lg:aG,lgE:lG,lHar:cG,lhard:uG,lharu:fG,lharul:dG,lhblk:pG,LJcy:hG,ljcy:mG,llarr:vG,ll:gG,Ll:yG,llcorner:EG,Lleftarrow:bG,llhard:xG,lltri:wG,Lmidot:_G,lmidot:SG,lmoustache:CG,lmoust:TG,lnap:kG,lnapprox:NG,lne:AG,lnE:DG,lneq:IG,lneqq:RG,lnsim:LG,loang:OG,loarr:PG,lobrk:$G,longleftarrow:FG,LongLeftArrow:MG,Longleftarrow:VG,longleftrightarrow:jG,LongLeftRightArrow:qG,Longleftrightarrow:UG,longmapsto:BG,longrightarrow:zG,LongRightArrow:HG,Longrightarrow:GG,looparrowleft:WG,looparrowright:QG,lopar:YG,Lopf:ZG,lopf:XG,loplus:JG,lotimes:KG,lowast:eW,lowbar:tW,LowerLeftArrow:nW,LowerRightArrow:rW,loz:oW,lozenge:iW,lozf:sW,lpar:aW,lparlt:lW,lrarr:cW,lrcorner:uW,lrhar:fW,lrhard:dW,lrm:pW,lrtri:hW,lsaquo:mW,lscr:vW,Lscr:gW,lsh:yW,Lsh:EW,lsim:bW,lsime:xW,lsimg:wW,lsqb:_W,lsquo:SW,lsquor:CW,Lstrok:TW,lstrok:kW,ltcc:NW,ltcir:AW,lt:DW,LT:IW,Lt:RW,ltdot:LW,lthree:OW,ltimes:PW,ltlarr:$W,ltquest:FW,ltri:MW,ltrie:VW,ltrif:jW,ltrPar:qW,lurdshar:UW,luruhar:BW,lvertneqq:zW,lvnE:HW,macr:GW,male:WW,malt:QW,maltese:YW,Map:\"⤅\",map:ZW,mapsto:XW,mapstodown:JW,mapstoleft:KW,mapstoup:eQ,marker:tQ,mcomma:nQ,Mcy:rQ,mcy:oQ,mdash:iQ,mDDot:sQ,measuredangle:aQ,MediumSpace:lQ,Mellintrf:cQ,Mfr:uQ,mfr:fQ,mho:dQ,micro:pQ,midast:hQ,midcir:mQ,mid:vQ,middot:gQ,minusb:yQ,minus:EQ,minusd:bQ,minusdu:xQ,MinusPlus:wQ,mlcp:_Q,mldr:SQ,mnplus:CQ,models:TQ,Mopf:kQ,mopf:NQ,mp:AQ,mscr:DQ,Mscr:IQ,mstpos:RQ,Mu:LQ,mu:OQ,multimap:PQ,mumap:$Q,nabla:FQ,Nacute:MQ,nacute:VQ,nang:jQ,nap:qQ,napE:UQ,napid:BQ,napos:zQ,napprox:HQ,natural:GQ,naturals:WQ,natur:QQ,nbsp:YQ,nbump:ZQ,nbumpe:XQ,ncap:JQ,Ncaron:KQ,ncaron:eY,Ncedil:tY,ncedil:nY,ncong:rY,ncongdot:oY,ncup:iY,Ncy:sY,ncy:aY,ndash:lY,nearhk:cY,nearr:uY,neArr:fY,nearrow:dY,ne:pY,nedot:hY,NegativeMediumSpace:mY,NegativeThickSpace:vY,NegativeThinSpace:gY,NegativeVeryThinSpace:yY,nequiv:EY,nesear:bY,nesim:xY,NestedGreaterGreater:wY,NestedLessLess:_Y,NewLine:SY,nexist:CY,nexists:TY,Nfr:kY,nfr:NY,ngE:AY,nge:DY,ngeq:IY,ngeqq:RY,ngeqslant:LY,nges:OY,nGg:PY,ngsim:$Y,nGt:FY,ngt:MY,ngtr:VY,nGtv:jY,nharr:qY,nhArr:UY,nhpar:BY,ni:zY,nis:HY,nisd:GY,niv:WY,NJcy:QY,njcy:YY,nlarr:ZY,nlArr:XY,nldr:JY,nlE:KY,nle:eZ,nleftarrow:tZ,nLeftarrow:nZ,nleftrightarrow:rZ,nLeftrightarrow:oZ,nleq:iZ,nleqq:sZ,nleqslant:aZ,nles:lZ,nless:cZ,nLl:uZ,nlsim:fZ,nLt:dZ,nlt:pZ,nltri:hZ,nltrie:mZ,nLtv:vZ,nmid:gZ,NoBreak:yZ,NonBreakingSpace:EZ,nopf:bZ,Nopf:xZ,Not:wZ,not:_Z,NotCongruent:SZ,NotCupCap:CZ,NotDoubleVerticalBar:TZ,NotElement:kZ,NotEqual:NZ,NotEqualTilde:AZ,NotExists:DZ,NotGreater:IZ,NotGreaterEqual:RZ,NotGreaterFullEqual:LZ,NotGreaterGreater:OZ,NotGreaterLess:PZ,NotGreaterSlantEqual:$Z,NotGreaterTilde:FZ,NotHumpDownHump:MZ,NotHumpEqual:VZ,notin:jZ,notindot:qZ,notinE:UZ,notinva:BZ,notinvb:zZ,notinvc:HZ,NotLeftTriangleBar:GZ,NotLeftTriangle:WZ,NotLeftTriangleEqual:QZ,NotLess:YZ,NotLessEqual:ZZ,NotLessGreater:XZ,NotLessLess:JZ,NotLessSlantEqual:KZ,NotLessTilde:eX,NotNestedGreaterGreater:tX,NotNestedLessLess:nX,notni:rX,notniva:oX,notnivb:iX,notnivc:sX,NotPrecedes:aX,NotPrecedesEqual:lX,NotPrecedesSlantEqual:cX,NotReverseElement:uX,NotRightTriangleBar:fX,NotRightTriangle:dX,NotRightTriangleEqual:pX,NotSquareSubset:hX,NotSquareSubsetEqual:mX,NotSquareSuperset:vX,NotSquareSupersetEqual:gX,NotSubset:yX,NotSubsetEqual:EX,NotSucceeds:bX,NotSucceedsEqual:xX,NotSucceedsSlantEqual:wX,NotSucceedsTilde:_X,NotSuperset:SX,NotSupersetEqual:CX,NotTilde:TX,NotTildeEqual:kX,NotTildeFullEqual:NX,NotTildeTilde:AX,NotVerticalBar:DX,nparallel:IX,npar:RX,nparsl:LX,npart:OX,npolint:PX,npr:$X,nprcue:FX,nprec:MX,npreceq:VX,npre:jX,nrarrc:qX,nrarr:UX,nrArr:BX,nrarrw:zX,nrightarrow:HX,nRightarrow:GX,nrtri:WX,nrtrie:QX,nsc:YX,nsccue:ZX,nsce:XX,Nscr:JX,nscr:KX,nshortmid:eJ,nshortparallel:tJ,nsim:nJ,nsime:rJ,nsimeq:oJ,nsmid:iJ,nspar:sJ,nsqsube:aJ,nsqsupe:lJ,nsub:cJ,nsubE:uJ,nsube:fJ,nsubset:dJ,nsubseteq:pJ,nsubseteqq:hJ,nsucc:mJ,nsucceq:vJ,nsup:gJ,nsupE:yJ,nsupe:EJ,nsupset:bJ,nsupseteq:xJ,nsupseteqq:wJ,ntgl:_J,Ntilde:SJ,ntilde:CJ,ntlg:TJ,ntriangleleft:kJ,ntrianglelefteq:NJ,ntriangleright:AJ,ntrianglerighteq:DJ,Nu:IJ,nu:RJ,num:LJ,numero:OJ,numsp:PJ,nvap:$J,nvdash:FJ,nvDash:MJ,nVdash:VJ,nVDash:jJ,nvge:qJ,nvgt:UJ,nvHarr:BJ,nvinfin:zJ,nvlArr:HJ,nvle:GJ,nvlt:WJ,nvltrie:QJ,nvrArr:YJ,nvrtrie:ZJ,nvsim:XJ,nwarhk:JJ,nwarr:KJ,nwArr:eK,nwarrow:tK,nwnear:nK,Oacute:rK,oacute:oK,oast:iK,Ocirc:sK,ocirc:aK,ocir:lK,Ocy:cK,ocy:uK,odash:fK,Odblac:dK,odblac:pK,odiv:hK,odot:mK,odsold:vK,OElig:gK,oelig:yK,ofcir:EK,Ofr:bK,ofr:xK,ogon:wK,Ograve:_K,ograve:SK,ogt:CK,ohbar:TK,ohm:kK,oint:NK,olarr:AK,olcir:DK,olcross:IK,oline:RK,olt:LK,Omacr:OK,omacr:PK,Omega:$K,omega:FK,Omicron:MK,omicron:VK,omid:jK,ominus:qK,Oopf:UK,oopf:BK,opar:zK,OpenCurlyDoubleQuote:HK,OpenCurlyQuote:GK,operp:WK,oplus:QK,orarr:YK,Or:ZK,or:XK,ord:JK,order:KK,orderof:eee,ordf:tee,ordm:nee,origof:ree,oror:oee,orslope:iee,orv:see,oS:aee,Oscr:lee,oscr:cee,Oslash:uee,oslash:fee,osol:dee,Otilde:pee,otilde:hee,otimesas:mee,Otimes:vee,otimes:gee,Ouml:yee,ouml:Eee,ovbar:bee,OverBar:xee,OverBrace:wee,OverBracket:_ee,OverParenthesis:See,para:Cee,parallel:Tee,par:kee,parsim:Nee,parsl:Aee,part:Dee,PartialD:Iee,Pcy:Ree,pcy:Lee,percnt:Oee,period:Pee,permil:$ee,perp:Fee,pertenk:Mee,Pfr:Vee,pfr:jee,Phi:qee,phi:Uee,phiv:Bee,phmmat:zee,phone:Hee,Pi:Gee,pi:Wee,pitchfork:Qee,piv:Yee,planck:Zee,planckh:Xee,plankv:Jee,plusacir:Kee,plusb:ete,pluscir:tte,plus:nte,plusdo:rte,plusdu:ote,pluse:ite,PlusMinus:ste,plusmn:ate,plussim:lte,plustwo:cte,pm:ute,Poincareplane:fte,pointint:dte,popf:pte,Popf:hte,pound:mte,prap:vte,Pr:gte,pr:yte,prcue:Ete,precapprox:bte,prec:xte,preccurlyeq:wte,Precedes:_te,PrecedesEqual:Ste,PrecedesSlantEqual:Cte,PrecedesTilde:Tte,preceq:kte,precnapprox:Nte,precneqq:Ate,precnsim:Dte,pre:Ite,prE:Rte,precsim:Lte,prime:Ote,Prime:Pte,primes:$te,prnap:Fte,prnE:Mte,prnsim:Vte,prod:jte,Product:qte,profalar:Ute,profline:Bte,profsurf:zte,prop:Hte,Proportional:Gte,Proportion:Wte,propto:Qte,prsim:Yte,prurel:Zte,Pscr:Xte,pscr:Jte,Psi:Kte,psi:ene,puncsp:tne,Qfr:nne,qfr:rne,qint:one,qopf:ine,Qopf:sne,qprime:ane,Qscr:lne,qscr:cne,quaternions:une,quatint:fne,quest:dne,questeq:pne,quot:hne,QUOT:mne,rAarr:vne,race:gne,Racute:yne,racute:Ene,radic:bne,raemptyv:xne,rang:wne,Rang:_ne,rangd:Sne,range:Cne,rangle:Tne,raquo:kne,rarrap:Nne,rarrb:Ane,rarrbfs:Dne,rarrc:Ine,rarr:Rne,Rarr:Lne,rArr:One,rarrfs:Pne,rarrhk:$ne,rarrlp:Fne,rarrpl:Mne,rarrsim:Vne,Rarrtl:jne,rarrtl:qne,rarrw:Une,ratail:Bne,rAtail:zne,ratio:Hne,rationals:Gne,rbarr:Wne,rBarr:Qne,RBarr:Yne,rbbrk:Zne,rbrace:Xne,rbrack:Jne,rbrke:Kne,rbrksld:ere,rbrkslu:tre,Rcaron:nre,rcaron:rre,Rcedil:ore,rcedil:ire,rceil:sre,rcub:are,Rcy:lre,rcy:cre,rdca:ure,rdldhar:fre,rdquo:dre,rdquor:pre,rdsh:hre,real:mre,realine:vre,realpart:gre,reals:yre,Re:Ere,rect:bre,reg:xre,REG:wre,ReverseElement:_re,ReverseEquilibrium:Sre,ReverseUpEquilibrium:Cre,rfisht:Tre,rfloor:kre,rfr:Nre,Rfr:Are,rHar:Dre,rhard:Ire,rharu:Rre,rharul:Lre,Rho:Ore,rho:Pre,rhov:$re,RightAngleBracket:Fre,RightArrowBar:Mre,rightarrow:Vre,RightArrow:jre,Rightarrow:qre,RightArrowLeftArrow:Ure,rightarrowtail:Bre,RightCeiling:zre,RightDoubleBracket:Hre,RightDownTeeVector:Gre,RightDownVectorBar:Wre,RightDownVector:Qre,RightFloor:Yre,rightharpoondown:Zre,rightharpoonup:Xre,rightleftarrows:Jre,rightleftharpoons:Kre,rightrightarrows:eoe,rightsquigarrow:toe,RightTeeArrow:noe,RightTee:roe,RightTeeVector:ooe,rightthreetimes:ioe,RightTriangleBar:soe,RightTriangle:aoe,RightTriangleEqual:loe,RightUpDownVector:coe,RightUpTeeVector:uoe,RightUpVectorBar:foe,RightUpVector:doe,RightVectorBar:poe,RightVector:hoe,ring:moe,risingdotseq:voe,rlarr:goe,rlhar:yoe,rlm:Eoe,rmoustache:boe,rmoust:xoe,rnmid:woe,roang:_oe,roarr:Soe,robrk:Coe,ropar:Toe,ropf:koe,Ropf:Noe,roplus:Aoe,rotimes:Doe,RoundImplies:Ioe,rpar:Roe,rpargt:Loe,rppolint:Ooe,rrarr:Poe,Rrightarrow:$oe,rsaquo:Foe,rscr:Moe,Rscr:Voe,rsh:joe,Rsh:qoe,rsqb:Uoe,rsquo:Boe,rsquor:zoe,rthree:Hoe,rtimes:Goe,rtri:Woe,rtrie:Qoe,rtrif:Yoe,rtriltri:Zoe,RuleDelayed:Xoe,ruluhar:Joe,rx:Koe,Sacute:eie,sacute:tie,sbquo:nie,scap:rie,Scaron:oie,scaron:iie,Sc:sie,sc:aie,sccue:lie,sce:cie,scE:uie,Scedil:fie,scedil:die,Scirc:pie,scirc:hie,scnap:mie,scnE:vie,scnsim:gie,scpolint:yie,scsim:Eie,Scy:bie,scy:xie,sdotb:wie,sdot:_ie,sdote:Sie,searhk:Cie,searr:Tie,seArr:kie,searrow:Nie,sect:Aie,semi:Die,seswar:Iie,setminus:Rie,setmn:Lie,sext:Oie,Sfr:Pie,sfr:$ie,sfrown:Fie,sharp:Mie,SHCHcy:Vie,shchcy:jie,SHcy:qie,shcy:Uie,ShortDownArrow:Bie,ShortLeftArrow:zie,shortmid:Hie,shortparallel:Gie,ShortRightArrow:Wie,ShortUpArrow:Qie,shy:Yie,Sigma:Zie,sigma:Xie,sigmaf:Jie,sigmav:Kie,sim:ese,simdot:tse,sime:nse,simeq:rse,simg:ose,simgE:ise,siml:sse,simlE:ase,simne:lse,simplus:cse,simrarr:use,slarr:fse,SmallCircle:dse,smallsetminus:pse,smashp:hse,smeparsl:mse,smid:vse,smile:gse,smt:yse,smte:Ese,smtes:bse,SOFTcy:xse,softcy:wse,solbar:_se,solb:Sse,sol:Cse,Sopf:Tse,sopf:kse,spades:Nse,spadesuit:Ase,spar:Dse,sqcap:Ise,sqcaps:Rse,sqcup:Lse,sqcups:Ose,Sqrt:Pse,sqsub:$se,sqsube:Fse,sqsubset:Mse,sqsubseteq:Vse,sqsup:jse,sqsupe:qse,sqsupset:Use,sqsupseteq:Bse,square:zse,Square:Hse,SquareIntersection:Gse,SquareSubset:Wse,SquareSubsetEqual:Qse,SquareSuperset:Yse,SquareSupersetEqual:Zse,SquareUnion:Xse,squarf:Jse,squ:Kse,squf:eae,srarr:tae,Sscr:nae,sscr:rae,ssetmn:oae,ssmile:iae,sstarf:sae,Star:aae,star:lae,starf:cae,straightepsilon:uae,straightphi:fae,strns:dae,sub:pae,Sub:hae,subdot:mae,subE:vae,sube:gae,subedot:yae,submult:Eae,subnE:bae,subne:xae,subplus:wae,subrarr:_ae,subset:Sae,Subset:Cae,subseteq:Tae,subseteqq:kae,SubsetEqual:Nae,subsetneq:Aae,subsetneqq:Dae,subsim:Iae,subsub:Rae,subsup:Lae,succapprox:Oae,succ:Pae,succcurlyeq:$ae,Succeeds:Fae,SucceedsEqual:Mae,SucceedsSlantEqual:Vae,SucceedsTilde:jae,succeq:qae,succnapprox:Uae,succneqq:Bae,succnsim:zae,succsim:Hae,SuchThat:Gae,sum:Wae,Sum:Qae,sung:Yae,sup1:Zae,sup2:Xae,sup3:Jae,sup:Kae,Sup:ele,supdot:tle,supdsub:nle,supE:rle,supe:ole,supedot:ile,Superset:sle,SupersetEqual:ale,suphsol:lle,suphsub:cle,suplarr:ule,supmult:fle,supnE:dle,supne:ple,supplus:hle,supset:mle,Supset:vle,supseteq:gle,supseteqq:yle,supsetneq:Ele,supsetneqq:ble,supsim:xle,supsub:wle,supsup:_le,swarhk:Sle,swarr:Cle,swArr:Tle,swarrow:kle,swnwar:Nle,szlig:Ale,Tab:Dle,target:Ile,Tau:Rle,tau:Lle,tbrk:Ole,Tcaron:Ple,tcaron:$le,Tcedil:Fle,tcedil:Mle,Tcy:Vle,tcy:jle,tdot:qle,telrec:Ule,Tfr:Ble,tfr:zle,there4:Hle,therefore:Gle,Therefore:Wle,Theta:Qle,theta:Yle,thetasym:Zle,thetav:Xle,thickapprox:Jle,thicksim:Kle,ThickSpace:ece,ThinSpace:tce,thinsp:nce,thkap:rce,thksim:oce,THORN:ice,thorn:sce,tilde:ace,Tilde:lce,TildeEqual:cce,TildeFullEqual:uce,TildeTilde:fce,timesbar:dce,timesb:pce,times:hce,timesd:mce,tint:vce,toea:gce,topbot:yce,topcir:Ece,top:bce,Topf:xce,topf:wce,topfork:_ce,tosa:Sce,tprime:Cce,trade:Tce,TRADE:kce,triangle:Nce,triangledown:Ace,triangleleft:Dce,trianglelefteq:Ice,triangleq:Rce,triangleright:Lce,trianglerighteq:Oce,tridot:Pce,trie:$ce,triminus:Fce,TripleDot:Mce,triplus:Vce,trisb:jce,tritime:qce,trpezium:Uce,Tscr:Bce,tscr:zce,TScy:Hce,tscy:Gce,TSHcy:Wce,tshcy:Qce,Tstrok:Yce,tstrok:Zce,twixt:Xce,twoheadleftarrow:Jce,twoheadrightarrow:Kce,Uacute:eue,uacute:tue,uarr:nue,Uarr:rue,uArr:oue,Uarrocir:iue,Ubrcy:sue,ubrcy:aue,Ubreve:lue,ubreve:cue,Ucirc:uue,ucirc:fue,Ucy:due,ucy:pue,udarr:hue,Udblac:mue,udblac:vue,udhar:gue,ufisht:yue,Ufr:Eue,ufr:bue,Ugrave:xue,ugrave:wue,uHar:_ue,uharl:Sue,uharr:Cue,uhblk:Tue,ulcorn:kue,ulcorner:Nue,ulcrop:Aue,ultri:Due,Umacr:Iue,umacr:Rue,uml:Lue,UnderBar:Oue,UnderBrace:Pue,UnderBracket:$ue,UnderParenthesis:Fue,Union:Mue,UnionPlus:Vue,Uogon:jue,uogon:que,Uopf:Uue,uopf:Bue,UpArrowBar:zue,uparrow:Hue,UpArrow:Gue,Uparrow:Wue,UpArrowDownArrow:Que,updownarrow:Yue,UpDownArrow:Zue,Updownarrow:Xue,UpEquilibrium:Jue,upharpoonleft:Kue,upharpoonright:efe,uplus:tfe,UpperLeftArrow:nfe,UpperRightArrow:rfe,upsi:ofe,Upsi:ife,upsih:sfe,Upsilon:afe,upsilon:lfe,UpTeeArrow:cfe,UpTee:ufe,upuparrows:ffe,urcorn:dfe,urcorner:pfe,urcrop:hfe,Uring:mfe,uring:vfe,urtri:gfe,Uscr:yfe,uscr:Efe,utdot:bfe,Utilde:xfe,utilde:wfe,utri:_fe,utrif:Sfe,uuarr:Cfe,Uuml:Tfe,uuml:kfe,uwangle:Nfe,vangrt:Afe,varepsilon:Dfe,varkappa:Ife,varnothing:Rfe,varphi:Lfe,varpi:Ofe,varpropto:Pfe,varr:$fe,vArr:Ffe,varrho:Mfe,varsigma:Vfe,varsubsetneq:jfe,varsubsetneqq:qfe,varsupsetneq:Ufe,varsupsetneqq:Bfe,vartheta:zfe,vartriangleleft:Hfe,vartriangleright:Gfe,vBar:Wfe,Vbar:Qfe,vBarv:Yfe,Vcy:Zfe,vcy:Xfe,vdash:Jfe,vDash:Kfe,Vdash:ede,VDash:tde,Vdashl:nde,veebar:rde,vee:ode,Vee:ide,veeeq:sde,vellip:ade,verbar:lde,Verbar:cde,vert:ude,Vert:fde,VerticalBar:dde,VerticalLine:pde,VerticalSeparator:hde,VerticalTilde:mde,VeryThinSpace:vde,Vfr:gde,vfr:yde,vltri:Ede,vnsub:bde,vnsup:xde,Vopf:wde,vopf:_de,vprop:Sde,vrtri:Cde,Vscr:Tde,vscr:kde,vsubnE:Nde,vsubne:Ade,vsupnE:Dde,vsupne:Ide,Vvdash:Rde,vzigzag:Lde,Wcirc:Ode,wcirc:Pde,wedbar:$de,wedge:Fde,Wedge:Mde,wedgeq:Vde,weierp:jde,Wfr:qde,wfr:Ude,Wopf:Bde,wopf:zde,wp:Hde,wr:Gde,wreath:Wde,Wscr:Qde,wscr:Yde,xcap:Zde,xcirc:Xde,xcup:Jde,xdtri:Kde,Xfr:epe,xfr:tpe,xharr:npe,xhArr:rpe,Xi:ope,xi:ipe,xlarr:spe,xlArr:ape,xmap:lpe,xnis:cpe,xodot:upe,Xopf:fpe,xopf:dpe,xoplus:ppe,xotime:hpe,xrarr:mpe,xrArr:vpe,Xscr:gpe,xscr:ype,xsqcup:Epe,xuplus:bpe,xutri:xpe,xvee:wpe,xwedge:_pe,Yacute:Spe,yacute:Cpe,YAcy:Tpe,yacy:kpe,Ycirc:Npe,ycirc:Ape,Ycy:Dpe,ycy:Ipe,yen:Rpe,Yfr:Lpe,yfr:Ope,YIcy:Ppe,yicy:$pe,Yopf:Fpe,yopf:Mpe,Yscr:Vpe,yscr:jpe,YUcy:qpe,yucy:Upe,yuml:Bpe,Yuml:zpe,Zacute:Hpe,zacute:Gpe,Zcaron:Wpe,zcaron:Qpe,Zcy:Ype,zcy:Zpe,Zdot:Xpe,zdot:Jpe,zeetrf:Kpe,ZeroWidthSpace:ehe,Zeta:the,zeta:nhe,zfr:rhe,Zfr:ohe,ZHcy:ihe,zhcy:she,zigrarr:ahe,zopf:lhe,Zopf:che,Zscr:uhe,zscr:fhe,zwj:dhe,zwnj:phe};var IS=hhe,vv=/[!-#%-\\*,-\\/:;\\?@\\[-\\]_\\{\\}\\xA1\\xA7\\xAB\\xB6\\xB7\\xBB\\xBF\\u037E\\u0387\\u055A-\\u055F\\u0589\\u058A\\u05BE\\u05C0\\u05C3\\u05C6\\u05F3\\u05F4\\u0609\\u060A\\u060C\\u060D\\u061B\\u061E\\u061F\\u066A-\\u066D\\u06D4\\u0700-\\u070D\\u07F7-\\u07F9\\u0830-\\u083E\\u085E\\u0964\\u0965\\u0970\\u09FD\\u0A76\\u0AF0\\u0C84\\u0DF4\\u0E4F\\u0E5A\\u0E5B\\u0F04-\\u0F12\\u0F14\\u0F3A-\\u0F3D\\u0F85\\u0FD0-\\u0FD4\\u0FD9\\u0FDA\\u104A-\\u104F\\u10FB\\u1360-\\u1368\\u1400\\u166D\\u166E\\u169B\\u169C\\u16EB-\\u16ED\\u1735\\u1736\\u17D4-\\u17D6\\u17D8-\\u17DA\\u1800-\\u180A\\u1944\\u1945\\u1A1E\\u1A1F\\u1AA0-\\u1AA6\\u1AA8-\\u1AAD\\u1B5A-\\u1B60\\u1BFC-\\u1BFF\\u1C3B-\\u1C3F\\u1C7E\\u1C7F\\u1CC0-\\u1CC7\\u1CD3\\u2010-\\u2027\\u2030-\\u2043\\u2045-\\u2051\\u2053-\\u205E\\u207D\\u207E\\u208D\\u208E\\u2308-\\u230B\\u2329\\u232A\\u2768-\\u2775\\u27C5\\u27C6\\u27E6-\\u27EF\\u2983-\\u2998\\u29D8-\\u29DB\\u29FC\\u29FD\\u2CF9-\\u2CFC\\u2CFE\\u2CFF\\u2D70\\u2E00-\\u2E2E\\u2E30-\\u2E4E\\u3001-\\u3003\\u3008-\\u3011\\u3014-\\u301F\\u3030\\u303D\\u30A0\\u30FB\\uA4FE\\uA4FF\\uA60D-\\uA60F\\uA673\\uA67E\\uA6F2-\\uA6F7\\uA874-\\uA877\\uA8CE\\uA8CF\\uA8F8-\\uA8FA\\uA8FC\\uA92E\\uA92F\\uA95F\\uA9C1-\\uA9CD\\uA9DE\\uA9DF\\uAA5C-\\uAA5F\\uAADE\\uAADF\\uAAF0\\uAAF1\\uABEB\\uFD3E\\uFD3F\\uFE10-\\uFE19\\uFE30-\\uFE52\\uFE54-\\uFE61\\uFE63\\uFE68\\uFE6A\\uFE6B\\uFF01-\\uFF03\\uFF05-\\uFF0A\\uFF0C-\\uFF0F\\uFF1A\\uFF1B\\uFF1F\\uFF20\\uFF3B-\\uFF3D\\uFF3F\\uFF5B\\uFF5D\\uFF5F-\\uFF65]|\\uD800[\\uDD00-\\uDD02\\uDF9F\\uDFD0]|\\uD801\\uDD6F|\\uD802[\\uDC57\\uDD1F\\uDD3F\\uDE50-\\uDE58\\uDE7F\\uDEF0-\\uDEF6\\uDF39-\\uDF3F\\uDF99-\\uDF9C]|\\uD803[\\uDF55-\\uDF59]|\\uD804[\\uDC47-\\uDC4D\\uDCBB\\uDCBC\\uDCBE-\\uDCC1\\uDD40-\\uDD43\\uDD74\\uDD75\\uDDC5-\\uDDC8\\uDDCD\\uDDDB\\uDDDD-\\uDDDF\\uDE38-\\uDE3D\\uDEA9]|\\uD805[\\uDC4B-\\uDC4F\\uDC5B\\uDC5D\\uDCC6\\uDDC1-\\uDDD7\\uDE41-\\uDE43\\uDE60-\\uDE6C\\uDF3C-\\uDF3E]|\\uD806[\\uDC3B\\uDE3F-\\uDE46\\uDE9A-\\uDE9C\\uDE9E-\\uDEA2]|\\uD807[\\uDC41-\\uDC45\\uDC70\\uDC71\\uDEF7\\uDEF8]|\\uD809[\\uDC70-\\uDC74]|\\uD81A[\\uDE6E\\uDE6F\\uDEF5\\uDF37-\\uDF3B\\uDF44]|\\uD81B[\\uDE97-\\uDE9A]|\\uD82F\\uDC9F|\\uD836[\\uDE87-\\uDE8B]|\\uD83A[\\uDD5E\\uDD5F]/,ns={},_1={};function mhe(e){var t,n,r=_1[e];if(r)return r;for(r=_1[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),/^[0-9a-z]$/i.test(n)?r.push(n):r.push(\"%\"+(\"0\"+t.toString(16).toUpperCase()).slice(-2));for(t=0;t<e.length;t++)r[e.charCodeAt(t)]=e[t];return r}function ef(e,t,n){var r,o,i,s,a,l=\"\";for(typeof t!=\"string\"&&(n=t,t=ef.defaultChars),typeof n>\"u\"&&(n=!0),a=mhe(t),r=0,o=e.length;r<o;r++){if(i=e.charCodeAt(r),n&&i===37&&r+2<o&&/^[0-9a-f]{2}$/i.test(e.slice(r+1,r+3))){l+=e.slice(r,r+3),r+=2;continue}if(i<128){l+=a[i];continue}if(i>=55296&&i<=57343){if(i>=55296&&i<=56319&&r+1<o&&(s=e.charCodeAt(r+1),s>=56320&&s<=57343)){l+=encodeURIComponent(e[r]+e[r+1]),r++;continue}l+=\"%EF%BF%BD\";continue}l+=encodeURIComponent(e[r])}return l}ef.defaultChars=\";/?:@&=+$,-_.!~*'()#\";ef.componentChars=\"-_.!~*'()\";var vhe=ef,S1={};function ghe(e){var t,n,r=S1[e];if(r)return r;for(r=S1[e]=[],t=0;t<128;t++)n=String.fromCharCode(t),r.push(n);for(t=0;t<e.length;t++)n=e.charCodeAt(t),r[n]=\"%\"+(\"0\"+n.toString(16).toUpperCase()).slice(-2);return r}function tf(e,t){var n;return typeof t!=\"string\"&&(t=tf.defaultChars),n=ghe(t),e.replace(/(%[a-f0-9]{2})+/gi,function(r){var o,i,s,a,l,c,u,d=\"\";for(o=0,i=r.length;o<i;o+=3){if(s=parseInt(r.slice(o+1,o+3),16),s<128){d+=n[s];continue}if((s&224)===192&&o+3<i&&(a=parseInt(r.slice(o+4,o+6),16),(a&192)===128)){u=s<<6&1984|a&63,u<128?d+=\"��\":d+=String.fromCharCode(u),o+=3;continue}if((s&240)===224&&o+6<i&&(a=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),(a&192)===128&&(l&192)===128)){u=s<<12&61440|a<<6&4032|l&63,u<2048||u>=55296&&u<=57343?d+=\"���\":d+=String.fromCharCode(u),o+=6;continue}if((s&248)===240&&o+9<i&&(a=parseInt(r.slice(o+4,o+6),16),l=parseInt(r.slice(o+7,o+9),16),c=parseInt(r.slice(o+10,o+12),16),(a&192)===128&&(l&192)===128&&(c&192)===128)){u=s<<18&1835008|a<<12&258048|l<<6&4032|c&63,u<65536||u>1114111?d+=\"����\":(u-=65536,d+=String.fromCharCode(55296+(u>>10),56320+(u&1023))),o+=9;continue}d+=\"�\"}return d})}tf.defaultChars=\";/?:@&=+$,#\";tf.componentChars=\"\";var yhe=tf,Ehe=function(t){var n=\"\";return n+=t.protocol||\"\",n+=t.slashes?\"//\":\"\",n+=t.auth?t.auth+\"@\":\"\",t.hostname&&t.hostname.indexOf(\":\")!==-1?n+=\"[\"+t.hostname+\"]\":n+=t.hostname||\"\",n+=t.port?\":\"+t.port:\"\",n+=t.pathname||\"\",n+=t.search||\"\",n+=t.hash||\"\",n};function eu(){this.protocol=null,this.slashes=null,this.auth=null,this.port=null,this.hostname=null,this.hash=null,this.search=null,this.pathname=null}var bhe=/^([a-z0-9.+-]+:)/i,xhe=/:[0-9]*$/,whe=/^(\\/\\/?(?!\\/)[^\\?\\s]*)(\\?[^\\s]*)?$/,_he=[\"<\",\">\",'\"',\"`\",\" \",\"\\r\",`\n`,\"\t\"],She=[\"{\",\"}\",\"|\",\"\\\\\",\"^\",\"`\"].concat(_he),Che=[\"'\"].concat(She),C1=[\"%\",\"/\",\"?\",\";\",\"#\"].concat(Che),T1=[\"/\",\"?\",\"#\"],The=255,k1=/^[+a-z0-9A-Z_-]{0,63}$/,khe=/^([+a-z0-9A-Z_-]{0,63})(.*)$/,N1={javascript:!0,\"javascript:\":!0},A1={http:!0,https:!0,ftp:!0,gopher:!0,file:!0,\"http:\":!0,\"https:\":!0,\"ftp:\":!0,\"gopher:\":!0,\"file:\":!0};function Nhe(e,t){if(e&&e instanceof eu)return e;var n=new eu;return n.parse(e,t),n}eu.prototype.parse=function(e,t){var n,r,o,i,s,a=e;if(a=a.trim(),!t&&e.split(\"#\").length===1){var l=whe.exec(a);if(l)return this.pathname=l[1],l[2]&&(this.search=l[2]),this}var c=bhe.exec(a);if(c&&(c=c[0],o=c.toLowerCase(),this.protocol=c,a=a.substr(c.length)),(t||c||a.match(/^\\/\\/[^@\\/]+@[^@\\/]+/))&&(s=a.substr(0,2)===\"//\",s&&!(c&&N1[c])&&(a=a.substr(2),this.slashes=!0)),!N1[c]&&(s||c&&!A1[c])){var u=-1;for(n=0;n<T1.length;n++)i=a.indexOf(T1[n]),i!==-1&&(u===-1||i<u)&&(u=i);var d,p;for(u===-1?p=a.lastIndexOf(\"@\"):p=a.lastIndexOf(\"@\",u),p!==-1&&(d=a.slice(0,p),a=a.slice(p+1),this.auth=d),u=-1,n=0;n<C1.length;n++)i=a.indexOf(C1[n]),i!==-1&&(u===-1||i<u)&&(u=i);u===-1&&(u=a.length),a[u-1]===\":\"&&u--;var f=a.slice(0,u);a=a.slice(u),this.parseHost(f),this.hostname=this.hostname||\"\";var m=this.hostname[0]===\"[\"&&this.hostname[this.hostname.length-1]===\"]\";if(!m){var v=this.hostname.split(/\\./);for(n=0,r=v.length;n<r;n++){var b=v[n];if(b&&!b.match(k1)){for(var y=\"\",g=0,E=b.length;g<E;g++)b.charCodeAt(g)>127?y+=\"x\":y+=b[g];if(!y.match(k1)){var x=v.slice(0,n),w=v.slice(n+1),C=b.match(khe);C&&(x.push(C[1]),w.unshift(C[2])),w.length&&(a=w.join(\".\")+a),this.hostname=x.join(\".\");break}}}}this.hostname.length>The&&(this.hostname=\"\"),m&&(this.hostname=this.hostname.substr(1,this.hostname.length-2))}var T=a.indexOf(\"#\");T!==-1&&(this.hash=a.substr(T),a=a.slice(0,T));var A=a.indexOf(\"?\");return A!==-1&&(this.search=a.substr(A),a=a.slice(0,A)),a&&(this.pathname=a),A1[o]&&this.hostname&&!this.pathname&&(this.pathname=\"\"),this};eu.prototype.parseHost=function(e){var t=xhe.exec(e);t&&(t=t[0],t!==\":\"&&(this.port=t.substr(1)),e=e.substr(0,e.length-t.length)),e&&(this.hostname=e)};var Ahe=Nhe;ns.encode=vhe;ns.decode=yhe;ns.format=Ehe;ns.parse=Ahe;var io={},md,D1;function RS(){return D1||(D1=1,md=/[\\0-\\uD7FF\\uE000-\\uFFFF]|[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/),md}var vd,I1;function LS(){return I1||(I1=1,vd=/[\\0-\\x1F\\x7F-\\x9F]/),vd}var gd,R1;function Dhe(){return R1||(R1=1,gd=/[\\xAD\\u0600-\\u0605\\u061C\\u06DD\\u070F\\u08E2\\u180E\\u200B-\\u200F\\u202A-\\u202E\\u2060-\\u2064\\u2066-\\u206F\\uFEFF\\uFFF9-\\uFFFB]|\\uD804[\\uDCBD\\uDCCD]|\\uD82F[\\uDCA0-\\uDCA3]|\\uD834[\\uDD73-\\uDD7A]|\\uDB40[\\uDC01\\uDC20-\\uDC7F]/),gd}var yd,L1;function OS(){return L1||(L1=1,yd=/[ \\xA0\\u1680\\u2000-\\u200A\\u2028\\u2029\\u202F\\u205F\\u3000]/),yd}var O1;function Ihe(){return O1||(O1=1,io.Any=RS(),io.Cc=LS(),io.Cf=Dhe(),io.P=vv,io.Z=OS()),io}(function(e){function t(N){return Object.prototype.toString.call(N)}function n(N){return t(N)===\"[object String]\"}var r=Object.prototype.hasOwnProperty;function o(N,M){return r.call(N,M)}function i(N){var M=Array.prototype.slice.call(arguments,1);return M.forEach(function(R){if(R){if(typeof R!=\"object\")throw new TypeError(R+\"must be object\");Object.keys(R).forEach(function(I){N[I]=R[I]})}}),N}function s(N,M,R){return[].concat(N.slice(0,M),R,N.slice(M+1))}function a(N){return!(N>=55296&&N<=57343||N>=64976&&N<=65007||(N&65535)===65535||(N&65535)===65534||N>=0&&N<=8||N===11||N>=14&&N<=31||N>=127&&N<=159||N>1114111)}function l(N){if(N>65535){N-=65536;var M=55296+(N>>10),R=56320+(N&1023);return String.fromCharCode(M,R)}return String.fromCharCode(N)}var c=/\\\\([!\"#$%&'()*+,\\-.\\/:;<=>?@[\\\\\\]^_`{|}~])/g,u=/&([a-z#][a-z0-9]{1,31});/gi,d=new RegExp(c.source+\"|\"+u.source,\"gi\"),p=/^#((?:x[a-f0-9]{1,8}|[0-9]{1,8}))/i,f=IS;function m(N,M){var R=0;return o(f,M)?f[M]:M.charCodeAt(0)===35&&p.test(M)&&(R=M[1].toLowerCase()===\"x\"?parseInt(M.slice(2),16):parseInt(M.slice(1),10),a(R))?l(R):N}function v(N){return N.indexOf(\"\\\\\")<0?N:N.replace(c,\"$1\")}function b(N){return N.indexOf(\"\\\\\")<0&&N.indexOf(\"&\")<0?N:N.replace(d,function(M,R,I){return R||m(M,I)})}var y=/[&<>\"]/,g=/[&<>\"]/g,E={\"&\":\"&amp;\",\"<\":\"&lt;\",\">\":\"&gt;\",'\"':\"&quot;\"};function x(N){return E[N]}function w(N){return y.test(N)?N.replace(g,x):N}var C=/[.?*+^$[\\]\\\\(){}|-]/g;function T(N){return N.replace(C,\"\\\\$&\")}function A(N){switch(N){case 9:case 32:return!0}return!1}function S(N){if(N>=8192&&N<=8202)return!0;switch(N){case 9:case 10:case 11:case 12:case 13:case 32:case 160:case 5760:case 8239:case 8287:case 12288:return!0}return!1}var k=vv;function q(N){return k.test(N)}function H(N){switch(N){case 33:case 34:case 35:case 36:case 37:case 38:case 39:case 40:case 41:case 42:case 43:case 44:case 45:case 46:case 47:case 58:case 59:case 60:case 61:case 62:case 63:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 124:case 125:case 126:return!0;default:return!1}}function V(N){return N=N.trim().replace(/\\s+/g,\" \"),\"ẞ\".toLowerCase()===\"Ṿ\"&&(N=N.replace(/ẞ/g,\"ß\")),N.toLowerCase().toUpperCase()}e.lib={},e.lib.mdurl=ns,e.lib.ucmicro=Ihe(),e.assign=i,e.isString=n,e.has=o,e.unescapeMd=v,e.unescapeAll=b,e.isValidEntityCode=a,e.fromCodePoint=l,e.escapeHtml=w,e.arrayReplaceAt=s,e.isSpace=A,e.isWhiteSpace=S,e.isMdAsciiPunct=H,e.isPunctChar=q,e.escapeRE=T,e.normalizeReference=V})(ye);var nf={},Rhe=function(t,n,r){var o,i,s,a,l=-1,c=t.posMax,u=t.pos;for(t.pos=n+1,o=1;t.pos<c;){if(s=t.src.charCodeAt(t.pos),s===93&&(o--,o===0)){i=!0;break}if(a=t.pos,t.md.inline.skipToken(t),s===91){if(a===t.pos-1)o++;else if(r)return t.pos=u,-1}}return i&&(l=t.pos),t.pos=u,l},P1=ye.unescapeAll,Lhe=function(t,n,r){var o,i,s=0,a=n,l={ok:!1,pos:0,lines:0,str:\"\"};if(t.charCodeAt(n)===60){for(n++;n<r;){if(o=t.charCodeAt(n),o===10||o===60)return l;if(o===62)return l.pos=n+1,l.str=P1(t.slice(a+1,n)),l.ok=!0,l;if(o===92&&n+1<r){n+=2;continue}n++}return l}for(i=0;n<r&&(o=t.charCodeAt(n),!(o===32||o<32||o===127));){if(o===92&&n+1<r){if(t.charCodeAt(n+1)===32)break;n+=2;continue}if(o===40&&(i++,i>32))return l;if(o===41){if(i===0)break;i--}n++}return a===n||i!==0||(l.str=P1(t.slice(a,n)),l.lines=s,l.pos=n,l.ok=!0),l},Ohe=ye.unescapeAll,Phe=function(t,n,r){var o,i,s=0,a=n,l={ok:!1,pos:0,lines:0,str:\"\"};if(n>=r||(i=t.charCodeAt(n),i!==34&&i!==39&&i!==40))return l;for(n++,i===40&&(i=41);n<r;){if(o=t.charCodeAt(n),o===i)return l.pos=n+1,l.lines=s,l.str=Ohe(t.slice(a+1,n)),l.ok=!0,l;if(o===40&&i===41)return l;o===10?s++:o===92&&n+1<r&&(n++,t.charCodeAt(n)===10&&s++),n++}return l};nf.parseLinkLabel=Rhe;nf.parseLinkDestination=Lhe;nf.parseLinkTitle=Phe;var $he=ye.assign,Fhe=ye.unescapeAll,Po=ye.escapeHtml,Hn={};Hn.code_inline=function(e,t,n,r,o){var i=e[t];return\"<code\"+o.renderAttrs(i)+\">\"+Po(e[t].content)+\"</code>\"};Hn.code_block=function(e,t,n,r,o){var i=e[t];return\"<pre\"+o.renderAttrs(i)+\"><code>\"+Po(e[t].content)+`</code></pre>\n`};Hn.fence=function(e,t,n,r,o){var i=e[t],s=i.info?Fhe(i.info).trim():\"\",a=\"\",l=\"\",c,u,d,p,f;return s&&(d=s.split(/(\\s+)/g),a=d[0],l=d.slice(2).join(\"\")),n.highlight?c=n.highlight(i.content,a,l)||Po(i.content):c=Po(i.content),c.indexOf(\"<pre\")===0?c+`\n`:s?(u=i.attrIndex(\"class\"),p=i.attrs?i.attrs.slice():[],u<0?p.push([\"class\",n.langPrefix+a]):(p[u]=p[u].slice(),p[u][1]+=\" \"+n.langPrefix+a),f={attrs:p},\"<pre><code\"+o.renderAttrs(f)+\">\"+c+`</code></pre>\n`):\"<pre><code\"+o.renderAttrs(i)+\">\"+c+`</code></pre>\n`};Hn.image=function(e,t,n,r,o){var i=e[t];return i.attrs[i.attrIndex(\"alt\")][1]=o.renderInlineAsText(i.children,n,r),o.renderToken(e,t,n)};Hn.hardbreak=function(e,t,n){return n.xhtmlOut?`<br />\n`:`<br>\n`};Hn.softbreak=function(e,t,n){return n.breaks?n.xhtmlOut?`<br />\n`:`<br>\n`:`\n`};Hn.text=function(e,t){return Po(e[t].content)};Hn.html_block=function(e,t){return e[t].content};Hn.html_inline=function(e,t){return e[t].content};function rs(){this.rules=$he({},Hn)}rs.prototype.renderAttrs=function(t){var n,r,o;if(!t.attrs)return\"\";for(o=\"\",n=0,r=t.attrs.length;n<r;n++)o+=\" \"+Po(t.attrs[n][0])+'=\"'+Po(t.attrs[n][1])+'\"';return o};rs.prototype.renderToken=function(t,n,r){var o,i=\"\",s=!1,a=t[n];return a.hidden?\"\":(a.block&&a.nesting!==-1&&n&&t[n-1].hidden&&(i+=`\n`),i+=(a.nesting===-1?\"</\":\"<\")+a.tag,i+=this.renderAttrs(a),a.nesting===0&&r.xhtmlOut&&(i+=\" /\"),a.block&&(s=!0,a.nesting===1&&n+1<t.length&&(o=t[n+1],(o.type===\"inline\"||o.hidden||o.nesting===-1&&o.tag===a.tag)&&(s=!1))),i+=s?`>\n`:\">\",i)};rs.prototype.renderInline=function(e,t,n){for(var r,o=\"\",i=this.rules,s=0,a=e.length;s<a;s++)r=e[s].type,typeof i[r]<\"u\"?o+=i[r](e,s,t,n,this):o+=this.renderToken(e,s,t);return o};rs.prototype.renderInlineAsText=function(e,t,n){for(var r=\"\",o=0,i=e.length;o<i;o++)e[o].type===\"text\"?r+=e[o].content:e[o].type===\"image\"?r+=this.renderInlineAsText(e[o].children,t,n):e[o].type===\"softbreak\"&&(r+=`\n`);return r};rs.prototype.render=function(e,t,n){var r,o,i,s=\"\",a=this.rules;for(r=0,o=e.length;r<o;r++)i=e[r].type,i===\"inline\"?s+=this.renderInline(e[r].children,t,n):typeof a[i]<\"u\"?s+=a[e[r].type](e,r,t,n,this):s+=this.renderToken(e,r,t,n);return s};var Mhe=rs;function Dn(){this.__rules__=[],this.__cache__=null}Dn.prototype.__find__=function(e){for(var t=0;t<this.__rules__.length;t++)if(this.__rules__[t].name===e)return t;return-1};Dn.prototype.__compile__=function(){var e=this,t=[\"\"];e.__rules__.forEach(function(n){n.enabled&&n.alt.forEach(function(r){t.indexOf(r)<0&&t.push(r)})}),e.__cache__={},t.forEach(function(n){e.__cache__[n]=[],e.__rules__.forEach(function(r){r.enabled&&(n&&r.alt.indexOf(n)<0||e.__cache__[n].push(r.fn))})})};Dn.prototype.at=function(e,t,n){var r=this.__find__(e),o=n||{};if(r===-1)throw new Error(\"Parser rule not found: \"+e);this.__rules__[r].fn=t,this.__rules__[r].alt=o.alt||[],this.__cache__=null};Dn.prototype.before=function(e,t,n,r){var o=this.__find__(e),i=r||{};if(o===-1)throw new Error(\"Parser rule not found: \"+e);this.__rules__.splice(o,0,{name:t,enabled:!0,fn:n,alt:i.alt||[]}),this.__cache__=null};Dn.prototype.after=function(e,t,n,r){var o=this.__find__(e),i=r||{};if(o===-1)throw new Error(\"Parser rule not found: \"+e);this.__rules__.splice(o+1,0,{name:t,enabled:!0,fn:n,alt:i.alt||[]}),this.__cache__=null};Dn.prototype.push=function(e,t,n){var r=n||{};this.__rules__.push({name:e,enabled:!0,fn:t,alt:r.alt||[]}),this.__cache__=null};Dn.prototype.enable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach(function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error(\"Rules manager: invalid rule name \"+r)}this.__rules__[o].enabled=!0,n.push(r)},this),this.__cache__=null,n};Dn.prototype.enableOnly=function(e,t){Array.isArray(e)||(e=[e]),this.__rules__.forEach(function(n){n.enabled=!1}),this.enable(e,t)};Dn.prototype.disable=function(e,t){Array.isArray(e)||(e=[e]);var n=[];return e.forEach(function(r){var o=this.__find__(r);if(o<0){if(t)return;throw new Error(\"Rules manager: invalid rule name \"+r)}this.__rules__[o].enabled=!1,n.push(r)},this),this.__cache__=null,n};Dn.prototype.getRules=function(e){return this.__cache__===null&&this.__compile__(),this.__cache__[e]||[]};var gv=Dn,Vhe=/\\r\\n?|\\n/g,jhe=/\\0/g,qhe=function(t){var n;n=t.src.replace(Vhe,`\n`),n=n.replace(jhe,\"�\"),t.src=n},Uhe=function(t){var n;t.inlineMode?(n=new t.Token(\"inline\",\"\",0),n.content=t.src,n.map=[0,1],n.children=[],t.tokens.push(n)):t.md.block.parse(t.src,t.md,t.env,t.tokens)},Bhe=function(t){var n=t.tokens,r,o,i;for(o=0,i=n.length;o<i;o++)r=n[o],r.type===\"inline\"&&t.md.inline.parse(r.content,t.md,t.env,r.children)},zhe=ye.arrayReplaceAt;function Hhe(e){return/^<a[>\\s]/i.test(e)}function Ghe(e){return/^<\\/a\\s*>/i.test(e)}var Whe=function(t){var n,r,o,i,s,a,l,c,u,d,p,f,m,v,b,y,g=t.tokens,E;if(t.md.options.linkify){for(r=0,o=g.length;r<o;r++)if(!(g[r].type!==\"inline\"||!t.md.linkify.pretest(g[r].content)))for(i=g[r].children,m=0,n=i.length-1;n>=0;n--){if(a=i[n],a.type===\"link_close\"){for(n--;i[n].level!==a.level&&i[n].type!==\"link_open\";)n--;continue}if(a.type===\"html_inline\"&&(Hhe(a.content)&&m>0&&m--,Ghe(a.content)&&m++),!(m>0)&&a.type===\"text\"&&t.md.linkify.test(a.content)){for(u=a.content,E=t.md.linkify.match(u),l=[],f=a.level,p=0,c=0;c<E.length;c++)v=E[c].url,b=t.md.normalizeLink(v),t.md.validateLink(b)&&(y=E[c].text,E[c].schema?E[c].schema===\"mailto:\"&&!/^mailto:/i.test(y)?y=t.md.normalizeLinkText(\"mailto:\"+y).replace(/^mailto:/,\"\"):y=t.md.normalizeLinkText(y):y=t.md.normalizeLinkText(\"http://\"+y).replace(/^http:\\/\\//,\"\"),d=E[c].index,d>p&&(s=new t.Token(\"text\",\"\",0),s.content=u.slice(p,d),s.level=f,l.push(s)),s=new t.Token(\"link_open\",\"a\",1),s.attrs=[[\"href\",b]],s.level=f++,s.markup=\"linkify\",s.info=\"auto\",l.push(s),s=new t.Token(\"text\",\"\",0),s.content=y,s.level=f,l.push(s),s=new t.Token(\"link_close\",\"a\",-1),s.level=--f,s.markup=\"linkify\",s.info=\"auto\",l.push(s),p=E[c].lastIndex);p<u.length&&(s=new t.Token(\"text\",\"\",0),s.content=u.slice(p),s.level=f,l.push(s)),g[r].children=i=zhe(i,n,l)}}}},PS=/\\+-|\\.\\.|\\?\\?\\?\\?|!!!!|,,|--/,Qhe=/\\((c|tm|r|p)\\)/i,Yhe=/\\((c|tm|r|p)\\)/ig,Zhe={c:\"©\",r:\"®\",p:\"§\",tm:\"™\"};function Xhe(e,t){return Zhe[t.toLowerCase()]}function Jhe(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)n=e[t],n.type===\"text\"&&!r&&(n.content=n.content.replace(Yhe,Xhe)),n.type===\"link_open\"&&n.info===\"auto\"&&r--,n.type===\"link_close\"&&n.info===\"auto\"&&r++}function Khe(e){var t,n,r=0;for(t=e.length-1;t>=0;t--)n=e[t],n.type===\"text\"&&!r&&PS.test(n.content)&&(n.content=n.content.replace(/\\+-/g,\"±\").replace(/\\.{2,}/g,\"…\").replace(/([?!])…/g,\"$1..\").replace(/([?!]){4,}/g,\"$1$1$1\").replace(/,{2,}/g,\",\").replace(/(^|[^-])---(?=[^-]|$)/mg,\"$1—\").replace(/(^|\\s)--(?=\\s|$)/mg,\"$1–\").replace(/(^|[^-\\s])--(?=[^-\\s]|$)/mg,\"$1–\")),n.type===\"link_open\"&&n.info===\"auto\"&&r--,n.type===\"link_close\"&&n.info===\"auto\"&&r++}var eme=function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)t.tokens[n].type===\"inline\"&&(Qhe.test(t.tokens[n].content)&&Jhe(t.tokens[n].children),PS.test(t.tokens[n].content)&&Khe(t.tokens[n].children))},$1=ye.isWhiteSpace,F1=ye.isPunctChar,M1=ye.isMdAsciiPunct,tme=/['\"]/,V1=/['\"]/g,j1=\"’\";function Ll(e,t,n){return e.substr(0,t)+n+e.substr(t+1)}function nme(e,t){var n,r,o,i,s,a,l,c,u,d,p,f,m,v,b,y,g,E,x,w,C;for(x=[],n=0;n<e.length;n++){for(r=e[n],l=e[n].level,g=x.length-1;g>=0&&!(x[g].level<=l);g--);if(x.length=g+1,r.type===\"text\"){o=r.content,s=0,a=o.length;e:for(;s<a&&(V1.lastIndex=s,i=V1.exec(o),!!i);){if(b=y=!0,s=i.index+1,E=i[0]===\"'\",u=32,i.index-1>=0)u=o.charCodeAt(i.index-1);else for(g=n-1;g>=0&&!(e[g].type===\"softbreak\"||e[g].type===\"hardbreak\");g--)if(e[g].content){u=e[g].content.charCodeAt(e[g].content.length-1);break}if(d=32,s<a)d=o.charCodeAt(s);else for(g=n+1;g<e.length&&!(e[g].type===\"softbreak\"||e[g].type===\"hardbreak\");g++)if(e[g].content){d=e[g].content.charCodeAt(0);break}if(p=M1(u)||F1(String.fromCharCode(u)),f=M1(d)||F1(String.fromCharCode(d)),m=$1(u),v=$1(d),v?b=!1:f&&(m||p||(b=!1)),m?y=!1:p&&(v||f||(y=!1)),d===34&&i[0]==='\"'&&u>=48&&u<=57&&(y=b=!1),b&&y&&(b=p,y=f),!b&&!y){E&&(r.content=Ll(r.content,i.index,j1));continue}if(y){for(g=x.length-1;g>=0&&(c=x[g],!(x[g].level<l));g--)if(c.single===E&&x[g].level===l){c=x[g],E?(w=t.md.options.quotes[2],C=t.md.options.quotes[3]):(w=t.md.options.quotes[0],C=t.md.options.quotes[1]),r.content=Ll(r.content,i.index,C),e[c.token].content=Ll(e[c.token].content,c.pos,w),s+=C.length-1,c.token===n&&(s+=w.length-1),o=r.content,a=o.length,x.length=g;continue e}}b?x.push({token:n,pos:i.index,single:E,level:l}):y&&E&&(r.content=Ll(r.content,i.index,j1))}}}}var rme=function(t){var n;if(t.md.options.typographer)for(n=t.tokens.length-1;n>=0;n--)t.tokens[n].type!==\"inline\"||!tme.test(t.tokens[n].content)||nme(t.tokens[n].children,t)};function os(e,t,n){this.type=e,this.tag=t,this.attrs=null,this.map=null,this.nesting=n,this.level=0,this.children=null,this.content=\"\",this.markup=\"\",this.info=\"\",this.meta=null,this.block=!1,this.hidden=!1}os.prototype.attrIndex=function(t){var n,r,o;if(!this.attrs)return-1;for(n=this.attrs,r=0,o=n.length;r<o;r++)if(n[r][0]===t)return r;return-1};os.prototype.attrPush=function(t){this.attrs?this.attrs.push(t):this.attrs=[t]};os.prototype.attrSet=function(t,n){var r=this.attrIndex(t),o=[t,n];r<0?this.attrPush(o):this.attrs[r]=o};os.prototype.attrGet=function(t){var n=this.attrIndex(t),r=null;return n>=0&&(r=this.attrs[n][1]),r};os.prototype.attrJoin=function(t,n){var r=this.attrIndex(t);r<0?this.attrPush([t,n]):this.attrs[r][1]=this.attrs[r][1]+\" \"+n};var yv=os,ome=yv;function $S(e,t,n){this.src=e,this.env=n,this.tokens=[],this.inlineMode=!1,this.md=t}$S.prototype.Token=ome;var ime=$S,sme=gv,Ed=[[\"normalize\",qhe],[\"block\",Uhe],[\"inline\",Bhe],[\"linkify\",Whe],[\"replacements\",eme],[\"smartquotes\",rme]];function Ev(){this.ruler=new sme;for(var e=0;e<Ed.length;e++)this.ruler.push(Ed[e][0],Ed[e][1])}Ev.prototype.process=function(e){var t,n,r;for(r=this.ruler.getRules(\"\"),t=0,n=r.length;t<n;t++)r[t](e)};Ev.prototype.State=ime;var ame=Ev,bd=ye.isSpace;function xd(e,t){var n=e.bMarks[t]+e.tShift[t],r=e.eMarks[t];return e.src.substr(n,r-n)}function q1(e){var t=[],n=0,r=e.length,o,i=!1,s=0,a=\"\";for(o=e.charCodeAt(n);n<r;)o===124&&(i?(a+=e.substring(s,n-1),s=n):(t.push(a+e.substring(s,n)),a=\"\",s=n+1)),i=o===92,n++,o=e.charCodeAt(n);return t.push(a+e.substring(s)),t}var lme=function(t,n,r,o){var i,s,a,l,c,u,d,p,f,m,v,b,y,g,E,x,w,C;if(n+2>r||(u=n+1,t.sCount[u]<t.blkIndent)||t.sCount[u]-t.blkIndent>=4||(a=t.bMarks[u]+t.tShift[u],a>=t.eMarks[u])||(w=t.src.charCodeAt(a++),w!==124&&w!==45&&w!==58)||a>=t.eMarks[u]||(C=t.src.charCodeAt(a++),C!==124&&C!==45&&C!==58&&!bd(C))||w===45&&bd(C))return!1;for(;a<t.eMarks[u];){if(i=t.src.charCodeAt(a),i!==124&&i!==45&&i!==58&&!bd(i))return!1;a++}for(s=xd(t,n+1),d=s.split(\"|\"),m=[],l=0;l<d.length;l++){if(v=d[l].trim(),!v){if(l===0||l===d.length-1)continue;return!1}if(!/^:?-+:?$/.test(v))return!1;v.charCodeAt(v.length-1)===58?m.push(v.charCodeAt(0)===58?\"center\":\"right\"):v.charCodeAt(0)===58?m.push(\"left\"):m.push(\"\")}if(s=xd(t,n).trim(),s.indexOf(\"|\")===-1||t.sCount[n]-t.blkIndent>=4||(d=q1(s),d.length&&d[0]===\"\"&&d.shift(),d.length&&d[d.length-1]===\"\"&&d.pop(),p=d.length,p===0||p!==m.length))return!1;if(o)return!0;for(g=t.parentType,t.parentType=\"table\",x=t.md.block.ruler.getRules(\"blockquote\"),f=t.push(\"table_open\",\"table\",1),f.map=b=[n,0],f=t.push(\"thead_open\",\"thead\",1),f.map=[n,n+1],f=t.push(\"tr_open\",\"tr\",1),f.map=[n,n+1],l=0;l<d.length;l++)f=t.push(\"th_open\",\"th\",1),m[l]&&(f.attrs=[[\"style\",\"text-align:\"+m[l]]]),f=t.push(\"inline\",\"\",0),f.content=d[l].trim(),f.children=[],f=t.push(\"th_close\",\"th\",-1);for(f=t.push(\"tr_close\",\"tr\",-1),f=t.push(\"thead_close\",\"thead\",-1),u=n+2;u<r&&!(t.sCount[u]<t.blkIndent);u++){for(E=!1,l=0,c=x.length;l<c;l++)if(x[l](t,u,r,!0)){E=!0;break}if(E||(s=xd(t,u).trim(),!s)||t.sCount[u]-t.blkIndent>=4)break;for(d=q1(s),d.length&&d[0]===\"\"&&d.shift(),d.length&&d[d.length-1]===\"\"&&d.pop(),u===n+2&&(f=t.push(\"tbody_open\",\"tbody\",1),f.map=y=[n+2,0]),f=t.push(\"tr_open\",\"tr\",1),f.map=[u,u+1],l=0;l<p;l++)f=t.push(\"td_open\",\"td\",1),m[l]&&(f.attrs=[[\"style\",\"text-align:\"+m[l]]]),f=t.push(\"inline\",\"\",0),f.content=d[l]?d[l].trim():\"\",f.children=[],f=t.push(\"td_close\",\"td\",-1);f=t.push(\"tr_close\",\"tr\",-1)}return y&&(f=t.push(\"tbody_close\",\"tbody\",-1),y[1]=u),f=t.push(\"table_close\",\"table\",-1),b[1]=u,t.parentType=g,t.line=u,!0},cme=function(t,n,r){var o,i,s;if(t.sCount[n]-t.blkIndent<4)return!1;for(i=o=n+1;o<r;){if(t.isEmpty(o)){o++;continue}if(t.sCount[o]-t.blkIndent>=4){o++,i=o;continue}break}return t.line=i,s=t.push(\"code_block\",\"code\",0),s.content=t.getLines(n,i,4+t.blkIndent,!1)+`\n`,s.map=[n,t.line],!0},ume=function(t,n,r,o){var i,s,a,l,c,u,d,p=!1,f=t.bMarks[n]+t.tShift[n],m=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||f+3>m||(i=t.src.charCodeAt(f),i!==126&&i!==96)||(c=f,f=t.skipChars(f,i),s=f-c,s<3)||(d=t.src.slice(c,f),a=t.src.slice(f,m),i===96&&a.indexOf(String.fromCharCode(i))>=0))return!1;if(o)return!0;for(l=n;l++,!(l>=r||(f=c=t.bMarks[l]+t.tShift[l],m=t.eMarks[l],f<m&&t.sCount[l]<t.blkIndent));)if(t.src.charCodeAt(f)===i&&!(t.sCount[l]-t.blkIndent>=4)&&(f=t.skipChars(f,i),!(f-c<s)&&(f=t.skipSpaces(f),!(f<m)))){p=!0;break}return s=t.sCount[n],t.line=l+(p?1:0),u=t.push(\"fence\",\"code\",0),u.info=a,u.content=t.getLines(n+1,l,s,!0),u.markup=d,u.map=[n,t.line],!0},U1=ye.isSpace,fme=function(t,n,r,o){var i,s,a,l,c,u,d,p,f,m,v,b,y,g,E,x,w,C,T,A,S=t.lineMax,k=t.bMarks[n]+t.tShift[n],q=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||t.src.charCodeAt(k++)!==62)return!1;if(o)return!0;for(l=f=t.sCount[n]+1,t.src.charCodeAt(k)===32?(k++,l++,f++,i=!1,x=!0):t.src.charCodeAt(k)===9?(x=!0,(t.bsCount[n]+f)%4===3?(k++,l++,f++,i=!1):i=!0):x=!1,m=[t.bMarks[n]],t.bMarks[n]=k;k<q&&(s=t.src.charCodeAt(k),U1(s));){s===9?f+=4-(f+t.bsCount[n]+(i?1:0))%4:f++;k++}for(v=[t.bsCount[n]],t.bsCount[n]=t.sCount[n]+1+(x?1:0),u=k>=q,g=[t.sCount[n]],t.sCount[n]=f-l,E=[t.tShift[n]],t.tShift[n]=k-t.bMarks[n],C=t.md.block.ruler.getRules(\"blockquote\"),y=t.parentType,t.parentType=\"blockquote\",p=n+1;p<r&&(A=t.sCount[p]<t.blkIndent,k=t.bMarks[p]+t.tShift[p],q=t.eMarks[p],!(k>=q));p++){if(t.src.charCodeAt(k++)===62&&!A){for(l=f=t.sCount[p]+1,t.src.charCodeAt(k)===32?(k++,l++,f++,i=!1,x=!0):t.src.charCodeAt(k)===9?(x=!0,(t.bsCount[p]+f)%4===3?(k++,l++,f++,i=!1):i=!0):x=!1,m.push(t.bMarks[p]),t.bMarks[p]=k;k<q&&(s=t.src.charCodeAt(k),U1(s));){s===9?f+=4-(f+t.bsCount[p]+(i?1:0))%4:f++;k++}u=k>=q,v.push(t.bsCount[p]),t.bsCount[p]=t.sCount[p]+1+(x?1:0),g.push(t.sCount[p]),t.sCount[p]=f-l,E.push(t.tShift[p]),t.tShift[p]=k-t.bMarks[p];continue}if(u)break;for(w=!1,a=0,c=C.length;a<c;a++)if(C[a](t,p,r,!0)){w=!0;break}if(w){t.lineMax=p,t.blkIndent!==0&&(m.push(t.bMarks[p]),v.push(t.bsCount[p]),E.push(t.tShift[p]),g.push(t.sCount[p]),t.sCount[p]-=t.blkIndent);break}m.push(t.bMarks[p]),v.push(t.bsCount[p]),E.push(t.tShift[p]),g.push(t.sCount[p]),t.sCount[p]=-1}for(b=t.blkIndent,t.blkIndent=0,T=t.push(\"blockquote_open\",\"blockquote\",1),T.markup=\">\",T.map=d=[n,0],t.md.block.tokenize(t,n,p),T=t.push(\"blockquote_close\",\"blockquote\",-1),T.markup=\">\",t.lineMax=S,t.parentType=y,d[1]=t.line,a=0;a<E.length;a++)t.bMarks[a+n]=m[a],t.tShift[a+n]=E[a],t.sCount[a+n]=g[a],t.bsCount[a+n]=v[a];return t.blkIndent=b,!0},dme=ye.isSpace,pme=function(t,n,r,o){var i,s,a,l,c=t.bMarks[n]+t.tShift[n],u=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||(i=t.src.charCodeAt(c++),i!==42&&i!==45&&i!==95))return!1;for(s=1;c<u;){if(a=t.src.charCodeAt(c++),a!==i&&!dme(a))return!1;a===i&&s++}return s<3?!1:(o||(t.line=n+1,l=t.push(\"hr\",\"hr\",0),l.map=[n,t.line],l.markup=Array(s+1).join(String.fromCharCode(i))),!0)},FS=ye.isSpace;function B1(e,t){var n,r,o,i;return r=e.bMarks[t]+e.tShift[t],o=e.eMarks[t],n=e.src.charCodeAt(r++),n!==42&&n!==45&&n!==43||r<o&&(i=e.src.charCodeAt(r),!FS(i))?-1:r}function z1(e,t){var n,r=e.bMarks[t]+e.tShift[t],o=r,i=e.eMarks[t];if(o+1>=i||(n=e.src.charCodeAt(o++),n<48||n>57))return-1;for(;;){if(o>=i)return-1;if(n=e.src.charCodeAt(o++),n>=48&&n<=57){if(o-r>=10)return-1;continue}if(n===41||n===46)break;return-1}return o<i&&(n=e.src.charCodeAt(o),!FS(n))?-1:o}function hme(e,t){var n,r,o=e.level+2;for(n=t+2,r=e.tokens.length-2;n<r;n++)e.tokens[n].level===o&&e.tokens[n].type===\"paragraph_open\"&&(e.tokens[n+2].hidden=!0,e.tokens[n].hidden=!0,n+=2)}var mme=function(t,n,r,o){var i,s,a,l,c,u,d,p,f,m,v,b,y,g,E,x,w,C,T,A,S,k,q,H,V,N,M,R,I=!1,D=!0;if(t.sCount[n]-t.blkIndent>=4||t.listIndent>=0&&t.sCount[n]-t.listIndent>=4&&t.sCount[n]<t.blkIndent)return!1;if(o&&t.parentType===\"paragraph\"&&t.sCount[n]>=t.blkIndent&&(I=!0),(q=z1(t,n))>=0){if(d=!0,V=t.bMarks[n]+t.tShift[n],y=Number(t.src.slice(V,q-1)),I&&y!==1)return!1}else if((q=B1(t,n))>=0)d=!1;else return!1;if(I&&t.skipSpaces(q)>=t.eMarks[n])return!1;if(b=t.src.charCodeAt(q-1),o)return!0;for(v=t.tokens.length,d?(R=t.push(\"ordered_list_open\",\"ol\",1),y!==1&&(R.attrs=[[\"start\",y]])):R=t.push(\"bullet_list_open\",\"ul\",1),R.map=m=[n,0],R.markup=String.fromCharCode(b),E=n,H=!1,M=t.md.block.ruler.getRules(\"list\"),C=t.parentType,t.parentType=\"list\";E<r;){for(k=q,g=t.eMarks[E],u=x=t.sCount[E]+q-(t.bMarks[n]+t.tShift[n]);k<g;){if(i=t.src.charCodeAt(k),i===9)x+=4-(x+t.bsCount[E])%4;else if(i===32)x++;else break;k++}if(s=k,s>=g?c=1:c=x-u,c>4&&(c=1),l=u+c,R=t.push(\"list_item_open\",\"li\",1),R.markup=String.fromCharCode(b),R.map=p=[n,0],d&&(R.info=t.src.slice(V,q-1)),S=t.tight,A=t.tShift[n],T=t.sCount[n],w=t.listIndent,t.listIndent=t.blkIndent,t.blkIndent=l,t.tight=!0,t.tShift[n]=s-t.bMarks[n],t.sCount[n]=x,s>=g&&t.isEmpty(n+1)?t.line=Math.min(t.line+2,r):t.md.block.tokenize(t,n,r,!0),(!t.tight||H)&&(D=!1),H=t.line-n>1&&t.isEmpty(t.line-1),t.blkIndent=t.listIndent,t.listIndent=w,t.tShift[n]=A,t.sCount[n]=T,t.tight=S,R=t.push(\"list_item_close\",\"li\",-1),R.markup=String.fromCharCode(b),E=n=t.line,p[1]=E,s=t.bMarks[n],E>=r||t.sCount[E]<t.blkIndent||t.sCount[n]-t.blkIndent>=4)break;for(N=!1,a=0,f=M.length;a<f;a++)if(M[a](t,E,r,!0)){N=!0;break}if(N)break;if(d){if(q=z1(t,E),q<0)break;V=t.bMarks[E]+t.tShift[E]}else if(q=B1(t,E),q<0)break;if(b!==t.src.charCodeAt(q-1))break}return d?R=t.push(\"ordered_list_close\",\"ol\",-1):R=t.push(\"bullet_list_close\",\"ul\",-1),R.markup=String.fromCharCode(b),m[1]=E,t.line=E,t.parentType=C,D&&hme(t,v),!0},vme=ye.normalizeReference,Ol=ye.isSpace,gme=function(t,n,r,o){var i,s,a,l,c,u,d,p,f,m,v,b,y,g,E,x,w=0,C=t.bMarks[n]+t.tShift[n],T=t.eMarks[n],A=n+1;if(t.sCount[n]-t.blkIndent>=4||t.src.charCodeAt(C)!==91)return!1;for(;++C<T;)if(t.src.charCodeAt(C)===93&&t.src.charCodeAt(C-1)!==92){if(C+1===T||t.src.charCodeAt(C+1)!==58)return!1;break}for(l=t.lineMax,E=t.md.block.ruler.getRules(\"reference\"),m=t.parentType,t.parentType=\"reference\";A<l&&!t.isEmpty(A);A++)if(!(t.sCount[A]-t.blkIndent>3)&&!(t.sCount[A]<0)){for(g=!1,u=0,d=E.length;u<d;u++)if(E[u](t,A,l,!0)){g=!0;break}if(g)break}for(y=t.getLines(n,A,t.blkIndent,!1).trim(),T=y.length,C=1;C<T;C++){if(i=y.charCodeAt(C),i===91)return!1;if(i===93){f=C;break}else i===10?w++:i===92&&(C++,C<T&&y.charCodeAt(C)===10&&w++)}if(f<0||y.charCodeAt(f+1)!==58)return!1;for(C=f+2;C<T;C++)if(i=y.charCodeAt(C),i===10)w++;else if(!Ol(i))break;if(v=t.md.helpers.parseLinkDestination(y,C,T),!v.ok||(c=t.md.normalizeLink(v.str),!t.md.validateLink(c)))return!1;for(C=v.pos,w+=v.lines,s=C,a=w,b=C;C<T;C++)if(i=y.charCodeAt(C),i===10)w++;else if(!Ol(i))break;for(v=t.md.helpers.parseLinkTitle(y,C,T),C<T&&b!==C&&v.ok?(x=v.str,C=v.pos,w+=v.lines):(x=\"\",C=s,w=a);C<T&&(i=y.charCodeAt(C),!!Ol(i));)C++;if(C<T&&y.charCodeAt(C)!==10&&x)for(x=\"\",C=s,w=a;C<T&&(i=y.charCodeAt(C),!!Ol(i));)C++;return C<T&&y.charCodeAt(C)!==10||(p=vme(y.slice(1,f)),!p)?!1:(o||(typeof t.env.references>\"u\"&&(t.env.references={}),typeof t.env.references[p]>\"u\"&&(t.env.references[p]={title:x,href:c}),t.parentType=m,t.line=n+w+1),!0)},yme=[\"address\",\"article\",\"aside\",\"base\",\"basefont\",\"blockquote\",\"body\",\"caption\",\"center\",\"col\",\"colgroup\",\"dd\",\"details\",\"dialog\",\"dir\",\"div\",\"dl\",\"dt\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"frame\",\"frameset\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"head\",\"header\",\"hr\",\"html\",\"iframe\",\"legend\",\"li\",\"link\",\"main\",\"menu\",\"menuitem\",\"nav\",\"noframes\",\"ol\",\"optgroup\",\"option\",\"p\",\"param\",\"section\",\"source\",\"summary\",\"table\",\"tbody\",\"td\",\"tfoot\",\"th\",\"thead\",\"title\",\"tr\",\"track\",\"ul\"],rf={},Eme=\"[a-zA-Z_:][a-zA-Z0-9:._-]*\",bme=\"[^\\\"'=<>`\\\\x00-\\\\x20]+\",xme=\"'[^']*'\",wme='\"[^\"]*\"',_me=\"(?:\"+bme+\"|\"+xme+\"|\"+wme+\")\",Sme=\"(?:\\\\s+\"+Eme+\"(?:\\\\s*=\\\\s*\"+_me+\")?)\",MS=\"<[A-Za-z][A-Za-z0-9\\\\-]*\"+Sme+\"*\\\\s*\\\\/?>\",VS=\"<\\\\/[A-Za-z][A-Za-z0-9\\\\-]*\\\\s*>\",Cme=\"<!---->|<!--(?:-?[^>-])(?:-?[^-])*-->\",Tme=\"<[?][\\\\s\\\\S]*?[?]>\",kme=\"<![A-Z]+\\\\s+[^>]*>\",Nme=\"<!\\\\[CDATA\\\\[[\\\\s\\\\S]*?\\\\]\\\\]>\",Ame=new RegExp(\"^(?:\"+MS+\"|\"+VS+\"|\"+Cme+\"|\"+Tme+\"|\"+kme+\"|\"+Nme+\")\"),Dme=new RegExp(\"^(?:\"+MS+\"|\"+VS+\")\");rf.HTML_TAG_RE=Ame;rf.HTML_OPEN_CLOSE_TAG_RE=Dme;var Ime=yme,Rme=rf.HTML_OPEN_CLOSE_TAG_RE,Ko=[[/^<(script|pre|style|textarea)(?=(\\s|>|$))/i,/<\\/(script|pre|style|textarea)>/i,!0],[/^<!--/,/-->/,!0],[/^<\\?/,/\\?>/,!0],[/^<![A-Z]/,/>/,!0],[/^<!\\[CDATA\\[/,/\\]\\]>/,!0],[new RegExp(\"^</?(\"+Ime.join(\"|\")+\")(?=(\\\\s|/?>|$))\",\"i\"),/^$/,!0],[new RegExp(Rme.source+\"\\\\s*$\"),/^$/,!1]],Lme=function(t,n,r,o){var i,s,a,l,c=t.bMarks[n]+t.tShift[n],u=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||!t.md.options.html||t.src.charCodeAt(c)!==60)return!1;for(l=t.src.slice(c,u),i=0;i<Ko.length&&!Ko[i][0].test(l);i++);if(i===Ko.length)return!1;if(o)return Ko[i][2];if(s=n+1,!Ko[i][1].test(l)){for(;s<r&&!(t.sCount[s]<t.blkIndent);s++)if(c=t.bMarks[s]+t.tShift[s],u=t.eMarks[s],l=t.src.slice(c,u),Ko[i][1].test(l)){l.length!==0&&s++;break}}return t.line=s,a=t.push(\"html_block\",\"\",0),a.map=[n,s],a.content=t.getLines(n,s,t.blkIndent,!0),!0},H1=ye.isSpace,Ome=function(t,n,r,o){var i,s,a,l,c=t.bMarks[n]+t.tShift[n],u=t.eMarks[n];if(t.sCount[n]-t.blkIndent>=4||(i=t.src.charCodeAt(c),i!==35||c>=u))return!1;for(s=1,i=t.src.charCodeAt(++c);i===35&&c<u&&s<=6;)s++,i=t.src.charCodeAt(++c);return s>6||c<u&&!H1(i)?!1:(o||(u=t.skipSpacesBack(u,c),a=t.skipCharsBack(u,35,c),a>c&&H1(t.src.charCodeAt(a-1))&&(u=a),t.line=n+1,l=t.push(\"heading_open\",\"h\"+String(s),1),l.markup=\"########\".slice(0,s),l.map=[n,t.line],l=t.push(\"inline\",\"\",0),l.content=t.src.slice(c,u).trim(),l.map=[n,t.line],l.children=[],l=t.push(\"heading_close\",\"h\"+String(s),-1),l.markup=\"########\".slice(0,s)),!0)},Pme=function(t,n,r){var o,i,s,a,l,c,u,d,p,f=n+1,m,v=t.md.block.ruler.getRules(\"paragraph\");if(t.sCount[n]-t.blkIndent>=4)return!1;for(m=t.parentType,t.parentType=\"paragraph\";f<r&&!t.isEmpty(f);f++)if(!(t.sCount[f]-t.blkIndent>3)){if(t.sCount[f]>=t.blkIndent&&(c=t.bMarks[f]+t.tShift[f],u=t.eMarks[f],c<u&&(p=t.src.charCodeAt(c),(p===45||p===61)&&(c=t.skipChars(c,p),c=t.skipSpaces(c),c>=u)))){d=p===61?1:2;break}if(!(t.sCount[f]<0)){for(i=!1,s=0,a=v.length;s<a;s++)if(v[s](t,f,r,!0)){i=!0;break}if(i)break}}return d?(o=t.getLines(n,f,t.blkIndent,!1).trim(),t.line=f+1,l=t.push(\"heading_open\",\"h\"+String(d),1),l.markup=String.fromCharCode(p),l.map=[n,t.line],l=t.push(\"inline\",\"\",0),l.content=o,l.map=[n,t.line-1],l.children=[],l=t.push(\"heading_close\",\"h\"+String(d),-1),l.markup=String.fromCharCode(p),t.parentType=m,!0):!1},$me=function(t,n){var r,o,i,s,a,l,c=n+1,u=t.md.block.ruler.getRules(\"paragraph\"),d=t.lineMax;for(l=t.parentType,t.parentType=\"paragraph\";c<d&&!t.isEmpty(c);c++)if(!(t.sCount[c]-t.blkIndent>3)&&!(t.sCount[c]<0)){for(o=!1,i=0,s=u.length;i<s;i++)if(u[i](t,c,d,!0)){o=!0;break}if(o)break}return r=t.getLines(n,c,t.blkIndent,!1).trim(),t.line=c,a=t.push(\"paragraph_open\",\"p\",1),a.map=[n,t.line],a=t.push(\"inline\",\"\",0),a.content=r,a.map=[n,t.line],a.children=[],a=t.push(\"paragraph_close\",\"p\",-1),t.parentType=l,!0},jS=yv,of=ye.isSpace;function Gn(e,t,n,r){var o,i,s,a,l,c,u,d;for(this.src=e,this.md=t,this.env=n,this.tokens=r,this.bMarks=[],this.eMarks=[],this.tShift=[],this.sCount=[],this.bsCount=[],this.blkIndent=0,this.line=0,this.lineMax=0,this.tight=!1,this.ddIndent=-1,this.listIndent=-1,this.parentType=\"root\",this.level=0,this.result=\"\",i=this.src,d=!1,s=a=c=u=0,l=i.length;a<l;a++){if(o=i.charCodeAt(a),!d)if(of(o)){c++,o===9?u+=4-u%4:u++;continue}else d=!0;(o===10||a===l-1)&&(o!==10&&a++,this.bMarks.push(s),this.eMarks.push(a),this.tShift.push(c),this.sCount.push(u),this.bsCount.push(0),d=!1,c=0,u=0,s=a+1)}this.bMarks.push(i.length),this.eMarks.push(i.length),this.tShift.push(0),this.sCount.push(0),this.bsCount.push(0),this.lineMax=this.bMarks.length-1}Gn.prototype.push=function(e,t,n){var r=new jS(e,t,n);return r.block=!0,n<0&&this.level--,r.level=this.level,n>0&&this.level++,this.tokens.push(r),r};Gn.prototype.isEmpty=function(t){return this.bMarks[t]+this.tShift[t]>=this.eMarks[t]};Gn.prototype.skipEmptyLines=function(t){for(var n=this.lineMax;t<n&&!(this.bMarks[t]+this.tShift[t]<this.eMarks[t]);t++);return t};Gn.prototype.skipSpaces=function(t){for(var n,r=this.src.length;t<r&&(n=this.src.charCodeAt(t),!!of(n));t++);return t};Gn.prototype.skipSpacesBack=function(t,n){if(t<=n)return t;for(;t>n;)if(!of(this.src.charCodeAt(--t)))return t+1;return t};Gn.prototype.skipChars=function(t,n){for(var r=this.src.length;t<r&&this.src.charCodeAt(t)===n;t++);return t};Gn.prototype.skipCharsBack=function(t,n,r){if(t<=r)return t;for(;t>r;)if(n!==this.src.charCodeAt(--t))return t+1;return t};Gn.prototype.getLines=function(t,n,r,o){var i,s,a,l,c,u,d,p=t;if(t>=n)return\"\";for(u=new Array(n-t),i=0;p<n;p++,i++){for(s=0,d=l=this.bMarks[p],p+1<n||o?c=this.eMarks[p]+1:c=this.eMarks[p];l<c&&s<r;){if(a=this.src.charCodeAt(l),of(a))a===9?s+=4-(s+this.bsCount[p])%4:s++;else if(l-d<this.tShift[p])s++;else break;l++}s>r?u[i]=new Array(s-r+1).join(\" \")+this.src.slice(l,c):u[i]=this.src.slice(l,c)}return u.join(\"\")};Gn.prototype.Token=jS;var Fme=Gn,Mme=gv,Pl=[[\"table\",lme,[\"paragraph\",\"reference\"]],[\"code\",cme],[\"fence\",ume,[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"blockquote\",fme,[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"hr\",pme,[\"paragraph\",\"reference\",\"blockquote\",\"list\"]],[\"list\",mme,[\"paragraph\",\"reference\",\"blockquote\"]],[\"reference\",gme],[\"html_block\",Lme,[\"paragraph\",\"reference\",\"blockquote\"]],[\"heading\",Ome,[\"paragraph\",\"reference\",\"blockquote\"]],[\"lheading\",Pme],[\"paragraph\",$me]];function sf(){this.ruler=new Mme;for(var e=0;e<Pl.length;e++)this.ruler.push(Pl[e][0],Pl[e][1],{alt:(Pl[e][2]||[]).slice()})}sf.prototype.tokenize=function(e,t,n){for(var r,o,i=this.ruler.getRules(\"\"),s=i.length,a=t,l=!1,c=e.md.options.maxNesting;a<n&&(e.line=a=e.skipEmptyLines(a),!(a>=n||e.sCount[a]<e.blkIndent));){if(e.level>=c){e.line=n;break}for(o=0;o<s&&(r=i[o](e,a,n,!1),!r);o++);e.tight=!l,e.isEmpty(e.line-1)&&(l=!0),a=e.line,a<n&&e.isEmpty(a)&&(l=!0,a++,e.line=a)}};sf.prototype.parse=function(e,t,n,r){var o;e&&(o=new this.State(e,t,n,r),this.tokenize(o,o.line,o.lineMax))};sf.prototype.State=Fme;var Vme=sf;function jme(e){switch(e){case 10:case 33:case 35:case 36:case 37:case 38:case 42:case 43:case 45:case 58:case 60:case 61:case 62:case 64:case 91:case 92:case 93:case 94:case 95:case 96:case 123:case 125:case 126:return!0;default:return!1}}var qme=function(t,n){for(var r=t.pos;r<t.posMax&&!jme(t.src.charCodeAt(r));)r++;return r===t.pos?!1:(n||(t.pending+=t.src.slice(t.pos,r)),t.pos=r,!0)},Ume=ye.isSpace,Bme=function(t,n){var r,o,i,s=t.pos;if(t.src.charCodeAt(s)!==10)return!1;if(r=t.pending.length-1,o=t.posMax,!n)if(r>=0&&t.pending.charCodeAt(r)===32)if(r>=1&&t.pending.charCodeAt(r-1)===32){for(i=r-1;i>=1&&t.pending.charCodeAt(i-1)===32;)i--;t.pending=t.pending.slice(0,i),t.push(\"hardbreak\",\"br\",0)}else t.pending=t.pending.slice(0,-1),t.push(\"softbreak\",\"br\",0);else t.push(\"softbreak\",\"br\",0);for(s++;s<o&&Ume(t.src.charCodeAt(s));)s++;return t.pos=s,!0},zme=ye.isSpace,bv=[];for(var G1=0;G1<256;G1++)bv.push(0);\"\\\\!\\\"#$%&'()*+,./:;<=>?@[]^_`{|}~-\".split(\"\").forEach(function(e){bv[e.charCodeAt(0)]=1});var Hme=function(t,n){var r,o=t.pos,i=t.posMax;if(t.src.charCodeAt(o)!==92)return!1;if(o++,o<i){if(r=t.src.charCodeAt(o),r<256&&bv[r]!==0)return n||(t.pending+=t.src[o]),t.pos+=2,!0;if(r===10){for(n||t.push(\"hardbreak\",\"br\",0),o++;o<i&&(r=t.src.charCodeAt(o),!!zme(r));)o++;return t.pos=o,!0}}return n||(t.pending+=\"\\\\\"),t.pos++,!0},Gme=function(t,n){var r,o,i,s,a,l,c,u,d=t.pos,p=t.src.charCodeAt(d);if(p!==96)return!1;for(r=d,d++,o=t.posMax;d<o&&t.src.charCodeAt(d)===96;)d++;if(i=t.src.slice(r,d),c=i.length,t.backticksScanned&&(t.backticks[c]||0)<=r)return n||(t.pending+=i),t.pos+=c,!0;for(a=l=d;(a=t.src.indexOf(\"`\",l))!==-1;){for(l=a+1;l<o&&t.src.charCodeAt(l)===96;)l++;if(u=l-a,u===c)return n||(s=t.push(\"code_inline\",\"code\",0),s.markup=i,s.content=t.src.slice(d,a).replace(/\\n/g,\" \").replace(/^ (.+) $/,\"$1\")),t.pos=l,!0;t.backticks[u]=a}return t.backticksScanned=!0,n||(t.pending+=i),t.pos+=c,!0},af={};af.tokenize=function(t,n){var r,o,i,s,a,l=t.pos,c=t.src.charCodeAt(l);if(n||c!==126||(o=t.scanDelims(t.pos,!0),s=o.length,a=String.fromCharCode(c),s<2))return!1;for(s%2&&(i=t.push(\"text\",\"\",0),i.content=a,s--),r=0;r<s;r+=2)i=t.push(\"text\",\"\",0),i.content=a+a,t.delimiters.push({marker:c,length:0,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0};function W1(e,t){var n,r,o,i,s,a=[],l=t.length;for(n=0;n<l;n++)o=t[n],o.marker===126&&o.end!==-1&&(i=t[o.end],s=e.tokens[o.token],s.type=\"s_open\",s.tag=\"s\",s.nesting=1,s.markup=\"~~\",s.content=\"\",s=e.tokens[i.token],s.type=\"s_close\",s.tag=\"s\",s.nesting=-1,s.markup=\"~~\",s.content=\"\",e.tokens[i.token-1].type===\"text\"&&e.tokens[i.token-1].content===\"~\"&&a.push(i.token-1));for(;a.length;){for(n=a.pop(),r=n+1;r<e.tokens.length&&e.tokens[r].type===\"s_close\";)r++;r--,n!==r&&(s=e.tokens[r],e.tokens[r]=e.tokens[n],e.tokens[n]=s)}}af.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(W1(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&W1(t,r[n].delimiters)};var lf={};lf.tokenize=function(t,n){var r,o,i,s=t.pos,a=t.src.charCodeAt(s);if(n||a!==95&&a!==42)return!1;for(o=t.scanDelims(t.pos,a===42),r=0;r<o.length;r++)i=t.push(\"text\",\"\",0),i.content=String.fromCharCode(a),t.delimiters.push({marker:a,length:o.length,token:t.tokens.length-1,end:-1,open:o.can_open,close:o.can_close});return t.pos+=o.length,!0};function Q1(e,t){var n,r,o,i,s,a,l=t.length;for(n=l-1;n>=0;n--)r=t[n],!(r.marker!==95&&r.marker!==42)&&r.end!==-1&&(o=t[r.end],a=n>0&&t[n-1].end===r.end+1&&t[n-1].marker===r.marker&&t[n-1].token===r.token-1&&t[r.end+1].token===o.token+1,s=String.fromCharCode(r.marker),i=e.tokens[r.token],i.type=a?\"strong_open\":\"em_open\",i.tag=a?\"strong\":\"em\",i.nesting=1,i.markup=a?s+s:s,i.content=\"\",i=e.tokens[o.token],i.type=a?\"strong_close\":\"em_close\",i.tag=a?\"strong\":\"em\",i.nesting=-1,i.markup=a?s+s:s,i.content=\"\",a&&(e.tokens[t[n-1].token].content=\"\",e.tokens[t[r.end+1].token].content=\"\",n--))}lf.postProcess=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(Q1(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&Q1(t,r[n].delimiters)};var Wme=ye.normalizeReference,wd=ye.isSpace,Qme=function(t,n){var r,o,i,s,a,l,c,u,d,p=\"\",f=\"\",m=t.pos,v=t.posMax,b=t.pos,y=!0;if(t.src.charCodeAt(t.pos)!==91||(a=t.pos+1,s=t.md.helpers.parseLinkLabel(t,t.pos,!0),s<0))return!1;if(l=s+1,l<v&&t.src.charCodeAt(l)===40){for(y=!1,l++;l<v&&(o=t.src.charCodeAt(l),!(!wd(o)&&o!==10));l++);if(l>=v)return!1;if(b=l,c=t.md.helpers.parseLinkDestination(t.src,l,t.posMax),c.ok){for(p=t.md.normalizeLink(c.str),t.md.validateLink(p)?l=c.pos:p=\"\",b=l;l<v&&(o=t.src.charCodeAt(l),!(!wd(o)&&o!==10));l++);if(c=t.md.helpers.parseLinkTitle(t.src,l,t.posMax),l<v&&b!==l&&c.ok)for(f=c.str,l=c.pos;l<v&&(o=t.src.charCodeAt(l),!(!wd(o)&&o!==10));l++);}(l>=v||t.src.charCodeAt(l)!==41)&&(y=!0),l++}if(y){if(typeof t.env.references>\"u\")return!1;if(l<v&&t.src.charCodeAt(l)===91?(b=l+1,l=t.md.helpers.parseLinkLabel(t,l),l>=0?i=t.src.slice(b,l++):l=s+1):l=s+1,i||(i=t.src.slice(a,s)),u=t.env.references[Wme(i)],!u)return t.pos=m,!1;p=u.href,f=u.title}return n||(t.pos=a,t.posMax=s,d=t.push(\"link_open\",\"a\",1),d.attrs=r=[[\"href\",p]],f&&r.push([\"title\",f]),t.md.inline.tokenize(t),d=t.push(\"link_close\",\"a\",-1)),t.pos=l,t.posMax=v,!0},Yme=ye.normalizeReference,_d=ye.isSpace,Zme=function(t,n){var r,o,i,s,a,l,c,u,d,p,f,m,v,b=\"\",y=t.pos,g=t.posMax;if(t.src.charCodeAt(t.pos)!==33||t.src.charCodeAt(t.pos+1)!==91||(l=t.pos+2,a=t.md.helpers.parseLinkLabel(t,t.pos+1,!1),a<0))return!1;if(c=a+1,c<g&&t.src.charCodeAt(c)===40){for(c++;c<g&&(o=t.src.charCodeAt(c),!(!_d(o)&&o!==10));c++);if(c>=g)return!1;for(v=c,d=t.md.helpers.parseLinkDestination(t.src,c,t.posMax),d.ok&&(b=t.md.normalizeLink(d.str),t.md.validateLink(b)?c=d.pos:b=\"\"),v=c;c<g&&(o=t.src.charCodeAt(c),!(!_d(o)&&o!==10));c++);if(d=t.md.helpers.parseLinkTitle(t.src,c,t.posMax),c<g&&v!==c&&d.ok)for(p=d.str,c=d.pos;c<g&&(o=t.src.charCodeAt(c),!(!_d(o)&&o!==10));c++);else p=\"\";if(c>=g||t.src.charCodeAt(c)!==41)return t.pos=y,!1;c++}else{if(typeof t.env.references>\"u\")return!1;if(c<g&&t.src.charCodeAt(c)===91?(v=c+1,c=t.md.helpers.parseLinkLabel(t,c),c>=0?s=t.src.slice(v,c++):c=a+1):c=a+1,s||(s=t.src.slice(l,a)),u=t.env.references[Yme(s)],!u)return t.pos=y,!1;b=u.href,p=u.title}return n||(i=t.src.slice(l,a),t.md.inline.parse(i,t.md,t.env,m=[]),f=t.push(\"image\",\"img\",0),f.attrs=r=[[\"src\",b],[\"alt\",\"\"]],f.children=m,f.content=i,p&&r.push([\"title\",p])),t.pos=c,t.posMax=g,!0},Xme=/^([a-zA-Z0-9.!#$%&'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*)$/,Jme=/^([a-zA-Z][a-zA-Z0-9+.\\-]{1,31}):([^<>\\x00-\\x20]*)$/,Kme=function(t,n){var r,o,i,s,a,l,c=t.pos;if(t.src.charCodeAt(c)!==60)return!1;for(a=t.pos,l=t.posMax;;){if(++c>=l||(s=t.src.charCodeAt(c),s===60))return!1;if(s===62)break}return r=t.src.slice(a+1,c),Jme.test(r)?(o=t.md.normalizeLink(r),t.md.validateLink(o)?(n||(i=t.push(\"link_open\",\"a\",1),i.attrs=[[\"href\",o]],i.markup=\"autolink\",i.info=\"auto\",i=t.push(\"text\",\"\",0),i.content=t.md.normalizeLinkText(r),i=t.push(\"link_close\",\"a\",-1),i.markup=\"autolink\",i.info=\"auto\"),t.pos+=r.length+2,!0):!1):Xme.test(r)?(o=t.md.normalizeLink(\"mailto:\"+r),t.md.validateLink(o)?(n||(i=t.push(\"link_open\",\"a\",1),i.attrs=[[\"href\",o]],i.markup=\"autolink\",i.info=\"auto\",i=t.push(\"text\",\"\",0),i.content=t.md.normalizeLinkText(r),i=t.push(\"link_close\",\"a\",-1),i.markup=\"autolink\",i.info=\"auto\"),t.pos+=r.length+2,!0):!1):!1},eve=rf.HTML_TAG_RE;function tve(e){var t=e|32;return t>=97&&t<=122}var nve=function(t,n){var r,o,i,s,a=t.pos;return!t.md.options.html||(i=t.posMax,t.src.charCodeAt(a)!==60||a+2>=i)||(r=t.src.charCodeAt(a+1),r!==33&&r!==63&&r!==47&&!tve(r))||(o=t.src.slice(a).match(eve),!o)?!1:(n||(s=t.push(\"html_inline\",\"\",0),s.content=t.src.slice(a,a+o[0].length)),t.pos+=o[0].length,!0)},Y1=IS,rve=ye.has,ove=ye.isValidEntityCode,Z1=ye.fromCodePoint,ive=/^&#((?:x[a-f0-9]{1,6}|[0-9]{1,7}));/i,sve=/^&([a-z][a-z0-9]{1,31});/i,ave=function(t,n){var r,o,i,s=t.pos,a=t.posMax;if(t.src.charCodeAt(s)!==38)return!1;if(s+1<a){if(r=t.src.charCodeAt(s+1),r===35){if(i=t.src.slice(s).match(ive),i)return n||(o=i[1][0].toLowerCase()===\"x\"?parseInt(i[1].slice(1),16):parseInt(i[1],10),t.pending+=ove(o)?Z1(o):Z1(65533)),t.pos+=i[0].length,!0}else if(i=t.src.slice(s).match(sve),i&&rve(Y1,i[1]))return n||(t.pending+=Y1[i[1]]),t.pos+=i[0].length,!0}return n||(t.pending+=\"&\"),t.pos++,!0};function X1(e,t){var n,r,o,i,s,a,l,c,u={},d=t.length;if(d){var p=0,f=-2,m=[];for(n=0;n<d;n++)if(o=t[n],m.push(0),(t[p].marker!==o.marker||f!==o.token-1)&&(p=n),f=o.token,o.length=o.length||0,!!o.close){for(u.hasOwnProperty(o.marker)||(u[o.marker]=[-1,-1,-1,-1,-1,-1]),s=u[o.marker][(o.open?3:0)+o.length%3],r=p-m[p]-1,a=r;r>s;r-=m[r]+1)if(i=t[r],i.marker===o.marker&&i.open&&i.end<0&&(l=!1,(i.close||o.open)&&(i.length+o.length)%3===0&&(i.length%3!==0||o.length%3!==0)&&(l=!0),!l)){c=r>0&&!t[r-1].open?m[r-1]+1:0,m[n]=n-r+c,m[r]=c,o.open=!1,i.end=n,i.close=!1,a=-1,f=-2;break}a!==-1&&(u[o.marker][(o.open?3:0)+(o.length||0)%3]=a)}}}var lve=function(t){var n,r=t.tokens_meta,o=t.tokens_meta.length;for(X1(t,t.delimiters),n=0;n<o;n++)r[n]&&r[n].delimiters&&X1(t,r[n].delimiters)},cve=function(t){var n,r,o=0,i=t.tokens,s=t.tokens.length;for(n=r=0;n<s;n++)i[n].nesting<0&&o--,i[n].level=o,i[n].nesting>0&&o++,i[n].type===\"text\"&&n+1<s&&i[n+1].type===\"text\"?i[n+1].content=i[n].content+i[n+1].content:(n!==r&&(i[r]=i[n]),r++);n!==r&&(i.length=r)},xv=yv,J1=ye.isWhiteSpace,K1=ye.isPunctChar,eE=ye.isMdAsciiPunct;function za(e,t,n,r){this.src=e,this.env=n,this.md=t,this.tokens=r,this.tokens_meta=Array(r.length),this.pos=0,this.posMax=this.src.length,this.level=0,this.pending=\"\",this.pendingLevel=0,this.cache={},this.delimiters=[],this._prev_delimiters=[],this.backticks={},this.backticksScanned=!1}za.prototype.pushPending=function(){var e=new xv(\"text\",\"\",0);return e.content=this.pending,e.level=this.pendingLevel,this.tokens.push(e),this.pending=\"\",e};za.prototype.push=function(e,t,n){this.pending&&this.pushPending();var r=new xv(e,t,n),o=null;return n<0&&(this.level--,this.delimiters=this._prev_delimiters.pop()),r.level=this.level,n>0&&(this.level++,this._prev_delimiters.push(this.delimiters),this.delimiters=[],o={delimiters:this.delimiters}),this.pendingLevel=this.level,this.tokens.push(r),this.tokens_meta.push(o),r};za.prototype.scanDelims=function(e,t){var n=e,r,o,i,s,a,l,c,u,d,p=!0,f=!0,m=this.posMax,v=this.src.charCodeAt(e);for(r=e>0?this.src.charCodeAt(e-1):32;n<m&&this.src.charCodeAt(n)===v;)n++;return i=n-e,o=n<m?this.src.charCodeAt(n):32,c=eE(r)||K1(String.fromCharCode(r)),d=eE(o)||K1(String.fromCharCode(o)),l=J1(r),u=J1(o),u?p=!1:d&&(l||c||(p=!1)),l?f=!1:c&&(u||d||(f=!1)),t?(s=p,a=f):(s=p&&(!f||c),a=f&&(!p||d)),{can_open:s,can_close:a,length:i}};za.prototype.Token=xv;var uve=za,tE=gv,Sd=[[\"text\",qme],[\"newline\",Bme],[\"escape\",Hme],[\"backticks\",Gme],[\"strikethrough\",af.tokenize],[\"emphasis\",lf.tokenize],[\"link\",Qme],[\"image\",Zme],[\"autolink\",Kme],[\"html_inline\",nve],[\"entity\",ave]],Cd=[[\"balance_pairs\",lve],[\"strikethrough\",af.postProcess],[\"emphasis\",lf.postProcess],[\"text_collapse\",cve]];function Ha(){var e;for(this.ruler=new tE,e=0;e<Sd.length;e++)this.ruler.push(Sd[e][0],Sd[e][1]);for(this.ruler2=new tE,e=0;e<Cd.length;e++)this.ruler2.push(Cd[e][0],Cd[e][1])}Ha.prototype.skipToken=function(e){var t,n,r=e.pos,o=this.ruler.getRules(\"\"),i=o.length,s=e.md.options.maxNesting,a=e.cache;if(typeof a[r]<\"u\"){e.pos=a[r];return}if(e.level<s)for(n=0;n<i&&(e.level++,t=o[n](e,!0),e.level--,!t);n++);else e.pos=e.posMax;t||e.pos++,a[r]=e.pos};Ha.prototype.tokenize=function(e){for(var t,n,r=this.ruler.getRules(\"\"),o=r.length,i=e.posMax,s=e.md.options.maxNesting;e.pos<i;){if(e.level<s)for(n=0;n<o&&(t=r[n](e,!1),!t);n++);if(t){if(e.pos>=i)break;continue}e.pending+=e.src[e.pos++]}e.pending&&e.pushPending()};Ha.prototype.parse=function(e,t,n,r){var o,i,s,a=new this.State(e,t,n,r);for(this.tokenize(a),i=this.ruler2.getRules(\"\"),s=i.length,o=0;o<s;o++)i[o](a)};Ha.prototype.State=uve;var fve=Ha,Td,nE;function dve(){return nE||(nE=1,Td=function(e){var t={};t.src_Any=RS().source,t.src_Cc=LS().source,t.src_Z=OS().source,t.src_P=vv.source,t.src_ZPCc=[t.src_Z,t.src_P,t.src_Cc].join(\"|\"),t.src_ZCc=[t.src_Z,t.src_Cc].join(\"|\");var n=\"[><｜]\";return t.src_pseudo_letter=\"(?:(?!\"+n+\"|\"+t.src_ZPCc+\")\"+t.src_Any+\")\",t.src_ip4=\"(?:(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\\\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\",t.src_auth=\"(?:(?:(?!\"+t.src_ZCc+\"|[@/\\\\[\\\\]()]).)+@)?\",t.src_port=\"(?::(?:6(?:[0-4]\\\\d{3}|5(?:[0-4]\\\\d{2}|5(?:[0-2]\\\\d|3[0-5])))|[1-5]?\\\\d{1,4}))?\",t.src_host_terminator=\"(?=$|\"+n+\"|\"+t.src_ZPCc+\")(?!-|_|:\\\\d|\\\\.-|\\\\.(?!$|\"+t.src_ZPCc+\"))\",t.src_path=\"(?:[/?#](?:(?!\"+t.src_ZCc+\"|\"+n+`|[()[\\\\]{}.,\"'?!\\\\-;]).|\\\\[(?:(?!`+t.src_ZCc+\"|\\\\]).)*\\\\]|\\\\((?:(?!\"+t.src_ZCc+\"|[)]).)*\\\\)|\\\\{(?:(?!\"+t.src_ZCc+'|[}]).)*\\\\}|\\\\\"(?:(?!'+t.src_ZCc+`|[\"]).)+\\\\\"|\\\\'(?:(?!`+t.src_ZCc+\"|[']).)+\\\\'|\\\\'(?=\"+t.src_pseudo_letter+\"|[-]).|\\\\.{2,}[a-zA-Z0-9%/&]|\\\\.(?!\"+t.src_ZCc+\"|[.]).|\"+(e&&e[\"---\"]?\"\\\\-(?!--(?:[^-]|$))(?:-*)|\":\"\\\\-+|\")+\",(?!\"+t.src_ZCc+\").|;(?!\"+t.src_ZCc+\").|\\\\!+(?!\"+t.src_ZCc+\"|[!]).|\\\\?(?!\"+t.src_ZCc+\"|[?]).)+|\\\\/)?\",t.src_email_name='[\\\\-;:&=\\\\+\\\\$,\\\\.a-zA-Z0-9_][\\\\-;:&=\\\\+\\\\$,\\\\\"\\\\.a-zA-Z0-9_]*',t.src_xn=\"xn--[a-z0-9\\\\-]{1,59}\",t.src_domain_root=\"(?:\"+t.src_xn+\"|\"+t.src_pseudo_letter+\"{1,63})\",t.src_domain=\"(?:\"+t.src_xn+\"|(?:\"+t.src_pseudo_letter+\")|(?:\"+t.src_pseudo_letter+\"(?:-|\"+t.src_pseudo_letter+\"){0,61}\"+t.src_pseudo_letter+\"))\",t.src_host=\"(?:(?:(?:(?:\"+t.src_domain+\")\\\\.)*\"+t.src_domain+\"))\",t.tpl_host_fuzzy=\"(?:\"+t.src_ip4+\"|(?:(?:(?:\"+t.src_domain+\")\\\\.)+(?:%TLDS%)))\",t.tpl_host_no_ip_fuzzy=\"(?:(?:(?:\"+t.src_domain+\")\\\\.)+(?:%TLDS%))\",t.src_host_strict=t.src_host+t.src_host_terminator,t.tpl_host_fuzzy_strict=t.tpl_host_fuzzy+t.src_host_terminator,t.src_host_port_strict=t.src_host+t.src_port+t.src_host_terminator,t.tpl_host_port_fuzzy_strict=t.tpl_host_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_port_no_ip_fuzzy_strict=t.tpl_host_no_ip_fuzzy+t.src_port+t.src_host_terminator,t.tpl_host_fuzzy_test=\"localhost|www\\\\.|\\\\.\\\\d{1,3}\\\\.|(?:\\\\.(?:%TLDS%)(?:\"+t.src_ZPCc+\"|>|$))\",t.tpl_email_fuzzy=\"(^|\"+n+'|\"|\\\\(|'+t.src_ZCc+\")(\"+t.src_email_name+\"@\"+t.tpl_host_fuzzy_strict+\")\",t.tpl_link_fuzzy=\"(^|(?![.:/\\\\-_@])(?:[$+<=>^`|｜]|\"+t.src_ZPCc+\"))((?![$+<=>^`|｜])\"+t.tpl_host_port_fuzzy_strict+t.src_path+\")\",t.tpl_link_no_ip_fuzzy=\"(^|(?![.:/\\\\-_@])(?:[$+<=>^`|｜]|\"+t.src_ZPCc+\"))((?![$+<=>^`|｜])\"+t.tpl_host_port_no_ip_fuzzy_strict+t.src_path+\")\",t}),Td}function Sh(e){var t=Array.prototype.slice.call(arguments,1);return t.forEach(function(n){n&&Object.keys(n).forEach(function(r){e[r]=n[r]})}),e}function cf(e){return Object.prototype.toString.call(e)}function pve(e){return cf(e)===\"[object String]\"}function hve(e){return cf(e)===\"[object Object]\"}function mve(e){return cf(e)===\"[object RegExp]\"}function rE(e){return cf(e)===\"[object Function]\"}function vve(e){return e.replace(/[.?*+^$[\\]\\\\(){}|-]/g,\"\\\\$&\")}var qS={fuzzyLink:!0,fuzzyEmail:!0,fuzzyIP:!1};function gve(e){return Object.keys(e||{}).reduce(function(t,n){return t||qS.hasOwnProperty(n)},!1)}var yve={\"http:\":{validate:function(e,t,n){var r=e.slice(t);return n.re.http||(n.re.http=new RegExp(\"^\\\\/\\\\/\"+n.re.src_auth+n.re.src_host_port_strict+n.re.src_path,\"i\")),n.re.http.test(r)?r.match(n.re.http)[0].length:0}},\"https:\":\"http:\",\"ftp:\":\"http:\",\"//\":{validate:function(e,t,n){var r=e.slice(t);return n.re.no_http||(n.re.no_http=new RegExp(\"^\"+n.re.src_auth+\"(?:localhost|(?:(?:\"+n.re.src_domain+\")\\\\.)+\"+n.re.src_domain_root+\")\"+n.re.src_port+n.re.src_host_terminator+n.re.src_path,\"i\")),n.re.no_http.test(r)?t>=3&&e[t-3]===\":\"||t>=3&&e[t-3]===\"/\"?0:r.match(n.re.no_http)[0].length:0}},\"mailto:\":{validate:function(e,t,n){var r=e.slice(t);return n.re.mailto||(n.re.mailto=new RegExp(\"^\"+n.re.src_email_name+\"@\"+n.re.src_host_strict,\"i\")),n.re.mailto.test(r)?r.match(n.re.mailto)[0].length:0}}},Eve=\"a[cdefgilmnoqrstuwxz]|b[abdefghijmnorstvwyz]|c[acdfghiklmnoruvwxyz]|d[ejkmoz]|e[cegrstu]|f[ijkmor]|g[abdefghilmnpqrstuwy]|h[kmnrtu]|i[delmnoqrst]|j[emop]|k[eghimnprwyz]|l[abcikrstuvy]|m[acdeghklmnopqrstuvwxyz]|n[acefgilopruz]|om|p[aefghklmnrstwy]|qa|r[eosuw]|s[abcdeghijklmnortuvxyz]|t[cdfghjklmnortvwz]|u[agksyz]|v[aceginu]|w[fs]|y[et]|z[amw]\",bve=\"biz|com|edu|gov|net|org|pro|web|xxx|aero|asia|coop|info|museum|name|shop|рф\".split(\"|\");function xve(e){e.__index__=-1,e.__text_cache__=\"\"}function wve(e){return function(t,n){var r=t.slice(n);return e.test(r)?r.match(e)[0].length:0}}function oE(){return function(e,t){t.normalize(e)}}function tu(e){var t=e.re=dve()(e.__opts__),n=e.__tlds__.slice();e.onCompile(),e.__tlds_replaced__||n.push(Eve),n.push(t.src_xn),t.src_tlds=n.join(\"|\");function r(a){return a.replace(\"%TLDS%\",t.src_tlds)}t.email_fuzzy=RegExp(r(t.tpl_email_fuzzy),\"i\"),t.link_fuzzy=RegExp(r(t.tpl_link_fuzzy),\"i\"),t.link_no_ip_fuzzy=RegExp(r(t.tpl_link_no_ip_fuzzy),\"i\"),t.host_fuzzy_test=RegExp(r(t.tpl_host_fuzzy_test),\"i\");var o=[];e.__compiled__={};function i(a,l){throw new Error('(LinkifyIt) Invalid schema \"'+a+'\": '+l)}Object.keys(e.__schemas__).forEach(function(a){var l=e.__schemas__[a];if(l!==null){var c={validate:null,link:null};if(e.__compiled__[a]=c,hve(l)){mve(l.validate)?c.validate=wve(l.validate):rE(l.validate)?c.validate=l.validate:i(a,l),rE(l.normalize)?c.normalize=l.normalize:l.normalize?i(a,l):c.normalize=oE();return}if(pve(l)){o.push(a);return}i(a,l)}}),o.forEach(function(a){e.__compiled__[e.__schemas__[a]]&&(e.__compiled__[a].validate=e.__compiled__[e.__schemas__[a]].validate,e.__compiled__[a].normalize=e.__compiled__[e.__schemas__[a]].normalize)}),e.__compiled__[\"\"]={validate:null,normalize:oE()};var s=Object.keys(e.__compiled__).filter(function(a){return a.length>0&&e.__compiled__[a]}).map(vve).join(\"|\");e.re.schema_test=RegExp(\"(^|(?!_)(?:[><｜]|\"+t.src_ZPCc+\"))(\"+s+\")\",\"i\"),e.re.schema_search=RegExp(\"(^|(?!_)(?:[><｜]|\"+t.src_ZPCc+\"))(\"+s+\")\",\"ig\"),e.re.pretest=RegExp(\"(\"+e.re.schema_test.source+\")|(\"+e.re.host_fuzzy_test.source+\")|@\",\"i\"),xve(e)}function _ve(e,t){var n=e.__index__,r=e.__last_index__,o=e.__text_cache__.slice(n,r);this.schema=e.__schema__.toLowerCase(),this.index=n+t,this.lastIndex=r+t,this.raw=o,this.text=o,this.url=o}function iE(e,t){var n=new _ve(e,t);return e.__compiled__[n.schema].normalize(n,e),n}function on(e,t){if(!(this instanceof on))return new on(e,t);t||gve(e)&&(t=e,e={}),this.__opts__=Sh({},qS,t),this.__index__=-1,this.__last_index__=-1,this.__schema__=\"\",this.__text_cache__=\"\",this.__schemas__=Sh({},yve,e),this.__compiled__={},this.__tlds__=bve,this.__tlds_replaced__=!1,this.re={},tu(this)}on.prototype.add=function(t,n){return this.__schemas__[t]=n,tu(this),this};on.prototype.set=function(t){return this.__opts__=Sh(this.__opts__,t),this};on.prototype.test=function(t){if(this.__text_cache__=t,this.__index__=-1,!t.length)return!1;var n,r,o,i,s,a,l,c,u;if(this.re.schema_test.test(t)){for(l=this.re.schema_search,l.lastIndex=0;(n=l.exec(t))!==null;)if(i=this.testSchemaAt(t,n[2],l.lastIndex),i){this.__schema__=n[2],this.__index__=n.index+n[1].length,this.__last_index__=n.index+n[0].length+i;break}}return this.__opts__.fuzzyLink&&this.__compiled__[\"http:\"]&&(c=t.search(this.re.host_fuzzy_test),c>=0&&(this.__index__<0||c<this.__index__)&&(r=t.match(this.__opts__.fuzzyIP?this.re.link_fuzzy:this.re.link_no_ip_fuzzy))!==null&&(s=r.index+r[1].length,(this.__index__<0||s<this.__index__)&&(this.__schema__=\"\",this.__index__=s,this.__last_index__=r.index+r[0].length))),this.__opts__.fuzzyEmail&&this.__compiled__[\"mailto:\"]&&(u=t.indexOf(\"@\"),u>=0&&(o=t.match(this.re.email_fuzzy))!==null&&(s=o.index+o[1].length,a=o.index+o[0].length,(this.__index__<0||s<this.__index__||s===this.__index__&&a>this.__last_index__)&&(this.__schema__=\"mailto:\",this.__index__=s,this.__last_index__=a))),this.__index__>=0};on.prototype.pretest=function(t){return this.re.pretest.test(t)};on.prototype.testSchemaAt=function(t,n,r){return this.__compiled__[n.toLowerCase()]?this.__compiled__[n.toLowerCase()].validate(t,r,this):0};on.prototype.match=function(t){var n=0,r=[];this.__index__>=0&&this.__text_cache__===t&&(r.push(iE(this,n)),n=this.__last_index__);for(var o=n?t.slice(n):t;this.test(o);)r.push(iE(this,n)),o=o.slice(this.__last_index__),n+=this.__last_index__;return r.length?r:null};on.prototype.tlds=function(t,n){return t=Array.isArray(t)?t:[t],n?(this.__tlds__=this.__tlds__.concat(t).sort().filter(function(r,o,i){return r!==i[o-1]}).reverse(),tu(this),this):(this.__tlds__=t.slice(),this.__tlds_replaced__=!0,tu(this),this)};on.prototype.normalize=function(t){t.schema||(t.url=\"http://\"+t.url),t.schema===\"mailto:\"&&!/^mailto:/i.test(t.url)&&(t.url=\"mailto:\"+t.url)};on.prototype.onCompile=function(){};var Sve=on;const Ai=2147483647,Pn=36,wv=1,Ea=26,Cve=38,Tve=700,US=72,BS=128,zS=\"-\",kve=/^xn--/,Nve=/[^\\0-\\x7F]/,Ave=/[\\x2E\\u3002\\uFF0E\\uFF61]/g,Dve={overflow:\"Overflow: input needs wider integers to process\",\"not-basic\":\"Illegal input >= 0x80 (not a basic code point)\",\"invalid-input\":\"Invalid input\"},kd=Pn-wv,$n=Math.floor,Nd=String.fromCharCode;function xr(e){throw new RangeError(Dve[e])}function Ive(e,t){const n=[];let r=e.length;for(;r--;)n[r]=t(e[r]);return n}function HS(e,t){const n=e.split(\"@\");let r=\"\";n.length>1&&(r=n[0]+\"@\",e=n[1]),e=e.replace(Ave,\".\");const o=e.split(\".\"),i=Ive(o,t).join(\".\");return r+i}function _v(e){const t=[];let n=0;const r=e.length;for(;n<r;){const o=e.charCodeAt(n++);if(o>=55296&&o<=56319&&n<r){const i=e.charCodeAt(n++);(i&64512)==56320?t.push(((o&1023)<<10)+(i&1023)+65536):(t.push(o),n--)}else t.push(o)}return t}const GS=e=>String.fromCodePoint(...e),Rve=function(e){return e>=48&&e<58?26+(e-48):e>=65&&e<91?e-65:e>=97&&e<123?e-97:Pn},sE=function(e,t){return e+22+75*(e<26)-((t!=0)<<5)},WS=function(e,t,n){let r=0;for(e=n?$n(e/Tve):e>>1,e+=$n(e/t);e>kd*Ea>>1;r+=Pn)e=$n(e/kd);return $n(r+(kd+1)*e/(e+Cve))},Sv=function(e){const t=[],n=e.length;let r=0,o=BS,i=US,s=e.lastIndexOf(zS);s<0&&(s=0);for(let a=0;a<s;++a)e.charCodeAt(a)>=128&&xr(\"not-basic\"),t.push(e.charCodeAt(a));for(let a=s>0?s+1:0;a<n;){const l=r;for(let u=1,d=Pn;;d+=Pn){a>=n&&xr(\"invalid-input\");const p=Rve(e.charCodeAt(a++));p>=Pn&&xr(\"invalid-input\"),p>$n((Ai-r)/u)&&xr(\"overflow\"),r+=p*u;const f=d<=i?wv:d>=i+Ea?Ea:d-i;if(p<f)break;const m=Pn-f;u>$n(Ai/m)&&xr(\"overflow\"),u*=m}const c=t.length+1;i=WS(r-l,c,l==0),$n(r/c)>Ai-o&&xr(\"overflow\"),o+=$n(r/c),r%=c,t.splice(r++,0,o)}return String.fromCodePoint(...t)},Cv=function(e){const t=[];e=_v(e);const n=e.length;let r=BS,o=0,i=US;for(const l of e)l<128&&t.push(Nd(l));const s=t.length;let a=s;for(s&&t.push(zS);a<n;){let l=Ai;for(const u of e)u>=r&&u<l&&(l=u);const c=a+1;l-r>$n((Ai-o)/c)&&xr(\"overflow\"),o+=(l-r)*c,r=l;for(const u of e)if(u<r&&++o>Ai&&xr(\"overflow\"),u===r){let d=o;for(let p=Pn;;p+=Pn){const f=p<=i?wv:p>=i+Ea?Ea:p-i;if(d<f)break;const m=d-f,v=Pn-f;t.push(Nd(sE(f+m%v,0))),d=$n(m/v)}t.push(Nd(sE(d,0))),i=WS(o,c,a===s),o=0,++a}++o,++r}return t.join(\"\")},QS=function(e){return HS(e,function(t){return kve.test(t)?Sv(t.slice(4).toLowerCase()):t})},YS=function(e){return HS(e,function(t){return Nve.test(t)?\"xn--\"+Cv(t):t})},Lve={version:\"2.1.0\",ucs2:{decode:_v,encode:GS},decode:Sv,encode:Cv,toASCII:YS,toUnicode:QS},Ove=Object.freeze(Object.defineProperty({__proto__:null,decode:Sv,default:Lve,encode:Cv,toASCII:YS,toUnicode:QS,ucs2decode:_v,ucs2encode:GS},Symbol.toStringTag,{value:\"Module\"})),Pve=W2(Ove);var $ve={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:100},components:{core:{},block:{},inline:{}}},Fve={options:{html:!1,xhtmlOut:!1,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:20},components:{core:{rules:[\"normalize\",\"block\",\"inline\"]},block:{rules:[\"paragraph\"]},inline:{rules:[\"text\"],rules2:[\"balance_pairs\",\"text_collapse\"]}}},Mve={options:{html:!0,xhtmlOut:!0,breaks:!1,langPrefix:\"language-\",linkify:!1,typographer:!1,quotes:\"“”‘’\",highlight:null,maxNesting:20},components:{core:{rules:[\"normalize\",\"block\",\"inline\"]},block:{rules:[\"blockquote\",\"code\",\"fence\",\"heading\",\"hr\",\"html_block\",\"lheading\",\"list\",\"reference\",\"paragraph\"]},inline:{rules:[\"autolink\",\"backticks\",\"emphasis\",\"entity\",\"escape\",\"html_inline\",\"image\",\"link\",\"newline\",\"text\"],rules2:[\"balance_pairs\",\"emphasis\",\"text_collapse\"]}}},Ms=ye,Vve=nf,jve=Mhe,qve=ame,Uve=Vme,Bve=fve,zve=Sve,go=ns,ZS=Pve,Hve={default:$ve,zero:Fve,commonmark:Mve},Gve=/^(vbscript|javascript|file|data):/,Wve=/^data:image\\/(gif|png|jpeg|webp);/;function Qve(e){var t=e.trim().toLowerCase();return Gve.test(t)?!!Wve.test(t):!0}var XS=[\"http:\",\"https:\",\"mailto:\"];function Yve(e){var t=go.parse(e,!0);if(t.hostname&&(!t.protocol||XS.indexOf(t.protocol)>=0))try{t.hostname=ZS.toASCII(t.hostname)}catch{}return go.encode(go.format(t))}function Zve(e){var t=go.parse(e,!0);if(t.hostname&&(!t.protocol||XS.indexOf(t.protocol)>=0))try{t.hostname=ZS.toUnicode(t.hostname)}catch{}return go.decode(go.format(t),go.decode.defaultChars+\"%\")}function sn(e,t){if(!(this instanceof sn))return new sn(e,t);t||Ms.isString(e)||(t=e||{},e=\"default\"),this.inline=new Bve,this.block=new Uve,this.core=new qve,this.renderer=new jve,this.linkify=new zve,this.validateLink=Qve,this.normalizeLink=Yve,this.normalizeLinkText=Zve,this.utils=Ms,this.helpers=Ms.assign({},Vve),this.options={},this.configure(e),t&&this.set(t)}sn.prototype.set=function(e){return Ms.assign(this.options,e),this};sn.prototype.configure=function(e){var t=this,n;if(Ms.isString(e)&&(n=e,e=Hve[n],!e))throw new Error('Wrong `markdown-it` preset \"'+n+'\", check name');if(!e)throw new Error(\"Wrong `markdown-it` preset, can't be empty\");return e.options&&t.set(e.options),e.components&&Object.keys(e.components).forEach(function(r){e.components[r].rules&&t[r].ruler.enableOnly(e.components[r].rules),e.components[r].rules2&&t[r].ruler2.enableOnly(e.components[r].rules2)}),this};sn.prototype.enable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),[\"core\",\"block\",\"inline\"].forEach(function(o){n=n.concat(this[o].ruler.enable(e,!0))},this),n=n.concat(this.inline.ruler2.enable(e,!0));var r=e.filter(function(o){return n.indexOf(o)<0});if(r.length&&!t)throw new Error(\"MarkdownIt. Failed to enable unknown rule(s): \"+r);return this};sn.prototype.disable=function(e,t){var n=[];Array.isArray(e)||(e=[e]),[\"core\",\"block\",\"inline\"].forEach(function(o){n=n.concat(this[o].ruler.disable(e,!0))},this),n=n.concat(this.inline.ruler2.disable(e,!0));var r=e.filter(function(o){return n.indexOf(o)<0});if(r.length&&!t)throw new Error(\"MarkdownIt. Failed to disable unknown rule(s): \"+r);return this};sn.prototype.use=function(e){var t=[this].concat(Array.prototype.slice.call(arguments,1));return e.apply(e,t),this};sn.prototype.parse=function(e,t){if(typeof e!=\"string\")throw new Error(\"Input data should be a String\");var n=new this.core.State(e,this,t);return this.core.process(n),n.tokens};sn.prototype.render=function(e,t){return t=t||{},this.renderer.render(this.parse(e,t),this.options,t)};sn.prototype.parseInline=function(e,t){var n=new this.core.State(e,this,t);return n.inlineMode=!0,this.core.process(n),n.tokens};sn.prototype.renderInline=function(e,t){return t=t||{},this.renderer.render(this.parseInline(e,t),this.options,t)};var Xve=sn,Jve=Xve;const Kve=Wi(Jve);var e0e=\"production\",JS=typeof process>\"u\"||process.env===void 0?e0e:\"production\",Yn=function(e){return{isEnabled:function(t){return e.some(function(n){return!!t[n]})}}},ba={measureLayout:Yn([\"layout\",\"layoutId\",\"drag\"]),animation:Yn([\"animate\",\"exit\",\"variants\",\"whileHover\",\"whileTap\",\"whileFocus\",\"whileDrag\",\"whileInView\"]),exit:Yn([\"exit\"]),drag:Yn([\"drag\",\"dragControls\"]),focus:Yn([\"whileFocus\"]),hover:Yn([\"whileHover\",\"onHoverStart\",\"onHoverEnd\"]),tap:Yn([\"whileTap\",\"onTap\",\"onTapStart\",\"onTapCancel\"]),pan:Yn([\"onPan\",\"onPanStart\",\"onPanSessionStart\",\"onPanEnd\"]),inView:Yn([\"whileInView\",\"onViewportEnter\",\"onViewportLeave\"])};function t0e(e){for(var t in e)e[t]!==null&&(t===\"projectionNodeConstructor\"?ba.projectionNodeConstructor=e[t]:ba[t].Component=e[t])}var n0e=function(){},nu=function(){},KS=h.createContext({strict:!1}),eC=Object.keys(ba),r0e=eC.length;function o0e(e,t,n){var r=[],o=h.useContext(KS);if(!t)return null;JS!==\"production\"&&n&&o.strict;for(var i=0;i<r0e;i++){var s=eC[i],a=ba[s],l=a.isEnabled,c=a.Component;l(e)&&c&&r.push(h.createElement(c,G({key:s},e,{visualElement:t})))}return r}var uf=h.createContext({transformPagePoint:function(e){return e},isStatic:!1,reducedMotion:\"never\"}),ff=h.createContext({});function i0e(){return h.useContext(ff).visualElement}var df=h.createContext(null),is=typeof document<\"u\",Ch=is?h.useLayoutEffect:h.useEffect,Th={current:null},tC=!1;function s0e(){if(tC=!0,!!is)if(window.matchMedia){var e=window.matchMedia(\"(prefers-reduced-motion)\"),t=function(){return Th.current=e.matches};e.addListener(t),t()}else Th.current=!1}function a0e(){!tC&&s0e();var e=Ie(h.useState(Th.current),1),t=e[0];return t}function l0e(){var e=a0e(),t=h.useContext(uf).reducedMotion;return t===\"never\"?!1:t===\"always\"?!0:e}function c0e(e,t,n,r){var o=h.useContext(KS),i=i0e(),s=h.useContext(df),a=l0e(),l=h.useRef(void 0);r||(r=o.renderer),!l.current&&r&&(l.current=r(e,{visualState:t,parent:i,props:n,presenceId:s==null?void 0:s.id,blockInitialAnimation:(s==null?void 0:s.initial)===!1,shouldReduceMotion:a}));var c=l.current;return Ch(function(){c==null||c.syncRender()}),h.useEffect(function(){var u;(u=c==null?void 0:c.animationState)===null||u===void 0||u.animateChanges()}),Ch(function(){return function(){return c==null?void 0:c.notifyUnmount()}},[]),c}function gi(e){return typeof e==\"object\"&&Object.prototype.hasOwnProperty.call(e,\"current\")}function u0e(e,t,n){return h.useCallback(function(r){var o;r&&((o=e.mount)===null||o===void 0||o.call(e,r)),t&&(r?t.mount(r):t.unmount()),n&&(typeof n==\"function\"?n(r):gi(n)&&(n.current=r))},[t])}function nC(e){return Array.isArray(e)}function pn(e){return typeof e==\"string\"||nC(e)}function f0e(e){var t={};return e.forEachValue(function(n,r){return t[r]=n.get()}),t}function d0e(e){var t={};return e.forEachValue(function(n,r){return t[r]=n.getVelocity()}),t}function rC(e,t,n,r,o){var i;return r===void 0&&(r={}),o===void 0&&(o={}),typeof t==\"function\"&&(t=t(n??e.custom,r,o)),typeof t==\"string\"&&(t=(i=e.variants)===null||i===void 0?void 0:i[t]),typeof t==\"function\"&&(t=t(n??e.custom,r,o)),t}function pf(e,t,n){var r=e.getProps();return rC(r,t,n??r.custom,f0e(e),d0e(e))}function hf(e){var t;return typeof((t=e.animate)===null||t===void 0?void 0:t.start)==\"function\"||pn(e.initial)||pn(e.animate)||pn(e.whileHover)||pn(e.whileDrag)||pn(e.whileTap)||pn(e.whileFocus)||pn(e.exit)}function oC(e){return!!(hf(e)||e.variants)}function p0e(e,t){if(hf(e)){var n=e.initial,r=e.animate;return{initial:n===!1||pn(n)?n:void 0,animate:pn(r)?r:void 0}}return e.inherit!==!1?t:{}}function h0e(e){var t=p0e(e,h.useContext(ff)),n=t.initial,r=t.animate;return h.useMemo(function(){return{initial:n,animate:r}},[aE(n),aE(r)])}function aE(e){return Array.isArray(e)?e.join(\" \"):e}function Jr(e){var t=h.useRef(null);return t.current===null&&(t.current=e()),t.current}var Vs={hasAnimatedSinceResize:!0,hasEverUpdated:!1},m0e=1;function v0e(){return Jr(function(){if(Vs.hasEverUpdated)return m0e++})}var iC=h.createContext({}),sC=h.createContext({});function g0e(e,t,n,r){var o,i=t.layoutId,s=t.layout,a=t.drag,l=t.dragConstraints,c=t.layoutScroll,u=h.useContext(sC);!r||!n||n!=null&&n.projection||(n.projection=new r(e,n.getLatestValues(),(o=n.parent)===null||o===void 0?void 0:o.projection),n.projection.setOptions({layoutId:i,layout:s,alwaysMeasureLayout:!!a||l&&gi(l),visualElement:n,scheduleRender:function(){return n.scheduleRender()},animationType:typeof s==\"string\"?s:\"both\",initialPromotionConfig:u,layoutScroll:c}))}var y0e=function(e){M_(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.getSnapshotBeforeUpdate=function(){return this.updateProps(),null},t.prototype.componentDidUpdate=function(){},t.prototype.updateProps=function(){var n=this.props,r=n.visualElement,o=n.props;r&&r.setProps(o)},t.prototype.render=function(){return this.props.children},t}($.Component);function E0e(e){var t=e.preloadedFeatures,n=e.createVisualElement,r=e.projectionNodeConstructor,o=e.useRender,i=e.useVisualState,s=e.Component;t&&t0e(t);function a(l,c){var u=b0e(l);l=G(G({},l),{layoutId:u});var d=h.useContext(uf),p=null,f=h0e(l),m=d.isStatic?void 0:v0e(),v=i(l,d.isStatic);return!d.isStatic&&is&&(f.visualElement=c0e(s,v,G(G({},d),l),n),g0e(m,l,f.visualElement,r||ba.projectionNodeConstructor),p=o0e(l,f.visualElement,t)),h.createElement(y0e,{visualElement:f.visualElement,props:G(G({},d),l)},p,h.createElement(ff.Provider,{value:f},o(s,l,m,u0e(v,f.visualElement,c),v,d.isStatic,f.visualElement)))}return h.forwardRef(a)}function b0e(e){var t,n=e.layoutId,r=(t=h.useContext(iC))===null||t===void 0?void 0:t.id;return r&&n!==void 0?r+\"-\"+n:n}function x0e(e){function t(r,o){return o===void 0&&(o={}),E0e(e(r,o))}if(typeof Proxy>\"u\")return t;var n=new Map;return new Proxy(t,{get:function(r,o){return n.has(o)||n.set(o,t(o)),n.get(o)}})}var w0e=[\"animate\",\"circle\",\"defs\",\"desc\",\"ellipse\",\"g\",\"image\",\"line\",\"filter\",\"marker\",\"mask\",\"metadata\",\"path\",\"pattern\",\"polygon\",\"polyline\",\"rect\",\"stop\",\"svg\",\"switch\",\"symbol\",\"text\",\"tspan\",\"use\",\"view\"];function Tv(e){return typeof e!=\"string\"||e.includes(\"-\")?!1:!!(w0e.indexOf(e)>-1||/[A-Z]/.test(e))}var ru={};function _0e(e){Object.assign(ru,e)}var kh=[\"\",\"X\",\"Y\",\"Z\"],S0e=[\"translate\",\"scale\",\"rotate\",\"skew\"],xa=[\"transformPerspective\",\"x\",\"y\",\"z\"];S0e.forEach(function(e){return kh.forEach(function(t){return xa.push(e+t)})});function C0e(e,t){return xa.indexOf(e)-xa.indexOf(t)}var T0e=new Set(xa);function Ga(e){return T0e.has(e)}var k0e=new Set([\"originX\",\"originY\",\"originZ\"]);function aC(e){return k0e.has(e)}function lC(e,t){var n=t.layout,r=t.layoutId;return Ga(e)||aC(e)||(n||r!==void 0)&&(!!ru[e]||e===\"opacity\")}var Un=function(e){return!!(e!==null&&typeof e==\"object\"&&e.getVelocity)},N0e={x:\"translateX\",y:\"translateY\",z:\"translateZ\",transformPerspective:\"perspective\"};function A0e(e,t,n,r){var o=e.transform,i=e.transformKeys,s=t.enableHardwareAcceleration,a=s===void 0?!0:s,l=t.allowTransformNone,c=l===void 0?!0:l,u=\"\";i.sort(C0e);for(var d=!1,p=i.length,f=0;f<p;f++){var m=i[f];u+=\"\".concat(N0e[m]||m,\"(\").concat(o[m],\") \"),m===\"z\"&&(d=!0)}return!d&&a?u+=\"translateZ(0)\":u=u.trim(),r?u=r(o,n?\"\":u):c&&n&&(u=\"none\"),u}function D0e(e){var t=e.originX,n=t===void 0?\"50%\":t,r=e.originY,o=r===void 0?\"50%\":r,i=e.originZ,s=i===void 0?0:i;return\"\".concat(n,\" \").concat(o,\" \").concat(s)}function cC(e){return e.startsWith(\"--\")}var I0e=function(e,t){return t&&typeof e==\"number\"?t.transform(e):e};const uC=(e,t)=>n=>Math.max(Math.min(n,t),e),js=e=>e%1?Number(e.toFixed(5)):e,wa=/(-)?([\\d]*\\.?[\\d])+/g,Nh=/(#[0-9a-f]{6}|#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))/gi,R0e=/^(#[0-9a-f]{3}|#(?:[0-9a-f]{2}){2,4}|(rgb|hsl)a?\\((-?[\\d\\.]+%?[,\\s]+){2,3}\\s*\\/*\\s*[\\d\\.]+%?\\))$/i;function Wa(e){return typeof e==\"string\"}const Ho={test:e=>typeof e==\"number\",parse:parseFloat,transform:e=>e},qs=Object.assign(Object.assign({},Ho),{transform:uC(0,1)}),$l=Object.assign(Object.assign({},Ho),{default:1}),Qa=e=>({test:t=>Wa(t)&&t.endsWith(e)&&t.split(\" \").length===1,parse:parseFloat,transform:t=>`${t}${e}`}),gr=Qa(\"deg\"),Vn=Qa(\"%\"),re=Qa(\"px\"),L0e=Qa(\"vh\"),O0e=Qa(\"vw\"),lE=Object.assign(Object.assign({},Vn),{parse:e=>Vn.parse(e)/100,transform:e=>Vn.transform(e*100)}),kv=(e,t)=>n=>!!(Wa(n)&&R0e.test(n)&&n.startsWith(e)||t&&Object.prototype.hasOwnProperty.call(n,t)),fC=(e,t,n)=>r=>{if(!Wa(r))return r;const[o,i,s,a]=r.match(wa);return{[e]:parseFloat(o),[t]:parseFloat(i),[n]:parseFloat(s),alpha:a!==void 0?parseFloat(a):1}},yo={test:kv(\"hsl\",\"hue\"),parse:fC(\"hue\",\"saturation\",\"lightness\"),transform:({hue:e,saturation:t,lightness:n,alpha:r=1})=>\"hsla(\"+Math.round(e)+\", \"+Vn.transform(js(t))+\", \"+Vn.transform(js(n))+\", \"+js(qs.transform(r))+\")\"},P0e=uC(0,255),Ad=Object.assign(Object.assign({},Ho),{transform:e=>Math.round(P0e(e))}),Nr={test:kv(\"rgb\",\"red\"),parse:fC(\"red\",\"green\",\"blue\"),transform:({red:e,green:t,blue:n,alpha:r=1})=>\"rgba(\"+Ad.transform(e)+\", \"+Ad.transform(t)+\", \"+Ad.transform(n)+\", \"+js(qs.transform(r))+\")\"};function $0e(e){let t=\"\",n=\"\",r=\"\",o=\"\";return e.length>5?(t=e.substr(1,2),n=e.substr(3,2),r=e.substr(5,2),o=e.substr(7,2)):(t=e.substr(1,1),n=e.substr(2,1),r=e.substr(3,1),o=e.substr(4,1),t+=t,n+=n,r+=r,o+=o),{red:parseInt(t,16),green:parseInt(n,16),blue:parseInt(r,16),alpha:o?parseInt(o,16)/255:1}}const Ah={test:kv(\"#\"),parse:$0e,transform:Nr.transform},Et={test:e=>Nr.test(e)||Ah.test(e)||yo.test(e),parse:e=>Nr.test(e)?Nr.parse(e):yo.test(e)?yo.parse(e):Ah.parse(e),transform:e=>Wa(e)?e:e.hasOwnProperty(\"red\")?Nr.transform(e):yo.transform(e)},dC=\"${c}\",pC=\"${n}\";function F0e(e){var t,n,r,o;return isNaN(e)&&Wa(e)&&((n=(t=e.match(wa))===null||t===void 0?void 0:t.length)!==null&&n!==void 0?n:0)+((o=(r=e.match(Nh))===null||r===void 0?void 0:r.length)!==null&&o!==void 0?o:0)>0}function hC(e){typeof e==\"number\"&&(e=`${e}`);const t=[];let n=0;const r=e.match(Nh);r&&(n=r.length,e=e.replace(Nh,dC),t.push(...r.map(Et.parse)));const o=e.match(wa);return o&&(e=e.replace(wa,pC),t.push(...o.map(Ho.parse))),{values:t,numColors:n,tokenised:e}}function mC(e){return hC(e).values}function vC(e){const{values:t,numColors:n,tokenised:r}=hC(e),o=t.length;return i=>{let s=r;for(let a=0;a<o;a++)s=s.replace(a<n?dC:pC,a<n?Et.transform(i[a]):js(i[a]));return s}}const M0e=e=>typeof e==\"number\"?0:e;function V0e(e){const t=mC(e);return vC(e)(t.map(M0e))}const fr={test:F0e,parse:mC,createTransformer:vC,getAnimatableNone:V0e},j0e=new Set([\"brightness\",\"contrast\",\"saturate\",\"opacity\"]);function q0e(e){let[t,n]=e.slice(0,-1).split(\"(\");if(t===\"drop-shadow\")return e;const[r]=n.match(wa)||[];if(!r)return e;const o=n.replace(r,\"\");let i=j0e.has(t)?1:0;return r!==n&&(i*=100),t+\"(\"+i+o+\")\"}const U0e=/([a-z-]*)\\(.*?\\)/g,Dh=Object.assign(Object.assign({},fr),{getAnimatableNone:e=>{const t=e.match(U0e);return t?t.map(q0e).join(\" \"):e}});var cE=G(G({},Ho),{transform:Math.round}),gC={borderWidth:re,borderTopWidth:re,borderRightWidth:re,borderBottomWidth:re,borderLeftWidth:re,borderRadius:re,radius:re,borderTopLeftRadius:re,borderTopRightRadius:re,borderBottomRightRadius:re,borderBottomLeftRadius:re,width:re,maxWidth:re,height:re,maxHeight:re,size:re,top:re,right:re,bottom:re,left:re,padding:re,paddingTop:re,paddingRight:re,paddingBottom:re,paddingLeft:re,margin:re,marginTop:re,marginRight:re,marginBottom:re,marginLeft:re,rotate:gr,rotateX:gr,rotateY:gr,rotateZ:gr,scale:$l,scaleX:$l,scaleY:$l,scaleZ:$l,skew:gr,skewX:gr,skewY:gr,distance:re,translateX:re,translateY:re,translateZ:re,x:re,y:re,z:re,perspective:re,transformPerspective:re,opacity:qs,originX:lE,originY:lE,originZ:re,zIndex:cE,fillOpacity:qs,strokeOpacity:qs,numOctaves:cE};function Nv(e,t,n,r){var o,i=e.style,s=e.vars,a=e.transform,l=e.transformKeys,c=e.transformOrigin;l.length=0;var u=!1,d=!1,p=!0;for(var f in t){var m=t[f];if(cC(f)){s[f]=m;continue}var v=gC[f],b=I0e(m,v);if(Ga(f)){if(u=!0,a[f]=b,l.push(f),!p)continue;m!==((o=v.default)!==null&&o!==void 0?o:0)&&(p=!1)}else aC(f)?(c[f]=b,d=!0):i[f]=b}u?i.transform=A0e(e,n,p,r):r?i.transform=r({},\"\"):!t.transform&&i.transform&&(i.transform=\"none\"),d&&(i.transformOrigin=D0e(c))}var Av=function(){return{style:{},transform:{},transformKeys:[],transformOrigin:{},vars:{}}};function yC(e,t,n){for(var r in t)!Un(t[r])&&!lC(r,n)&&(e[r]=t[r])}function B0e(e,t,n){var r=e.transformTemplate;return h.useMemo(function(){var o=Av();Nv(o,t,{enableHardwareAcceleration:!n},r);var i=o.vars,s=o.style;return G(G({},i),s)},[t])}function z0e(e,t,n){var r=e.style||{},o={};return yC(o,r,e),Object.assign(o,B0e(e,t,n)),e.transformValues&&(o=e.transformValues(o)),o}function H0e(e,t,n){var r={},o=z0e(e,t,n);return e.drag&&e.dragListener!==!1&&(r.draggable=!1,o.userSelect=o.WebkitUserSelect=o.WebkitTouchCallout=\"none\",o.touchAction=e.drag===!0?\"none\":\"pan-\".concat(e.drag===\"x\"?\"y\":\"x\")),r.style=o,r}var G0e=new Set([\"initial\",\"animate\",\"exit\",\"style\",\"variants\",\"transition\",\"transformTemplate\",\"transformValues\",\"custom\",\"inherit\",\"layout\",\"layoutId\",\"layoutDependency\",\"onLayoutAnimationStart\",\"onLayoutAnimationComplete\",\"onLayoutMeasure\",\"onBeforeLayoutMeasure\",\"onAnimationStart\",\"onAnimationComplete\",\"onUpdate\",\"onDragStart\",\"onDrag\",\"onDragEnd\",\"onMeasureDragConstraints\",\"onDirectionLock\",\"onDragTransitionEnd\",\"drag\",\"dragControls\",\"dragListener\",\"dragConstraints\",\"dragDirectionLock\",\"dragSnapToOrigin\",\"_dragX\",\"_dragY\",\"dragElastic\",\"dragMomentum\",\"dragPropagation\",\"dragTransition\",\"whileDrag\",\"onPan\",\"onPanStart\",\"onPanEnd\",\"onPanSessionStart\",\"onTap\",\"onTapStart\",\"onTapCancel\",\"onHoverStart\",\"onHoverEnd\",\"whileFocus\",\"whileTap\",\"whileHover\",\"whileInView\",\"onViewportEnter\",\"onViewportLeave\",\"viewport\",\"layoutScroll\"]);function ou(e){return G0e.has(e)}var EC=function(e){return!ou(e)};function W0e(e){e&&(EC=function(t){return t.startsWith(\"on\")?!ou(t):e(t)})}try{W0e(require(\"@emotion/is-prop-valid\").default)}catch{}function Q0e(e,t,n){var r={};for(var o in e)(EC(o)||n===!0&&ou(o)||!t&&!ou(o)||e.draggable&&o.startsWith(\"onDrag\"))&&(r[o]=e[o]);return r}function uE(e,t,n){return typeof e==\"string\"?e:re.transform(t+n*e)}function Y0e(e,t,n){var r=uE(t,e.x,e.width),o=uE(n,e.y,e.height);return\"\".concat(r,\" \").concat(o)}var Z0e={offset:\"stroke-dashoffset\",array:\"stroke-dasharray\"},X0e={offset:\"strokeDashoffset\",array:\"strokeDasharray\"};function J0e(e,t,n,r,o){n===void 0&&(n=1),r===void 0&&(r=0),o===void 0&&(o=!0),e.pathLength=1;var i=o?Z0e:X0e;e[i.offset]=re.transform(-r);var s=re.transform(t),a=re.transform(n);e[i.array]=\"\".concat(s,\" \").concat(a)}function Dv(e,t,n,r){var o=t.attrX,i=t.attrY,s=t.originX,a=t.originY,l=t.pathLength,c=t.pathSpacing,u=c===void 0?1:c,d=t.pathOffset,p=d===void 0?0:d,f=yt(t,[\"attrX\",\"attrY\",\"originX\",\"originY\",\"pathLength\",\"pathSpacing\",\"pathOffset\"]);Nv(e,f,n,r),e.attrs=e.style,e.style={};var m=e.attrs,v=e.style,b=e.dimensions;m.transform&&(b&&(v.transform=m.transform),delete m.transform),b&&(s!==void 0||a!==void 0||v.transform)&&(v.transformOrigin=Y0e(b,s!==void 0?s:.5,a!==void 0?a:.5)),o!==void 0&&(m.x=o),i!==void 0&&(m.y=i),l!==void 0&&J0e(m,l,u,p,!1)}var bC=function(){return G(G({},Av()),{attrs:{}})};function K0e(e,t){var n=h.useMemo(function(){var o=bC();return Dv(o,t,{enableHardwareAcceleration:!1},e.transformTemplate),G(G({},o.attrs),{style:G({},o.style)})},[t]);if(e.style){var r={};yC(r,e.style,e),n.style=G(G({},r),n.style)}return n}function ege(e){e===void 0&&(e=!1);var t=function(n,r,o,i,s,a){var l=s.latestValues,c=Tv(n)?K0e:H0e,u=c(r,l,a),d=Q0e(r,typeof n==\"string\",e),p=G(G(G({},d),u),{ref:i});return o&&(p[\"data-projection-id\"]=o),h.createElement(n,p)};return t}var tge=/([a-z])([A-Z])/g,nge=\"$1-$2\",xC=function(e){return e.replace(tge,nge).toLowerCase()};function wC(e,t,n,r){var o=t.style,i=t.vars;Object.assign(e.style,o,r&&r.getProjectionStyles(n));for(var s in i)e.style.setProperty(s,i[s])}var _C=new Set([\"baseFrequency\",\"diffuseConstant\",\"kernelMatrix\",\"kernelUnitLength\",\"keySplines\",\"keyTimes\",\"limitingConeAngle\",\"markerHeight\",\"markerWidth\",\"numOctaves\",\"targetX\",\"targetY\",\"surfaceScale\",\"specularConstant\",\"specularExponent\",\"stdDeviation\",\"tableValues\",\"viewBox\",\"gradientTransform\",\"pathLength\"]);function SC(e,t,n,r){wC(e,t,void 0,r);for(var o in t.attrs)e.setAttribute(_C.has(o)?o:xC(o),t.attrs[o])}function Iv(e){var t=e.style,n={};for(var r in t)(Un(t[r])||lC(r,e))&&(n[r]=t[r]);return n}function CC(e){var t=Iv(e);for(var n in e)if(Un(e[n])){var r=n===\"x\"||n===\"y\"?\"attr\"+n.toUpperCase():n;t[r]=e[n]}return t}function Rv(e){return typeof e==\"object\"&&typeof e.start==\"function\"}var _a=function(e){return Array.isArray(e)},rge=function(e){return!!(e&&typeof e==\"object\"&&e.mix&&e.toValue)},TC=function(e){return _a(e)?e[e.length-1]||0:e};function dc(e){var t=Un(e)?e.get():e;return rge(t)?t.toValue():t}function fE(e,t,n,r){var o=e.scrapeMotionValuesFromProps,i=e.createRenderState,s=e.onMount,a={latestValues:oge(t,n,r,o),renderState:i()};return s&&(a.mount=function(l){return s(t,l,a)}),a}var kC=function(e){return function(t,n){var r=h.useContext(ff),o=h.useContext(df);return n?fE(e,t,r,o):Jr(function(){return fE(e,t,r,o)})}};function oge(e,t,n,r){var o={},i=(n==null?void 0:n.initial)===!1,s=r(e);for(var a in s)o[a]=dc(s[a]);var l=e.initial,c=e.animate,u=hf(e),d=oC(e);t&&d&&!u&&e.inherit!==!1&&(l??(l=t.initial),c??(c=t.animate));var p=i||l===!1,f=p?c:l;if(f&&typeof f!=\"boolean\"&&!Rv(f)){var m=Array.isArray(f)?f:[f];m.forEach(function(v){var b=rC(e,v);if(b){var y=b.transitionEnd;b.transition;var g=yt(b,[\"transitionEnd\",\"transition\"]);for(var E in g){var x=g[E];if(Array.isArray(x)){var w=p?x.length-1:0;x=x[w]}x!==null&&(o[E]=x)}for(var E in y)o[E]=y[E]}})}return o}var ige={useVisualState:kC({scrapeMotionValuesFromProps:CC,createRenderState:bC,onMount:function(e,t,n){var r=n.renderState,o=n.latestValues;try{r.dimensions=typeof t.getBBox==\"function\"?t.getBBox():t.getBoundingClientRect()}catch{r.dimensions={x:0,y:0,width:0,height:0}}Dv(r,o,{enableHardwareAcceleration:!1},e.transformTemplate),SC(t,r)}})},sge={useVisualState:kC({scrapeMotionValuesFromProps:Iv,createRenderState:Av})};function age(e,t,n,r,o){var i=t.forwardMotionProps,s=i===void 0?!1:i,a=Tv(e)?ige:sge;return G(G({},a),{preloadedFeatures:n,useRender:ege(s),createVisualElement:r,projectionNodeConstructor:o,Component:e})}var Se;(function(e){e.Animate=\"animate\",e.Hover=\"whileHover\",e.Tap=\"whileTap\",e.Drag=\"whileDrag\",e.Focus=\"whileFocus\",e.InView=\"whileInView\",e.Exit=\"exit\"})(Se||(Se={}));function mf(e,t,n,r){return r===void 0&&(r={passive:!0}),e.addEventListener(t,n,r),function(){return e.removeEventListener(t,n)}}function Ih(e,t,n,r){h.useEffect(function(){var o=e.current;if(n&&o)return mf(o,t,n,r)},[e,t,n,r])}function lge(e){var t=e.whileFocus,n=e.visualElement,r=function(){var i;(i=n.animationState)===null||i===void 0||i.setActive(Se.Focus,!0)},o=function(){var i;(i=n.animationState)===null||i===void 0||i.setActive(Se.Focus,!1)};Ih(n,\"focus\",t?r:void 0),Ih(n,\"blur\",t?o:void 0)}function NC(e){return typeof PointerEvent<\"u\"&&e instanceof PointerEvent?e.pointerType===\"mouse\":e instanceof MouseEvent}function AC(e){var t=!!e.touches;return t}function cge(e){return function(t){var n=t instanceof MouseEvent,r=!n||n&&t.button===0;r&&e(t)}}var uge={pageX:0,pageY:0};function fge(e,t){t===void 0&&(t=\"page\");var n=e.touches[0]||e.changedTouches[0],r=n||uge;return{x:r[t+\"X\"],y:r[t+\"Y\"]}}function dge(e,t){return t===void 0&&(t=\"page\"),{x:e[t+\"X\"],y:e[t+\"Y\"]}}function Lv(e,t){return t===void 0&&(t=\"page\"),{point:AC(e)?fge(e,t):dge(e,t)}}var DC=function(e,t){t===void 0&&(t=!1);var n=function(r){return e(r,Lv(r))};return t?cge(n):n},pge=function(){return is&&window.onpointerdown===null},hge=function(){return is&&window.ontouchstart===null},mge=function(){return is&&window.onmousedown===null},vge={pointerdown:\"mousedown\",pointermove:\"mousemove\",pointerup:\"mouseup\",pointercancel:\"mousecancel\",pointerover:\"mouseover\",pointerout:\"mouseout\",pointerenter:\"mouseenter\",pointerleave:\"mouseleave\"},gge={pointerdown:\"touchstart\",pointermove:\"touchmove\",pointerup:\"touchend\",pointercancel:\"touchcancel\"};function IC(e){return pge()?e:hge()?gge[e]:mge()?vge[e]:e}function Di(e,t,n,r){return mf(e,IC(t),DC(n,t===\"pointerdown\"),r)}function iu(e,t,n,r){return Ih(e,IC(t),n&&DC(n,t===\"pointerdown\"),r)}function RC(e){var t=null;return function(){var n=function(){t=null};return t===null?(t=e,n):!1}}var dE=RC(\"dragHorizontal\"),pE=RC(\"dragVertical\");function LC(e){var t=!1;if(e===\"y\")t=pE();else if(e===\"x\")t=dE();else{var n=dE(),r=pE();n&&r?t=function(){n(),r()}:(n&&n(),r&&r())}return t}function OC(){var e=LC(!0);return e?(e(),!1):!0}function hE(e,t,n){return function(r,o){var i;!NC(r)||OC()||((i=e.animationState)===null||i===void 0||i.setActive(Se.Hover,t),n==null||n(r,o))}}function yge(e){var t=e.onHoverStart,n=e.onHoverEnd,r=e.whileHover,o=e.visualElement;iu(o,\"pointerenter\",t||r?hE(o,!0,t):void 0,{passive:!t}),iu(o,\"pointerleave\",n||r?hE(o,!1,n):void 0,{passive:!n})}var PC=function(e,t){return t?e===t?!0:PC(e,t.parentElement):!1};function $C(e){return h.useEffect(function(){return function(){return e()}},[])}const su=(e,t,n)=>Math.min(Math.max(n,e),t),Dd=.001,Ege=.01,mE=10,bge=.05,xge=1;function wge({duration:e=800,bounce:t=.25,velocity:n=0,mass:r=1}){let o,i;n0e(e<=mE*1e3);let s=1-t;s=su(bge,xge,s),e=su(Ege,mE,e/1e3),s<1?(o=c=>{const u=c*s,d=u*e,p=u-n,f=Rh(c,s),m=Math.exp(-d);return Dd-p/f*m},i=c=>{const d=c*s*e,p=d*n+n,f=Math.pow(s,2)*Math.pow(c,2)*e,m=Math.exp(-d),v=Rh(Math.pow(c,2),s);return(-o(c)+Dd>0?-1:1)*((p-f)*m)/v}):(o=c=>{const u=Math.exp(-c*e),d=(c-n)*e+1;return-Dd+u*d},i=c=>{const u=Math.exp(-c*e),d=(n-c)*(e*e);return u*d});const a=5/e,l=Sge(o,i,a);if(e=e*1e3,isNaN(l))return{stiffness:100,damping:10,duration:e};{const c=Math.pow(l,2)*r;return{stiffness:c,damping:s*2*Math.sqrt(r*c),duration:e}}}const _ge=12;function Sge(e,t,n){let r=n;for(let o=1;o<_ge;o++)r=r-e(r)/t(r);return r}function Rh(e,t){return e*Math.sqrt(1-t*t)}const Cge=[\"duration\",\"bounce\"],Tge=[\"stiffness\",\"damping\",\"mass\"];function vE(e,t){return t.some(n=>e[n]!==void 0)}function kge(e){let t=Object.assign({velocity:0,stiffness:100,damping:10,mass:1,isResolvedFromDuration:!1},e);if(!vE(e,Tge)&&vE(e,Cge)){const n=wge(e);t=Object.assign(Object.assign(Object.assign({},t),n),{velocity:0,mass:1}),t.isResolvedFromDuration=!0}return t}function Ov(e){var{from:t=0,to:n=1,restSpeed:r=2,restDelta:o}=e,i=yt(e,[\"from\",\"to\",\"restSpeed\",\"restDelta\"]);const s={done:!1,value:t};let{stiffness:a,damping:l,mass:c,velocity:u,duration:d,isResolvedFromDuration:p}=kge(i),f=gE,m=gE;function v(){const b=u?-(u/1e3):0,y=n-t,g=l/(2*Math.sqrt(a*c)),E=Math.sqrt(a/c)/1e3;if(o===void 0&&(o=Math.min(Math.abs(n-t)/100,.4)),g<1){const x=Rh(E,g);f=w=>{const C=Math.exp(-g*E*w);return n-C*((b+g*E*y)/x*Math.sin(x*w)+y*Math.cos(x*w))},m=w=>{const C=Math.exp(-g*E*w);return g*E*C*(Math.sin(x*w)*(b+g*E*y)/x+y*Math.cos(x*w))-C*(Math.cos(x*w)*(b+g*E*y)-x*y*Math.sin(x*w))}}else if(g===1)f=x=>n-Math.exp(-E*x)*(y+(b+E*y)*x);else{const x=E*Math.sqrt(g*g-1);f=w=>{const C=Math.exp(-g*E*w),T=Math.min(x*w,300);return n-C*((b+g*E*y)*Math.sinh(T)+x*y*Math.cosh(T))/x}}}return v(),{next:b=>{const y=f(b);if(p)s.done=b>=d;else{const g=m(b)*1e3,E=Math.abs(g)<=r,x=Math.abs(n-y)<=o;s.done=E&&x}return s.value=s.done?n:y,s},flipTarget:()=>{u=-u,[t,n]=[n,t],v()}}}Ov.needsInterpolation=(e,t)=>typeof e==\"string\"||typeof t==\"string\";const gE=e=>0,Sa=(e,t,n)=>{const r=t-e;return r===0?1:(n-e)/r},Oe=(e,t,n)=>-n*e+n*t+e;function Id(e,t,n){return n<0&&(n+=1),n>1&&(n-=1),n<1/6?e+(t-e)*6*n:n<1/2?t:n<2/3?e+(t-e)*(2/3-n)*6:e}function yE({hue:e,saturation:t,lightness:n,alpha:r}){e/=360,t/=100,n/=100;let o=0,i=0,s=0;if(!t)o=i=s=n;else{const a=n<.5?n*(1+t):n+t-n*t,l=2*n-a;o=Id(l,a,e+1/3),i=Id(l,a,e),s=Id(l,a,e-1/3)}return{red:Math.round(o*255),green:Math.round(i*255),blue:Math.round(s*255),alpha:r}}const Nge=(e,t,n)=>{const r=e*e,o=t*t;return Math.sqrt(Math.max(0,n*(o-r)+r))},Age=[Ah,Nr,yo],EE=e=>Age.find(t=>t.test(e)),FC=(e,t)=>{let n=EE(e),r=EE(t),o=n.parse(e),i=r.parse(t);n===yo&&(o=yE(o),n=Nr),r===yo&&(i=yE(i),r=Nr);const s=Object.assign({},o);return a=>{for(const l in s)l!==\"alpha\"&&(s[l]=Nge(o[l],i[l],a));return s.alpha=Oe(o.alpha,i.alpha,a),n.transform(s)}},Lh=e=>typeof e==\"number\",Dge=(e,t)=>n=>t(e(n)),vf=(...e)=>e.reduce(Dge);function MC(e,t){return Lh(e)?n=>Oe(e,t,n):Et.test(e)?FC(e,t):jC(e,t)}const VC=(e,t)=>{const n=[...e],r=n.length,o=e.map((i,s)=>MC(i,t[s]));return i=>{for(let s=0;s<r;s++)n[s]=o[s](i);return n}},Ige=(e,t)=>{const n=Object.assign(Object.assign({},e),t),r={};for(const o in n)e[o]!==void 0&&t[o]!==void 0&&(r[o]=MC(e[o],t[o]));return o=>{for(const i in r)n[i]=r[i](o);return n}};function bE(e){const t=fr.parse(e),n=t.length;let r=0,o=0,i=0;for(let s=0;s<n;s++)r||typeof t[s]==\"number\"?r++:t[s].hue!==void 0?i++:o++;return{parsed:t,numNumbers:r,numRGB:o,numHSL:i}}const jC=(e,t)=>{const n=fr.createTransformer(t),r=bE(e),o=bE(t);return r.numHSL===o.numHSL&&r.numRGB===o.numRGB&&r.numNumbers>=o.numNumbers?vf(VC(r.parsed,o.parsed),n):s=>`${s>0?t:e}`},Rge=(e,t)=>n=>Oe(e,t,n);function Lge(e){if(typeof e==\"number\")return Rge;if(typeof e==\"string\")return Et.test(e)?FC:jC;if(Array.isArray(e))return VC;if(typeof e==\"object\")return Ige}function Oge(e,t,n){const r=[],o=n||Lge(e[0]),i=e.length-1;for(let s=0;s<i;s++){let a=o(e[s],e[s+1]);if(t){const l=Array.isArray(t)?t[s]:t;a=vf(l,a)}r.push(a)}return r}function Pge([e,t],[n]){return r=>n(Sa(e,t,r))}function $ge(e,t){const n=e.length,r=n-1;return o=>{let i=0,s=!1;if(o<=e[0]?s=!0:o>=e[r]&&(i=r-1,s=!0),!s){let l=1;for(;l<n&&!(e[l]>o||l===r);l++);i=l-1}const a=Sa(e[i],e[i+1],o);return t[i](a)}}function Pv(e,t,{clamp:n=!0,ease:r,mixer:o}={}){const i=e.length;nu(i===t.length),nu(!r||!Array.isArray(r)||r.length===i-1),e[0]>e[i-1]&&(e=[].concat(e),t=[].concat(t),e.reverse(),t.reverse());const s=Oge(t,r,o),a=i===2?Pge(e,s):$ge(e,s);return n?l=>a(su(e[0],e[i-1],l)):a}const gf=e=>t=>1-e(1-t),$v=e=>t=>t<=.5?e(2*t)/2:(2-e(2*(1-t)))/2,Fge=e=>t=>Math.pow(t,e),qC=e=>t=>t*t*((e+1)*t-e),Mge=e=>{const t=qC(e);return n=>(n*=2)<1?.5*t(n):.5*(2-Math.pow(2,-10*(n-1)))},UC=1.525,Vge=4/11,jge=8/11,qge=9/10,Fv=e=>e,Mv=Fge(2),Uge=gf(Mv),BC=$v(Mv),zC=e=>1-Math.sin(Math.acos(e)),Vv=gf(zC),Bge=$v(Vv),jv=qC(UC),zge=gf(jv),Hge=$v(jv),Gge=Mge(UC),Wge=4356/361,Qge=35442/1805,Yge=16061/1805,au=e=>{if(e===1||e===0)return e;const t=e*e;return e<Vge?7.5625*t:e<jge?9.075*t-9.9*e+3.4:e<qge?Wge*t-Qge*e+Yge:10.8*e*e-20.52*e+10.72},Zge=gf(au),Xge=e=>e<.5?.5*(1-au(1-e*2)):.5*au(e*2-1)+.5;function Jge(e,t){return e.map(()=>t||BC).splice(0,e.length-1)}function Kge(e){const t=e.length;return e.map((n,r)=>r!==0?r/(t-1):0)}function eye(e,t){return e.map(n=>n*t)}function pc({from:e=0,to:t=1,ease:n,offset:r,duration:o=300}){const i={done:!1,value:e},s=Array.isArray(t)?t:[e,t],a=eye(r&&r.length===s.length?r:Kge(s),o);function l(){return Pv(a,s,{ease:Array.isArray(n)?n:Jge(s,n)})}let c=l();return{next:u=>(i.value=c(u),i.done=u>=o,i),flipTarget:()=>{s.reverse(),c=l()}}}function tye({velocity:e=0,from:t=0,power:n=.8,timeConstant:r=350,restDelta:o=.5,modifyTarget:i}){const s={done:!1,value:t};let a=n*e;const l=t+a,c=i===void 0?l:i(l);return c!==l&&(a=c-t),{next:u=>{const d=-a*Math.exp(-u/r);return s.done=!(d>o||d<-o),s.value=s.done?c:c+d,s},flipTarget:()=>{}}}const xE={keyframes:pc,spring:Ov,decay:tye};function nye(e){if(Array.isArray(e.to))return pc;if(xE[e.type])return xE[e.type];const t=new Set(Object.keys(e));return t.has(\"ease\")||t.has(\"duration\")&&!t.has(\"dampingRatio\")?pc:t.has(\"dampingRatio\")||t.has(\"stiffness\")||t.has(\"mass\")||t.has(\"damping\")||t.has(\"restSpeed\")||t.has(\"restDelta\")?Ov:pc}const HC=1/60*1e3,rye=typeof performance<\"u\"?()=>performance.now():()=>Date.now(),GC=typeof window<\"u\"?e=>window.requestAnimationFrame(e):e=>setTimeout(()=>e(rye()),HC);function oye(e){let t=[],n=[],r=0,o=!1,i=!1;const s=new WeakSet,a={schedule:(l,c=!1,u=!1)=>{const d=u&&o,p=d?t:n;return c&&s.add(l),p.indexOf(l)===-1&&(p.push(l),d&&o&&(r=t.length)),l},cancel:l=>{const c=n.indexOf(l);c!==-1&&n.splice(c,1),s.delete(l)},process:l=>{if(o){i=!0;return}if(o=!0,[t,n]=[n,t],n.length=0,r=t.length,r)for(let c=0;c<r;c++){const u=t[c];u(l),s.has(u)&&(a.schedule(u),e())}o=!1,i&&(i=!1,a.process(l))}};return a}const iye=40;let Oh=!0,Ca=!1,Ph=!1;const Ii={delta:0,timestamp:0},Ya=[\"read\",\"update\",\"preRender\",\"render\",\"postRender\"],yf=Ya.reduce((e,t)=>(e[t]=oye(()=>Ca=!0),e),{}),Sn=Ya.reduce((e,t)=>{const n=yf[t];return e[t]=(r,o=!1,i=!1)=>(Ca||aye(),n.schedule(r,o,i)),e},{}),Gi=Ya.reduce((e,t)=>(e[t]=yf[t].cancel,e),{}),Rd=Ya.reduce((e,t)=>(e[t]=()=>yf[t].process(Ii),e),{}),sye=e=>yf[e].process(Ii),WC=e=>{Ca=!1,Ii.delta=Oh?HC:Math.max(Math.min(e-Ii.timestamp,iye),1),Ii.timestamp=e,Ph=!0,Ya.forEach(sye),Ph=!1,Ca&&(Oh=!1,GC(WC))},aye=()=>{Ca=!0,Oh=!0,Ph||GC(WC)},lu=()=>Ii;function QC(e,t,n=0){return e-t-n}function lye(e,t,n=0,r=!0){return r?QC(t+-e,t,n):t-(e-t)+n}function cye(e,t,n,r){return r?e>=t+n:e<=-n}const uye=e=>{const t=({delta:n})=>e(n);return{start:()=>Sn.update(t,!0),stop:()=>Gi.update(t)}};function YC(e){var t,n,{from:r,autoplay:o=!0,driver:i=uye,elapsed:s=0,repeat:a=0,repeatType:l=\"loop\",repeatDelay:c=0,onPlay:u,onStop:d,onComplete:p,onRepeat:f,onUpdate:m}=e,v=yt(e,[\"from\",\"autoplay\",\"driver\",\"elapsed\",\"repeat\",\"repeatType\",\"repeatDelay\",\"onPlay\",\"onStop\",\"onComplete\",\"onRepeat\",\"onUpdate\"]);let{to:b}=v,y,g=0,E=v.duration,x,w=!1,C=!0,T;const A=nye(v);!((n=(t=A).needsInterpolation)===null||n===void 0)&&n.call(t,r,b)&&(T=Pv([0,100],[r,b],{clamp:!1}),r=0,b=100);const S=A(Object.assign(Object.assign({},v),{from:r,to:b}));function k(){g++,l===\"reverse\"?(C=g%2===0,s=lye(s,E,c,C)):(s=QC(s,E,c),l===\"mirror\"&&S.flipTarget()),w=!1,f&&f()}function q(){y.stop(),p&&p()}function H(N){if(C||(N=-N),s+=N,!w){const M=S.next(Math.max(0,s));x=M.value,T&&(x=T(x)),w=C?M.done:s<=0}m==null||m(x),w&&(g===0&&(E??(E=s)),g<a?cye(s,E,c,C)&&k():q())}function V(){u==null||u(),y=i(H),y.start()}return o&&V(),{stop:()=>{d==null||d(),y.stop()}}}function ZC(e,t){return t?e*(1e3/t):0}function fye({from:e=0,velocity:t=0,min:n,max:r,power:o=.8,timeConstant:i=750,bounceStiffness:s=500,bounceDamping:a=10,restDelta:l=1,modifyTarget:c,driver:u,onUpdate:d,onComplete:p,onStop:f}){let m;function v(E){return n!==void 0&&E<n||r!==void 0&&E>r}function b(E){return n===void 0?r:r===void 0||Math.abs(n-E)<Math.abs(r-E)?n:r}function y(E){m==null||m.stop(),m=YC(Object.assign(Object.assign({},E),{driver:u,onUpdate:x=>{var w;d==null||d(x),(w=E.onUpdate)===null||w===void 0||w.call(E,x)},onComplete:p,onStop:f}))}function g(E){y(Object.assign({type:\"spring\",stiffness:s,damping:a,restDelta:l},E))}if(v(e))g({from:e,velocity:t,to:b(e)});else{let E=o*t+e;typeof c<\"u\"&&(E=c(E));const x=b(E),w=x===n?-1:1;let C,T;const A=S=>{C=T,T=S,t=ZC(S-C,lu().delta),(w===1&&S>x||w===-1&&S<x)&&g({from:S,to:x,velocity:t})};y({type:\"decay\",from:e,velocity:t,timeConstant:i,power:o,restDelta:l,modifyTarget:c,onUpdate:v(E)?A:void 0})}return{stop:()=>m==null?void 0:m.stop()}}const $h=e=>e.hasOwnProperty(\"x\")&&e.hasOwnProperty(\"y\"),wE=e=>$h(e)&&e.hasOwnProperty(\"z\"),Fl=(e,t)=>Math.abs(e-t);function XC(e,t){if(Lh(e)&&Lh(t))return Fl(e,t);if($h(e)&&$h(t)){const n=Fl(e.x,t.x),r=Fl(e.y,t.y),o=wE(e)&&wE(t)?Fl(e.z,t.z):0;return Math.sqrt(Math.pow(n,2)+Math.pow(r,2)+Math.pow(o,2))}}const JC=(e,t)=>1-3*t+3*e,KC=(e,t)=>3*t-6*e,eT=e=>3*e,cu=(e,t,n)=>((JC(t,n)*e+KC(t,n))*e+eT(t))*e,tT=(e,t,n)=>3*JC(t,n)*e*e+2*KC(t,n)*e+eT(t),dye=1e-7,pye=10;function hye(e,t,n,r,o){let i,s,a=0;do s=t+(n-t)/2,i=cu(s,r,o)-e,i>0?n=s:t=s;while(Math.abs(i)>dye&&++a<pye);return s}const mye=8,vye=.001;function gye(e,t,n,r){for(let o=0;o<mye;++o){const i=tT(t,n,r);if(i===0)return t;const s=cu(t,n,r)-e;t-=s/i}return t}const hc=11,Ml=1/(hc-1);function yye(e,t,n,r){if(e===t&&n===r)return Fv;const o=new Float32Array(hc);for(let s=0;s<hc;++s)o[s]=cu(s*Ml,e,n);function i(s){let a=0,l=1;const c=hc-1;for(;l!==c&&o[l]<=s;++l)a+=Ml;--l;const u=(s-o[l])/(o[l+1]-o[l]),d=a+u*Ml,p=tT(d,e,n);return p>=vye?gye(s,d,e,n):p===0?d:hye(s,a,a+Ml,e,n)}return s=>s===0||s===1?s:cu(i(s),t,r)}function Eye(e){var t=e.onTap,n=e.onTapStart,r=e.onTapCancel,o=e.whileTap,i=e.visualElement,s=t||n||r||o,a=h.useRef(!1),l=h.useRef(null),c={passive:!(n||t||r||m)};function u(){var v;(v=l.current)===null||v===void 0||v.call(l),l.current=null}function d(){var v;return u(),a.current=!1,(v=i.animationState)===null||v===void 0||v.setActive(Se.Tap,!1),!OC()}function p(v,b){d()&&(PC(i.getInstance(),v.target)?t==null||t(v,b):r==null||r(v,b))}function f(v,b){d()&&(r==null||r(v,b))}function m(v,b){var y;u(),!a.current&&(a.current=!0,l.current=vf(Di(window,\"pointerup\",p,c),Di(window,\"pointercancel\",f,c)),(y=i.animationState)===null||y===void 0||y.setActive(Se.Tap,!0),n==null||n(v,b))}iu(i,\"pointerdown\",s?m:void 0,c),$C(u)}var _E=new Set;function bye(e,t,n){e||_E.has(t)||(console.warn(t),n&&console.warn(n),_E.add(t))}var Fh=new WeakMap,Ld=new WeakMap,xye=function(e){var t;(t=Fh.get(e.target))===null||t===void 0||t(e)},wye=function(e){e.forEach(xye)};function _ye(e){var t=e.root,n=yt(e,[\"root\"]),r=t||document;Ld.has(r)||Ld.set(r,{});var o=Ld.get(r),i=JSON.stringify(n);return o[i]||(o[i]=new IntersectionObserver(wye,G({root:t},n))),o[i]}function Sye(e,t,n){var r=_ye(t);return Fh.set(e,n),r.observe(e),function(){Fh.delete(e),r.unobserve(e)}}function Cye(e){var t=e.visualElement,n=e.whileInView,r=e.onViewportEnter,o=e.onViewportLeave,i=e.viewport,s=i===void 0?{}:i,a=h.useRef({hasEnteredView:!1,isInView:!1}),l=!!(n||r||o);s.once&&a.current.hasEnteredView&&(l=!1);var c=typeof IntersectionObserver>\"u\"?Nye:kye;c(l,a.current,t,s)}var Tye={some:0,all:1};function kye(e,t,n,r){var o=r.root,i=r.margin,s=r.amount,a=s===void 0?\"some\":s,l=r.once;h.useEffect(function(){if(e){var c={root:o==null?void 0:o.current,rootMargin:i,threshold:typeof a==\"number\"?a:Tye[a]},u=function(d){var p,f=d.isIntersecting;if(t.isInView!==f&&(t.isInView=f,!(l&&!f&&t.hasEnteredView))){f&&(t.hasEnteredView=!0),(p=n.animationState)===null||p===void 0||p.setActive(Se.InView,f);var m=n.getProps(),v=f?m.onViewportEnter:m.onViewportLeave;v==null||v(d)}};return Sye(n.getInstance(),c,u)}},[e,o,i,a])}function Nye(e,t,n,r){var o=r.fallback,i=o===void 0?!0:o;h.useEffect(function(){!e||!i||(JS!==\"production\"&&bye(!1,\"IntersectionObserver not available on this device. whileInView animations will trigger on mount.\"),requestAnimationFrame(function(){var s;t.hasEnteredView=!0;var a=n.getProps().onViewportEnter;a==null||a(null),(s=n.animationState)===null||s===void 0||s.setActive(Se.InView,!0)}))},[e])}var Ar=function(e){return function(t){return e(t),null}},Aye={inView:Ar(Cye),tap:Ar(Eye),focus:Ar(lge),hover:Ar(yge)},Dye=0,Iye=function(){return Dye++},Rye=function(){return Jr(Iye)};function nT(){var e=h.useContext(df);if(e===null)return[!0,null];var t=e.isPresent,n=e.onExitComplete,r=e.register,o=Rye();h.useEffect(function(){return r(o)},[]);var i=function(){return n==null?void 0:n(o)};return!t&&n?[!1,i]:[!0]}function rT(e,t){if(!Array.isArray(t))return!1;var n=t.length;if(n!==e.length)return!1;for(var r=0;r<n;r++)if(t[r]!==e[r])return!1;return!0}var uu=function(e){return e*1e3},Lye={linear:Fv,easeIn:Mv,easeInOut:BC,easeOut:Uge,circIn:zC,circInOut:Bge,circOut:Vv,backIn:jv,backInOut:Hge,backOut:zge,anticipate:Gge,bounceIn:Zge,bounceInOut:Xge,bounceOut:au},SE=function(e){if(Array.isArray(e)){nu(e.length===4);var t=Ie(e,4),n=t[0],r=t[1],o=t[2],i=t[3];return yye(n,r,o,i)}else if(typeof e==\"string\")return Lye[e];return e},Oye=function(e){return Array.isArray(e)&&typeof e[0]!=\"number\"},CE=function(e,t){return e===\"zIndex\"?!1:!!(typeof t==\"number\"||Array.isArray(t)||typeof t==\"string\"&&fr.test(t)&&!t.startsWith(\"url(\"))},so=function(){return{type:\"spring\",stiffness:500,damping:25,restSpeed:10}},Vl=function(e){return{type:\"spring\",stiffness:550,damping:e===0?2*Math.sqrt(550):30,restSpeed:10}},Od=function(){return{type:\"keyframes\",ease:\"linear\",duration:.3}},Pye=function(e){return{type:\"keyframes\",duration:.8,values:e}},TE={x:so,y:so,z:so,rotate:so,rotateX:so,rotateY:so,rotateZ:so,scaleX:Vl,scaleY:Vl,scale:Vl,opacity:Od,backgroundColor:Od,color:Od,default:Vl},$ye=function(e,t){var n;return _a(t)?n=Pye:n=TE[e]||TE.default,G({to:t},n(t))},Fye=G(G({},gC),{color:Et,backgroundColor:Et,outlineColor:Et,fill:Et,stroke:Et,borderColor:Et,borderTopColor:Et,borderRightColor:Et,borderBottomColor:Et,borderLeftColor:Et,filter:Dh,WebkitFilter:Dh}),qv=function(e){return Fye[e]};function Uv(e,t){var n,r=qv(e);return r!==Dh&&(r=fr),(n=r.getAnimatableNone)===null||n===void 0?void 0:n.call(r,t)}function Mye(e){e.when,e.delay,e.delayChildren,e.staggerChildren,e.staggerDirection,e.repeat,e.repeatType,e.repeatDelay,e.from;var t=yt(e,[\"when\",\"delay\",\"delayChildren\",\"staggerChildren\",\"staggerDirection\",\"repeat\",\"repeatType\",\"repeatDelay\",\"from\"]);return!!Object.keys(t).length}function Vye(e){var t=e.ease,n=e.times,r=e.yoyo,o=e.flip,i=e.loop,s=yt(e,[\"ease\",\"times\",\"yoyo\",\"flip\",\"loop\"]),a=G({},s);return n&&(a.offset=n),s.duration&&(a.duration=uu(s.duration)),s.repeatDelay&&(a.repeatDelay=uu(s.repeatDelay)),t&&(a.ease=Oye(t)?t.map(SE):SE(t)),s.type===\"tween\"&&(a.type=\"keyframes\"),(r||i||o)&&(r?a.repeatType=\"reverse\":i?a.repeatType=\"loop\":o&&(a.repeatType=\"mirror\"),a.repeat=i||r||o||s.repeat),s.type!==\"spring\"&&(a.type=\"keyframes\"),a}function jye(e,t){var n,r,o=Bv(e,t)||{};return(r=(n=o.delay)!==null&&n!==void 0?n:e.delay)!==null&&r!==void 0?r:0}function qye(e){return Array.isArray(e.to)&&e.to[0]===null&&(e.to=_n([],Ie(e.to),!1),e.to[0]=e.from),e}function Uye(e,t,n){var r;return Array.isArray(t.to)&&((r=e.duration)!==null&&r!==void 0||(e.duration=.8)),qye(t),Mye(e)||(e=G(G({},e),$ye(n,t.to))),G(G({},t),Vye(e))}function Bye(e,t,n,r,o){var i,s=Bv(r,e),a=(i=s.from)!==null&&i!==void 0?i:t.get(),l=CE(e,n);a===\"none\"&&l&&typeof n==\"string\"?a=Uv(e,n):kE(a)&&typeof n==\"string\"?a=NE(n):!Array.isArray(n)&&kE(n)&&typeof a==\"string\"&&(n=NE(a));var c=CE(e,a);function u(){var p={from:a,to:n,velocity:t.getVelocity(),onComplete:o,onUpdate:function(f){return t.set(f)}};return s.type===\"inertia\"||s.type===\"decay\"?fye(G(G({},p),s)):YC(G(G({},Uye(s,p,e)),{onUpdate:function(f){var m;p.onUpdate(f),(m=s.onUpdate)===null||m===void 0||m.call(s,f)},onComplete:function(){var f;p.onComplete(),(f=s.onComplete)===null||f===void 0||f.call(s)}}))}function d(){var p,f,m=TC(n);return t.set(m),o(),(p=s==null?void 0:s.onUpdate)===null||p===void 0||p.call(s,m),(f=s==null?void 0:s.onComplete)===null||f===void 0||f.call(s),{stop:function(){}}}return!c||!l||s.type===!1?d:u}function kE(e){return e===0||typeof e==\"string\"&&parseFloat(e)===0&&e.indexOf(\" \")===-1}function NE(e){return typeof e==\"number\"?0:Uv(\"\",e)}function Bv(e,t){return e[t]||e.default||e}function zv(e,t,n,r){return r===void 0&&(r={}),t.start(function(o){var i,s,a=Bye(e,t,n,r,o),l=jye(r,e),c=function(){return s=a()};return l?i=window.setTimeout(c,uu(l)):c(),function(){clearTimeout(i),s==null||s.stop()}})}var zye=function(e){return/^\\-?\\d*\\.?\\d+$/.test(e)},Hye=function(e){return/^0[^.\\s]+$/.test(e)};function Hv(e,t){e.indexOf(t)===-1&&e.push(t)}function Gv(e,t){var n=e.indexOf(t);n>-1&&e.splice(n,1)}function Gye(e,t,n){var r=Ie(e),o=r.slice(0),i=t<0?o.length+t:t;if(i>=0&&i<o.length){var s=n<0?o.length+n:n,a=Ie(o.splice(t,1),1),l=a[0];o.splice(s,0,l)}return o}var Us=function(){function e(){this.subscriptions=[]}return e.prototype.add=function(t){var n=this;return Hv(this.subscriptions,t),function(){return Gv(n.subscriptions,t)}},e.prototype.notify=function(t,n,r){var o=this.subscriptions.length;if(o)if(o===1)this.subscriptions[0](t,n,r);else for(var i=0;i<o;i++){var s=this.subscriptions[i];s&&s(t,n,r)}},e.prototype.getSize=function(){return this.subscriptions.length},e.prototype.clear=function(){this.subscriptions.length=0},e}(),Wye=function(e){return!isNaN(parseFloat(e))},Qye=function(){function e(t){var n=this;this.version=\"6.5.1\",this.timeDelta=0,this.lastUpdated=0,this.updateSubscribers=new Us,this.velocityUpdateSubscribers=new Us,this.renderSubscribers=new Us,this.canTrackVelocity=!1,this.updateAndNotify=function(r,o){o===void 0&&(o=!0),n.prev=n.current,n.current=r;var i=lu(),s=i.delta,a=i.timestamp;n.lastUpdated!==a&&(n.timeDelta=s,n.lastUpdated=a,Sn.postRender(n.scheduleVelocityCheck)),n.prev!==n.current&&n.updateSubscribers.notify(n.current),n.velocityUpdateSubscribers.getSize()&&n.velocityUpdateSubscribers.notify(n.getVelocity()),o&&n.renderSubscribers.notify(n.current)},this.scheduleVelocityCheck=function(){return Sn.postRender(n.velocityCheck)},this.velocityCheck=function(r){var o=r.timestamp;o!==n.lastUpdated&&(n.prev=n.current,n.velocityUpdateSubscribers.notify(n.getVelocity()))},this.hasAnimated=!1,this.prev=this.current=t,this.canTrackVelocity=Wye(this.current)}return e.prototype.onChange=function(t){return this.updateSubscribers.add(t)},e.prototype.clearListeners=function(){this.updateSubscribers.clear()},e.prototype.onRenderRequest=function(t){return t(this.get()),this.renderSubscribers.add(t)},e.prototype.attach=function(t){this.passiveEffect=t},e.prototype.set=function(t,n){n===void 0&&(n=!0),!n||!this.passiveEffect?this.updateAndNotify(t,n):this.passiveEffect(t,this.updateAndNotify)},e.prototype.get=function(){return this.current},e.prototype.getPrevious=function(){return this.prev},e.prototype.getVelocity=function(){return this.canTrackVelocity?ZC(parseFloat(this.current)-parseFloat(this.prev),this.timeDelta):0},e.prototype.start=function(t){var n=this;return this.stop(),new Promise(function(r){n.hasAnimated=!0,n.stopAnimation=t(r)}).then(function(){return n.clearAnimation()})},e.prototype.stop=function(){this.stopAnimation&&this.stopAnimation(),this.clearAnimation()},e.prototype.isAnimating=function(){return!!this.stopAnimation},e.prototype.clearAnimation=function(){this.stopAnimation=null},e.prototype.destroy=function(){this.updateSubscribers.clear(),this.renderSubscribers.clear(),this.stop()},e}();function $o(e){return new Qye(e)}var oT=function(e){return function(t){return t.test(e)}},Yye={test:function(e){return e===\"auto\"},parse:function(e){return e}},iT=[Ho,re,Vn,gr,O0e,L0e,Yye],gs=function(e){return iT.find(oT(e))},Zye=_n(_n([],Ie(iT),!1),[Et,fr],!1),Xye=function(e){return Zye.find(oT(e))};function Jye(e,t,n){e.hasValue(t)?e.getValue(t).set(n):e.addValue(t,$o(n))}function Kye(e,t){var n=pf(e,t),r=n?e.makeTargetAnimatable(n,!1):{},o=r.transitionEnd,i=o===void 0?{}:o;r.transition;var s=yt(r,[\"transitionEnd\",\"transition\"]);s=G(G({},s),i);for(var a in s){var l=TC(s[a]);Jye(e,a,l)}}function e1e(e,t,n){var r,o,i,s,a=Object.keys(t).filter(function(f){return!e.hasValue(f)}),l=a.length;if(l)for(var c=0;c<l;c++){var u=a[c],d=t[u],p=null;Array.isArray(d)&&(p=d[0]),p===null&&(p=(o=(r=n[u])!==null&&r!==void 0?r:e.readValue(u))!==null&&o!==void 0?o:t[u]),p!=null&&(typeof p==\"string\"&&(zye(p)||Hye(p))?p=parseFloat(p):!Xye(p)&&fr.test(d)&&(p=Uv(u,d)),e.addValue(u,$o(p)),(i=(s=n)[u])!==null&&i!==void 0||(s[u]=p),e.setBaseTarget(u,p))}}function t1e(e,t){if(t){var n=t[e]||t.default||t;return n.from}}function n1e(e,t,n){var r,o,i={};for(var s in e)i[s]=(r=t1e(s,t))!==null&&r!==void 0?r:(o=n.getValue(s))===null||o===void 0?void 0:o.get();return i}function r1e(e,t,n){n===void 0&&(n={}),e.notifyAnimationStart(t);var r;if(Array.isArray(t)){var o=t.map(function(s){return Mh(e,s,n)});r=Promise.all(o)}else if(typeof t==\"string\")r=Mh(e,t,n);else{var i=typeof t==\"function\"?pf(e,t,n.custom):t;r=sT(e,i,n)}return r.then(function(){return e.notifyAnimationComplete(t)})}function Mh(e,t,n){var r;n===void 0&&(n={});var o=pf(e,t,n.custom),i=(o||{}).transition,s=i===void 0?e.getDefaultTransition()||{}:i;n.transitionOverride&&(s=n.transitionOverride);var a=o?function(){return sT(e,o,n)}:function(){return Promise.resolve()},l=!((r=e.variantChildren)===null||r===void 0)&&r.size?function(f){f===void 0&&(f=0);var m=s.delayChildren,v=m===void 0?0:m,b=s.staggerChildren,y=s.staggerDirection;return o1e(e,t,v+f,b,y,n)}:function(){return Promise.resolve()},c=s.when;if(c){var u=Ie(c===\"beforeChildren\"?[a,l]:[l,a],2),d=u[0],p=u[1];return d().then(p)}else return Promise.all([a(),l(n.delay)])}function sT(e,t,n){var r,o=n===void 0?{}:n,i=o.delay,s=i===void 0?0:i,a=o.transitionOverride,l=o.type,c=e.makeTargetAnimatable(t),u=c.transition,d=u===void 0?e.getDefaultTransition():u,p=c.transitionEnd,f=yt(c,[\"transition\",\"transitionEnd\"]);a&&(d=a);var m=[],v=l&&((r=e.animationState)===null||r===void 0?void 0:r.getState()[l]);for(var b in f){var y=e.getValue(b),g=f[b];if(!(!y||g===void 0||v&&s1e(v,b))){var E=G({delay:s},d);e.shouldReduceMotion&&Ga(b)&&(E=G(G({},E),{type:!1,delay:0}));var x=zv(b,y,g,E);m.push(x)}}return Promise.all(m).then(function(){p&&Kye(e,p)})}function o1e(e,t,n,r,o,i){n===void 0&&(n=0),r===void 0&&(r=0),o===void 0&&(o=1);var s=[],a=(e.variantChildren.size-1)*r,l=o===1?function(c){return c===void 0&&(c=0),c*r}:function(c){return c===void 0&&(c=0),a-c*r};return Array.from(e.variantChildren).sort(i1e).forEach(function(c,u){s.push(Mh(c,t,G(G({},i),{delay:n+l(u)})).then(function(){return c.notifyAnimationComplete(t)}))}),Promise.all(s)}function i1e(e,t){return e.sortNodePosition(t)}function s1e(e,t){var n=e.protectedKeys,r=e.needsAnimating,o=n.hasOwnProperty(t)&&r[t]!==!0;return r[t]=!1,o}var Wv=[Se.Animate,Se.InView,Se.Focus,Se.Hover,Se.Tap,Se.Drag,Se.Exit],a1e=_n([],Ie(Wv),!1).reverse(),l1e=Wv.length;function c1e(e){return function(t){return Promise.all(t.map(function(n){var r=n.animation,o=n.options;return r1e(e,r,o)}))}}function u1e(e){var t=c1e(e),n=d1e(),r={},o=!0,i=function(u,d){var p=pf(e,d);if(p){p.transition;var f=p.transitionEnd,m=yt(p,[\"transition\",\"transitionEnd\"]);u=G(G(G({},u),m),f)}return u};function s(u){return r[u]!==void 0}function a(u){t=u(e)}function l(u,d){for(var p,f=e.getProps(),m=e.getVariantContext(!0)||{},v=[],b=new Set,y={},g=1/0,E=function(T){var A=a1e[T],S=n[A],k=(p=f[A])!==null&&p!==void 0?p:m[A],q=pn(k),H=A===d?S.isActive:null;H===!1&&(g=T);var V=k===m[A]&&k!==f[A]&&q;if(V&&o&&e.manuallyAnimateOnMount&&(V=!1),S.protectedKeys=G({},y),!S.isActive&&H===null||!k&&!S.prevProp||Rv(k)||typeof k==\"boolean\")return\"continue\";var N=f1e(S.prevProp,k),M=N||A===d&&S.isActive&&!V&&q||T>g&&q,R=Array.isArray(k)?k:[k],I=R.reduce(i,{});H===!1&&(I={});var D=S.prevResolvedValues,P=D===void 0?{}:D,U=G(G({},P),I),Z=function(z){M=!0,b.delete(z),S.needsAnimating[z]=!0};for(var ee in U){var te=I[ee],j=P[ee];y.hasOwnProperty(ee)||(te!==j?_a(te)&&_a(j)?!rT(te,j)||N?Z(ee):S.protectedKeys[ee]=!0:te!==void 0?Z(ee):b.add(ee):te!==void 0&&b.has(ee)?Z(ee):S.protectedKeys[ee]=!0)}S.prevProp=k,S.prevResolvedValues=I,S.isActive&&(y=G(G({},y),I)),o&&e.blockInitialAnimation&&(M=!1),M&&!V&&v.push.apply(v,_n([],Ie(R.map(function(z){return{animation:z,options:G({type:A},u)}})),!1))},x=0;x<l1e;x++)E(x);if(r=G({},y),b.size){var w={};b.forEach(function(T){var A=e.getBaseTarget(T);A!==void 0&&(w[T]=A)}),v.push({animation:w})}var C=!!v.length;return o&&f.initial===!1&&!e.manuallyAnimateOnMount&&(C=!1),o=!1,C?t(v):Promise.resolve()}function c(u,d,p){var f;if(n[u].isActive===d)return Promise.resolve();(f=e.variantChildren)===null||f===void 0||f.forEach(function(b){var y;return(y=b.animationState)===null||y===void 0?void 0:y.setActive(u,d)}),n[u].isActive=d;var m=l(p,u);for(var v in n)n[v].protectedKeys={};return m}return{isAnimated:s,animateChanges:l,setActive:c,setAnimateFunction:a,getState:function(){return n}}}function f1e(e,t){return typeof t==\"string\"?t!==e:nC(t)?!rT(t,e):!1}function ao(e){return e===void 0&&(e=!1),{isActive:e,protectedKeys:{},needsAnimating:{},prevResolvedValues:{}}}function d1e(){var e;return e={},e[Se.Animate]=ao(!0),e[Se.InView]=ao(),e[Se.Hover]=ao(),e[Se.Tap]=ao(),e[Se.Drag]=ao(),e[Se.Focus]=ao(),e[Se.Exit]=ao(),e}var p1e={animation:Ar(function(e){var t=e.visualElement,n=e.animate;t.animationState||(t.animationState=u1e(t)),Rv(n)&&h.useEffect(function(){return n.subscribe(t)},[n])}),exit:Ar(function(e){var t=e.custom,n=e.visualElement,r=Ie(nT(),2),o=r[0],i=r[1],s=h.useContext(df);h.useEffect(function(){var a,l;n.isPresent=o;var c=(a=n.animationState)===null||a===void 0?void 0:a.setActive(Se.Exit,!o,{custom:(l=s==null?void 0:s.custom)!==null&&l!==void 0?l:t});!o&&(c==null||c.then(i))},[o])})},aT=function(){function e(t,n,r){var o=this,i=r===void 0?{}:r,s=i.transformPagePoint;if(this.startEvent=null,this.lastMoveEvent=null,this.lastMoveEventInfo=null,this.handlers={},this.updatePoint=function(){if(o.lastMoveEvent&&o.lastMoveEventInfo){var p=$d(o.lastMoveEventInfo,o.history),f=o.startEvent!==null,m=XC(p.offset,{x:0,y:0})>=3;if(!(!f&&!m)){var v=p.point,b=lu().timestamp;o.history.push(G(G({},v),{timestamp:b}));var y=o.handlers,g=y.onStart,E=y.onMove;f||(g&&g(o.lastMoveEvent,p),o.startEvent=o.lastMoveEvent),E&&E(o.lastMoveEvent,p)}}},this.handlePointerMove=function(p,f){if(o.lastMoveEvent=p,o.lastMoveEventInfo=Pd(f,o.transformPagePoint),NC(p)&&p.buttons===0){o.handlePointerUp(p,f);return}Sn.update(o.updatePoint,!0)},this.handlePointerUp=function(p,f){o.end();var m=o.handlers,v=m.onEnd,b=m.onSessionEnd,y=$d(Pd(f,o.transformPagePoint),o.history);o.startEvent&&v&&v(p,y),b&&b(p,y)},!(AC(t)&&t.touches.length>1)){this.handlers=n,this.transformPagePoint=s;var a=Lv(t),l=Pd(a,this.transformPagePoint),c=l.point,u=lu().timestamp;this.history=[G(G({},c),{timestamp:u})];var d=n.onSessionStart;d&&d(t,$d(l,this.history)),this.removeListeners=vf(Di(window,\"pointermove\",this.handlePointerMove),Di(window,\"pointerup\",this.handlePointerUp),Di(window,\"pointercancel\",this.handlePointerUp))}}return e.prototype.updateHandlers=function(t){this.handlers=t},e.prototype.end=function(){this.removeListeners&&this.removeListeners(),Gi.update(this.updatePoint)},e}();function Pd(e,t){return t?{point:t(e.point)}:e}function AE(e,t){return{x:e.x-t.x,y:e.y-t.y}}function $d(e,t){var n=e.point;return{point:n,delta:AE(n,lT(t)),offset:AE(n,h1e(t)),velocity:m1e(t,.1)}}function h1e(e){return e[0]}function lT(e){return e[e.length-1]}function m1e(e,t){if(e.length<2)return{x:0,y:0};for(var n=e.length-1,r=null,o=lT(e);n>=0&&(r=e[n],!(o.timestamp-r.timestamp>uu(t)));)n--;if(!r)return{x:0,y:0};var i=(o.timestamp-r.timestamp)/1e3;if(i===0)return{x:0,y:0};var s={x:(o.x-r.x)/i,y:(o.y-r.y)/i};return s.x===1/0&&(s.x=0),s.y===1/0&&(s.y=0),s}function dr(e){return e.max-e.min}function DE(e,t,n){return t===void 0&&(t=0),n===void 0&&(n=.01),XC(e,t)<n}function IE(e,t,n,r){r===void 0&&(r=.5),e.origin=r,e.originPoint=Oe(t.min,t.max,e.origin),e.scale=dr(n)/dr(t),(DE(e.scale,1,1e-4)||isNaN(e.scale))&&(e.scale=1),e.translate=Oe(n.min,n.max,e.origin)-e.originPoint,(DE(e.translate)||isNaN(e.translate))&&(e.translate=0)}function Bs(e,t,n,r){IE(e.x,t.x,n.x,r==null?void 0:r.originX),IE(e.y,t.y,n.y,r==null?void 0:r.originY)}function RE(e,t,n){e.min=n.min+t.min,e.max=e.min+dr(t)}function v1e(e,t,n){RE(e.x,t.x,n.x),RE(e.y,t.y,n.y)}function LE(e,t,n){e.min=t.min-n.min,e.max=e.min+dr(t)}function zs(e,t,n){LE(e.x,t.x,n.x),LE(e.y,t.y,n.y)}function g1e(e,t,n){var r=t.min,o=t.max;return r!==void 0&&e<r?e=n?Oe(r,e,n.min):Math.max(e,r):o!==void 0&&e>o&&(e=n?Oe(o,e,n.max):Math.min(e,o)),e}function OE(e,t,n){return{min:t!==void 0?e.min+t:void 0,max:n!==void 0?e.max+n-(e.max-e.min):void 0}}function y1e(e,t){var n=t.top,r=t.left,o=t.bottom,i=t.right;return{x:OE(e.x,r,i),y:OE(e.y,n,o)}}function PE(e,t){var n,r=t.min-e.min,o=t.max-e.max;return t.max-t.min<e.max-e.min&&(n=Ie([o,r],2),r=n[0],o=n[1]),{min:r,max:o}}function E1e(e,t){return{x:PE(e.x,t.x),y:PE(e.y,t.y)}}function b1e(e,t){var n=.5,r=dr(e),o=dr(t);return o>r?n=Sa(t.min,t.max-r,e.min):r>o&&(n=Sa(e.min,e.max-o,t.min)),su(0,1,n)}function x1e(e,t){var n={};return t.min!==void 0&&(n.min=t.min-e.min),t.max!==void 0&&(n.max=t.max-e.min),n}var Vh=.35;function w1e(e){return e===void 0&&(e=Vh),e===!1?e=0:e===!0&&(e=Vh),{x:$E(e,\"left\",\"right\"),y:$E(e,\"top\",\"bottom\")}}function $E(e,t,n){return{min:FE(e,t),max:FE(e,n)}}function FE(e,t){var n;return typeof e==\"number\"?e:(n=e[t])!==null&&n!==void 0?n:0}var ME=function(){return{translate:0,scale:1,origin:0,originPoint:0}},Hs=function(){return{x:ME(),y:ME()}},VE=function(){return{min:0,max:0}},dt=function(){return{x:VE(),y:VE()}};function Ln(e){return[e(\"x\"),e(\"y\")]}function cT(e){var t=e.top,n=e.left,r=e.right,o=e.bottom;return{x:{min:n,max:r},y:{min:t,max:o}}}function _1e(e){var t=e.x,n=e.y;return{top:n.min,right:t.max,bottom:n.max,left:t.min}}function S1e(e,t){if(!t)return e;var n=t({x:e.left,y:e.top}),r=t({x:e.right,y:e.bottom});return{top:n.y,left:n.x,bottom:r.y,right:r.x}}function Fd(e){return e===void 0||e===1}function uT(e){var t=e.scale,n=e.scaleX,r=e.scaleY;return!Fd(t)||!Fd(n)||!Fd(r)}function yr(e){return uT(e)||jE(e.x)||jE(e.y)||e.z||e.rotate||e.rotateX||e.rotateY}function jE(e){return e&&e!==\"0%\"}function fu(e,t,n){var r=e-n,o=t*r;return n+o}function qE(e,t,n,r,o){return o!==void 0&&(e=fu(e,o,r)),fu(e,n,r)+t}function jh(e,t,n,r,o){t===void 0&&(t=0),n===void 0&&(n=1),e.min=qE(e.min,t,n,r,o),e.max=qE(e.max,t,n,r,o)}function fT(e,t){var n=t.x,r=t.y;jh(e.x,n.translate,n.scale,n.originPoint),jh(e.y,r.translate,r.scale,r.originPoint)}function C1e(e,t,n,r){var o,i;r===void 0&&(r=!1);var s=n.length;if(s){t.x=t.y=1;for(var a,l,c=0;c<s;c++)a=n[c],l=a.projectionDelta,((i=(o=a.instance)===null||o===void 0?void 0:o.style)===null||i===void 0?void 0:i.display)!==\"contents\"&&(r&&a.options.layoutScroll&&a.scroll&&a!==a.root&&yi(e,{x:-a.scroll.x,y:-a.scroll.y}),l&&(t.x*=l.x.scale,t.y*=l.y.scale,fT(e,l)),r&&yr(a.latestValues)&&yi(e,a.latestValues))}}function wr(e,t){e.min=e.min+t,e.max=e.max+t}function UE(e,t,n){var r=Ie(n,3),o=r[0],i=r[1],s=r[2],a=t[s]!==void 0?t[s]:.5,l=Oe(e.min,e.max,a);jh(e,t[o],t[i],l,t.scale)}var T1e=[\"x\",\"scaleX\",\"originX\"],k1e=[\"y\",\"scaleY\",\"originY\"];function yi(e,t){UE(e.x,t,T1e),UE(e.y,t,k1e)}function dT(e,t){return cT(S1e(e.getBoundingClientRect(),t))}function N1e(e,t,n){var r=dT(e,n),o=t.scroll;return o&&(wr(r.x,o.x),wr(r.y,o.y)),r}var A1e=new WeakMap,D1e=function(){function e(t){this.openGlobalLock=null,this.isDragging=!1,this.currentDirection=null,this.originPoint={x:0,y:0},this.constraints=!1,this.hasMutatedConstraints=!1,this.elastic=dt(),this.visualElement=t}return e.prototype.start=function(t,n){var r=this,o=n===void 0?{}:n,i=o.snapToCursor,s=i===void 0?!1:i;if(this.visualElement.isPresent!==!1){var a=function(d){r.stopAnimation(),s&&r.snapToCursor(Lv(d,\"page\").point)},l=function(d,p){var f,m=r.getProps(),v=m.drag,b=m.dragPropagation,y=m.onDragStart;v&&!b&&(r.openGlobalLock&&r.openGlobalLock(),r.openGlobalLock=LC(v),!r.openGlobalLock)||(r.isDragging=!0,r.currentDirection=null,r.resolveConstraints(),r.visualElement.projection&&(r.visualElement.projection.isAnimationBlocked=!0,r.visualElement.projection.target=void 0),Ln(function(g){var E,x,w=r.getAxisMotionValue(g).get()||0;if(Vn.test(w)){var C=(x=(E=r.visualElement.projection)===null||E===void 0?void 0:E.layout)===null||x===void 0?void 0:x.actual[g];if(C){var T=dr(C);w=T*(parseFloat(w)/100)}}r.originPoint[g]=w}),y==null||y(d,p),(f=r.visualElement.animationState)===null||f===void 0||f.setActive(Se.Drag,!0))},c=function(d,p){var f=r.getProps(),m=f.dragPropagation,v=f.dragDirectionLock,b=f.onDirectionLock,y=f.onDrag;if(!(!m&&!r.openGlobalLock)){var g=p.offset;if(v&&r.currentDirection===null){r.currentDirection=I1e(g),r.currentDirection!==null&&(b==null||b(r.currentDirection));return}r.updateAxis(\"x\",p.point,g),r.updateAxis(\"y\",p.point,g),r.visualElement.syncRender(),y==null||y(d,p)}},u=function(d,p){return r.stop(d,p)};this.panSession=new aT(t,{onSessionStart:a,onStart:l,onMove:c,onSessionEnd:u},{transformPagePoint:this.visualElement.getTransformPagePoint()})}},e.prototype.stop=function(t,n){var r=this.isDragging;if(this.cancel(),!!r){var o=n.velocity;this.startAnimation(o);var i=this.getProps().onDragEnd;i==null||i(t,n)}},e.prototype.cancel=function(){var t,n;this.isDragging=!1,this.visualElement.projection&&(this.visualElement.projection.isAnimationBlocked=!1),(t=this.panSession)===null||t===void 0||t.end(),this.panSession=void 0;var r=this.getProps().dragPropagation;!r&&this.openGlobalLock&&(this.openGlobalLock(),this.openGlobalLock=null),(n=this.visualElement.animationState)===null||n===void 0||n.setActive(Se.Drag,!1)},e.prototype.updateAxis=function(t,n,r){var o=this.getProps().drag;if(!(!r||!jl(t,o,this.currentDirection))){var i=this.getAxisMotionValue(t),s=this.originPoint[t]+r[t];this.constraints&&this.constraints[t]&&(s=g1e(s,this.constraints[t],this.elastic[t])),i.set(s)}},e.prototype.resolveConstraints=function(){var t=this,n=this.getProps(),r=n.dragConstraints,o=n.dragElastic,i=(this.visualElement.projection||{}).layout,s=this.constraints;r&&gi(r)?this.constraints||(this.constraints=this.resolveRefConstraints()):r&&i?this.constraints=y1e(i.actual,r):this.constraints=!1,this.elastic=w1e(o),s!==this.constraints&&i&&this.constraints&&!this.hasMutatedConstraints&&Ln(function(a){t.getAxisMotionValue(a)&&(t.constraints[a]=x1e(i.actual[a],t.constraints[a]))})},e.prototype.resolveRefConstraints=function(){var t=this.getProps(),n=t.dragConstraints,r=t.onMeasureDragConstraints;if(!n||!gi(n))return!1;var o=n.current,i=this.visualElement.projection;if(!i||!i.layout)return!1;var s=N1e(o,i.root,this.visualElement.getTransformPagePoint()),a=E1e(i.layout.actual,s);if(r){var l=r(_1e(a));this.hasMutatedConstraints=!!l,l&&(a=cT(l))}return a},e.prototype.startAnimation=function(t){var n=this,r=this.getProps(),o=r.drag,i=r.dragMomentum,s=r.dragElastic,a=r.dragTransition,l=r.dragSnapToOrigin,c=r.onDragTransitionEnd,u=this.constraints||{},d=Ln(function(p){var f;if(jl(p,o,n.currentDirection)){var m=(f=u==null?void 0:u[p])!==null&&f!==void 0?f:{};l&&(m={min:0,max:0});var v=s?200:1e6,b=s?40:1e7,y=G(G({type:\"inertia\",velocity:i?t[p]:0,bounceStiffness:v,bounceDamping:b,timeConstant:750,restDelta:1,restSpeed:10},a),m);return n.startAxisValueAnimation(p,y)}});return Promise.all(d).then(c)},e.prototype.startAxisValueAnimation=function(t,n){var r=this.getAxisMotionValue(t);return zv(t,r,0,n)},e.prototype.stopAnimation=function(){var t=this;Ln(function(n){return t.getAxisMotionValue(n).stop()})},e.prototype.getAxisMotionValue=function(t){var n,r,o=\"_drag\"+t.toUpperCase(),i=this.visualElement.getProps()[o];return i||this.visualElement.getValue(t,(r=(n=this.visualElement.getProps().initial)===null||n===void 0?void 0:n[t])!==null&&r!==void 0?r:0)},e.prototype.snapToCursor=function(t){var n=this;Ln(function(r){var o=n.getProps().drag;if(jl(r,o,n.currentDirection)){var i=n.visualElement.projection,s=n.getAxisMotionValue(r);if(i&&i.layout){var a=i.layout.actual[r],l=a.min,c=a.max;s.set(t[r]-Oe(l,c,.5))}}})},e.prototype.scalePositionWithinConstraints=function(){var t=this,n,r=this.getProps(),o=r.drag,i=r.dragConstraints,s=this.visualElement.projection;if(!(!gi(i)||!s||!this.constraints)){this.stopAnimation();var a={x:0,y:0};Ln(function(c){var u=t.getAxisMotionValue(c);if(u){var d=u.get();a[c]=b1e({min:d,max:d},t.constraints[c])}});var l=this.visualElement.getProps().transformTemplate;this.visualElement.getInstance().style.transform=l?l({},\"\"):\"none\",(n=s.root)===null||n===void 0||n.updateScroll(),s.updateLayout(),this.resolveConstraints(),Ln(function(c){if(jl(c,o,null)){var u=t.getAxisMotionValue(c),d=t.constraints[c],p=d.min,f=d.max;u.set(Oe(p,f,a[c]))}})}},e.prototype.addListeners=function(){var t=this,n;A1e.set(this.visualElement,this);var r=this.visualElement.getInstance(),o=Di(r,\"pointerdown\",function(c){var u=t.getProps(),d=u.drag,p=u.dragListener,f=p===void 0?!0:p;d&&f&&t.start(c)}),i=function(){var c=t.getProps().dragConstraints;gi(c)&&(t.constraints=t.resolveRefConstraints())},s=this.visualElement.projection,a=s.addEventListener(\"measure\",i);s&&!s.layout&&((n=s.root)===null||n===void 0||n.updateScroll(),s.updateLayout()),i();var l=mf(window,\"resize\",function(){return t.scalePositionWithinConstraints()});return s.addEventListener(\"didUpdate\",function(c){var u=c.delta,d=c.hasLayoutChanged;t.isDragging&&d&&(Ln(function(p){var f=t.getAxisMotionValue(p);f&&(t.originPoint[p]+=u[p].translate,f.set(f.get()+u[p].translate))}),t.visualElement.syncRender())}),function(){l(),o(),a()}},e.prototype.getProps=function(){var t=this.visualElement.getProps(),n=t.drag,r=n===void 0?!1:n,o=t.dragDirectionLock,i=o===void 0?!1:o,s=t.dragPropagation,a=s===void 0?!1:s,l=t.dragConstraints,c=l===void 0?!1:l,u=t.dragElastic,d=u===void 0?Vh:u,p=t.dragMomentum,f=p===void 0?!0:p;return G(G({},t),{drag:r,dragDirectionLock:i,dragPropagation:a,dragConstraints:c,dragElastic:d,dragMomentum:f})},e}();function jl(e,t,n){return(t===!0||t===e)&&(n===null||n===e)}function I1e(e,t){t===void 0&&(t=10);var n=null;return Math.abs(e.y)>t?n=\"y\":Math.abs(e.x)>t&&(n=\"x\"),n}function R1e(e){var t=e.dragControls,n=e.visualElement,r=Jr(function(){return new D1e(n)});h.useEffect(function(){return t&&t.subscribe(r)},[r,t]),h.useEffect(function(){return r.addListeners()},[r])}function L1e(e){var t=e.onPan,n=e.onPanStart,r=e.onPanEnd,o=e.onPanSessionStart,i=e.visualElement,s=t||n||r||o,a=h.useRef(null),l=h.useContext(uf).transformPagePoint,c={onSessionStart:o,onStart:n,onMove:t,onEnd:function(d,p){a.current=null,r&&r(d,p)}};h.useEffect(function(){a.current!==null&&a.current.updateHandlers(c)});function u(d){a.current=new aT(d,c,{transformPagePoint:l})}iu(i,\"pointerdown\",s&&u),$C(function(){return a.current&&a.current.end()})}var O1e={pan:Ar(L1e),drag:Ar(R1e)},ql=[\"LayoutMeasure\",\"BeforeLayoutMeasure\",\"LayoutUpdate\",\"ViewportBoxUpdate\",\"Update\",\"Render\",\"AnimationComplete\",\"LayoutAnimationComplete\",\"AnimationStart\",\"LayoutAnimationStart\",\"SetAxisTarget\",\"Unmount\"];function P1e(){var e=ql.map(function(){return new Us}),t={},n={clearAllListeners:function(){return e.forEach(function(r){return r.clear()})},updatePropListeners:function(r){ql.forEach(function(o){var i,s=\"on\"+o,a=r[s];(i=t[o])===null||i===void 0||i.call(t),a&&(t[o]=n[s](a))})}};return e.forEach(function(r,o){n[\"on\"+ql[o]]=function(i){return r.add(i)},n[\"notify\"+ql[o]]=function(){for(var i=[],s=0;s<arguments.length;s++)i[s]=arguments[s];return r.notify.apply(r,_n([],Ie(i),!1))}}),n}function $1e(e,t,n){var r;for(var o in t){var i=t[o],s=n[o];if(Un(i))e.addValue(o,i);else if(Un(s))e.addValue(o,$o(i));else if(s!==i)if(e.hasValue(o)){var a=e.getValue(o);!a.hasAnimated&&a.set(i)}else e.addValue(o,$o((r=e.getStaticValue(o))!==null&&r!==void 0?r:i))}for(var o in n)t[o]===void 0&&e.removeValue(o);return t}var pT=function(e){var t=e.treeType,n=t===void 0?\"\":t,r=e.build,o=e.getBaseTarget,i=e.makeTargetAnimatable,s=e.measureViewportBox,a=e.render,l=e.readValueFromInstance,c=e.removeValueFromRenderState,u=e.sortNodePosition,d=e.scrapeMotionValuesFromProps;return function(p,f){var m=p.parent,v=p.props,b=p.presenceId,y=p.blockInitialAnimation,g=p.visualState,E=p.shouldReduceMotion;f===void 0&&(f={});var x=!1,w=g.latestValues,C=g.renderState,T,A=P1e(),S=new Map,k=new Map,q={},H=G({},w),V;function N(){!T||!x||(M(),a(T,C,v.style,te.projection))}function M(){r(te,C,w,f,v)}function R(){A.notifyUpdate(w)}function I(j,z){var Y=z.onChange(function(lt){w[j]=lt,v.onUpdate&&Sn.update(R,!1,!0)}),be=z.onRenderRequest(te.scheduleRender);k.set(j,function(){Y(),be()})}var D=d(v);for(var P in D){var U=D[P];w[P]!==void 0&&Un(U)&&U.set(w[P],!1)}var Z=hf(v),ee=oC(v),te=G(G({treeType:n,current:null,depth:m?m.depth+1:0,parent:m,children:new Set,presenceId:b,shouldReduceMotion:E,variantChildren:ee?new Set:void 0,isVisible:void 0,manuallyAnimateOnMount:!!(m!=null&&m.isMounted()),blockInitialAnimation:y,isMounted:function(){return!!T},mount:function(j){x=!0,T=te.current=j,te.projection&&te.projection.mount(j),ee&&m&&!Z&&(V=m==null?void 0:m.addVariantChild(te)),S.forEach(function(z,Y){return I(Y,z)}),m==null||m.children.add(te),te.setProps(v)},unmount:function(){var j;(j=te.projection)===null||j===void 0||j.unmount(),Gi.update(R),Gi.render(N),k.forEach(function(z){return z()}),V==null||V(),m==null||m.children.delete(te),A.clearAllListeners(),T=void 0,x=!1},addVariantChild:function(j){var z,Y=te.getClosestVariantNode();if(Y)return(z=Y.variantChildren)===null||z===void 0||z.add(j),function(){return Y.variantChildren.delete(j)}},sortNodePosition:function(j){return!u||n!==j.treeType?0:u(te.getInstance(),j.getInstance())},getClosestVariantNode:function(){return ee?te:m==null?void 0:m.getClosestVariantNode()},getLayoutId:function(){return v.layoutId},getInstance:function(){return T},getStaticValue:function(j){return w[j]},setStaticValue:function(j,z){return w[j]=z},getLatestValues:function(){return w},setVisibility:function(j){te.isVisible!==j&&(te.isVisible=j,te.scheduleRender())},makeTargetAnimatable:function(j,z){return z===void 0&&(z=!0),i(te,j,v,z)},measureViewportBox:function(){return s(T,v)},addValue:function(j,z){te.hasValue(j)&&te.removeValue(j),S.set(j,z),w[j]=z.get(),I(j,z)},removeValue:function(j){var z;S.delete(j),(z=k.get(j))===null||z===void 0||z(),k.delete(j),delete w[j],c(j,C)},hasValue:function(j){return S.has(j)},getValue:function(j,z){var Y=S.get(j);return Y===void 0&&z!==void 0&&(Y=$o(z),te.addValue(j,Y)),Y},forEachValue:function(j){return S.forEach(j)},readValue:function(j){var z;return(z=w[j])!==null&&z!==void 0?z:l(T,j,f)},setBaseTarget:function(j,z){H[j]=z},getBaseTarget:function(j){if(o){var z=o(v,j);if(z!==void 0&&!Un(z))return z}return H[j]}},A),{build:function(){return M(),C},scheduleRender:function(){Sn.render(N,!1,!0)},syncRender:N,setProps:function(j){(j.transformTemplate||v.transformTemplate)&&te.scheduleRender(),v=j,A.updatePropListeners(j),q=$1e(te,d(v),q)},getProps:function(){return v},getVariant:function(j){var z;return(z=v.variants)===null||z===void 0?void 0:z[j]},getDefaultTransition:function(){return v.transition},getTransformPagePoint:function(){return v.transformPagePoint},getVariantContext:function(j){if(j===void 0&&(j=!1),j)return m==null?void 0:m.getVariantContext();if(!Z){var z=(m==null?void 0:m.getVariantContext())||{};return v.initial!==void 0&&(z.initial=v.initial),z}for(var Y={},be=0;be<F1e;be++){var lt=hT[be],ze=v[lt];(pn(ze)||ze===!1)&&(Y[lt]=ze)}return Y}});return te}},hT=_n([\"initial\"],Ie(Wv),!1),F1e=hT.length;function qh(e){return typeof e==\"string\"&&e.startsWith(\"var(--\")}var mT=/var\\((--[a-zA-Z0-9-_]+),? ?([a-zA-Z0-9 ()%#.,-]+)?\\)/;function M1e(e){var t=mT.exec(e);if(!t)return[,];var n=Ie(t,3),r=n[1],o=n[2];return[r,o]}function Uh(e,t,n){var r=Ie(M1e(e),2),o=r[0],i=r[1];if(o){var s=window.getComputedStyle(t).getPropertyValue(o);return s?s.trim():qh(i)?Uh(i,t):i}}function V1e(e,t,n){var r,o=yt(t,[]),i=e.getInstance();if(!(i instanceof Element))return{target:o,transitionEnd:n};n&&(n=G({},n)),e.forEachValue(function(c){var u=c.get();if(qh(u)){var d=Uh(u,i);d&&c.set(d)}});for(var s in o){var a=o[s];if(qh(a)){var l=Uh(a,i);l&&(o[s]=l,n&&((r=n[s])!==null&&r!==void 0||(n[s]=a)))}}return{target:o,transitionEnd:n}}var j1e=new Set([\"width\",\"height\",\"top\",\"left\",\"right\",\"bottom\",\"x\",\"y\"]),vT=function(e){return j1e.has(e)},q1e=function(e){return Object.keys(e).some(vT)},gT=function(e,t){e.set(t,!1),e.set(t)},BE=function(e){return e===Ho||e===re},zE;(function(e){e.width=\"width\",e.height=\"height\",e.left=\"left\",e.right=\"right\",e.top=\"top\",e.bottom=\"bottom\"})(zE||(zE={}));var HE=function(e,t){return parseFloat(e.split(\", \")[t])},GE=function(e,t){return function(n,r){var o=r.transform;if(o===\"none\"||!o)return 0;var i=o.match(/^matrix3d\\((.+)\\)$/);if(i)return HE(i[1],t);var s=o.match(/^matrix\\((.+)\\)$/);return s?HE(s[1],e):0}},U1e=new Set([\"x\",\"y\",\"z\"]),B1e=xa.filter(function(e){return!U1e.has(e)});function z1e(e){var t=[];return B1e.forEach(function(n){var r=e.getValue(n);r!==void 0&&(t.push([n,r.get()]),r.set(n.startsWith(\"scale\")?1:0))}),t.length&&e.syncRender(),t}var WE={width:function(e,t){var n=e.x,r=t.paddingLeft,o=r===void 0?\"0\":r,i=t.paddingRight,s=i===void 0?\"0\":i;return n.max-n.min-parseFloat(o)-parseFloat(s)},height:function(e,t){var n=e.y,r=t.paddingTop,o=r===void 0?\"0\":r,i=t.paddingBottom,s=i===void 0?\"0\":i;return n.max-n.min-parseFloat(o)-parseFloat(s)},top:function(e,t){var n=t.top;return parseFloat(n)},left:function(e,t){var n=t.left;return parseFloat(n)},bottom:function(e,t){var n=e.y,r=t.top;return parseFloat(r)+(n.max-n.min)},right:function(e,t){var n=e.x,r=t.left;return parseFloat(r)+(n.max-n.min)},x:GE(4,13),y:GE(5,14)},H1e=function(e,t,n){var r=t.measureViewportBox(),o=t.getInstance(),i=getComputedStyle(o),s=i.display,a={};s===\"none\"&&t.setStaticValue(\"display\",e.display||\"block\"),n.forEach(function(c){a[c]=WE[c](r,i)}),t.syncRender();var l=t.measureViewportBox();return n.forEach(function(c){var u=t.getValue(c);gT(u,a[c]),e[c]=WE[c](l,i)}),e},G1e=function(e,t,n,r){n===void 0&&(n={}),r===void 0&&(r={}),t=G({},t),r=G({},r);var o=Object.keys(t).filter(vT),i=[],s=!1,a=[];if(o.forEach(function(u){var d=e.getValue(u);if(e.hasValue(u)){var p=n[u],f=gs(p),m=t[u],v;if(_a(m)){var b=m.length,y=m[0]===null?1:0;p=m[y],f=gs(p);for(var g=y;g<b;g++)v?nu(gs(m[g])===v):v=gs(m[g])}else v=gs(m);if(f!==v)if(BE(f)&&BE(v)){var E=d.get();typeof E==\"string\"&&d.set(parseFloat(E)),typeof m==\"string\"?t[u]=parseFloat(m):Array.isArray(m)&&v===re&&(t[u]=m.map(parseFloat))}else f!=null&&f.transform&&(v!=null&&v.transform)&&(p===0||m===0)?p===0?d.set(v.transform(p)):t[u]=f.transform(m):(s||(i=z1e(e),s=!0),a.push(u),r[u]=r[u]!==void 0?r[u]:t[u],gT(d,m))}}),a.length){var l=a.indexOf(\"height\")>=0?window.pageYOffset:null,c=H1e(t,e,a);return i.length&&i.forEach(function(u){var d=Ie(u,2),p=d[0],f=d[1];e.getValue(p).set(f)}),e.syncRender(),l!==null&&window.scrollTo({top:l}),{target:c,transitionEnd:r}}else return{target:t,transitionEnd:r}};function W1e(e,t,n,r){return q1e(t)?G1e(e,t,n,r):{target:t,transitionEnd:r}}var Q1e=function(e,t,n,r){var o=V1e(e,t,r);return t=o.target,r=o.transitionEnd,W1e(e,t,n,r)};function Y1e(e){return window.getComputedStyle(e)}var yT={treeType:\"dom\",readValueFromInstance:function(e,t){if(Ga(t)){var n=qv(t);return n&&n.default||0}else{var r=Y1e(e);return(cC(t)?r.getPropertyValue(t):r[t])||0}},sortNodePosition:function(e,t){return e.compareDocumentPosition(t)&2?1:-1},getBaseTarget:function(e,t){var n;return(n=e.style)===null||n===void 0?void 0:n[t]},measureViewportBox:function(e,t){var n=t.transformPagePoint;return dT(e,n)},resetTransform:function(e,t,n){var r=n.transformTemplate;t.style.transform=r?r({},\"\"):\"none\",e.scheduleRender()},restoreTransform:function(e,t){e.style.transform=t.style.transform},removeValueFromRenderState:function(e,t){var n=t.vars,r=t.style;delete n[e],delete r[e]},makeTargetAnimatable:function(e,t,n,r){var o=n.transformValues;r===void 0&&(r=!0);var i=t.transition,s=t.transitionEnd,a=yt(t,[\"transition\",\"transitionEnd\"]),l=n1e(a,i||{},e);if(o&&(s&&(s=o(s)),a&&(a=o(a)),l&&(l=o(l))),r){e1e(e,a,l);var c=Q1e(e,a,l,s);s=c.transitionEnd,a=c.target}return G({transition:i,transitionEnd:s},a)},scrapeMotionValuesFromProps:Iv,build:function(e,t,n,r,o){e.isVisible!==void 0&&(t.style.visibility=e.isVisible?\"visible\":\"hidden\"),Nv(t,n,r,o.transformTemplate)},render:wC},Z1e=pT(yT),X1e=pT(G(G({},yT),{getBaseTarget:function(e,t){return e[t]},readValueFromInstance:function(e,t){var n;return Ga(t)?((n=qv(t))===null||n===void 0?void 0:n.default)||0:(t=_C.has(t)?t:xC(t),e.getAttribute(t))},scrapeMotionValuesFromProps:CC,build:function(e,t,n,r,o){Dv(t,n,r,o.transformTemplate)},render:SC})),J1e=function(e,t){return Tv(e)?X1e(t,{enableHardwareAcceleration:!1}):Z1e(t,{enableHardwareAcceleration:!0})};function QE(e,t){return t.max===t.min?0:e/(t.max-t.min)*100}var ys={correct:function(e,t){if(!t.target)return e;if(typeof e==\"string\")if(re.test(e))e=parseFloat(e);else return e;var n=QE(e,t.target.x),r=QE(e,t.target.y);return\"\".concat(n,\"% \").concat(r,\"%\")}},YE=\"_$css\",K1e={correct:function(e,t){var n=t.treeScale,r=t.projectionDelta,o=e,i=e.includes(\"var(\"),s=[];i&&(e=e.replace(mT,function(v){return s.push(v),YE}));var a=fr.parse(e);if(a.length>5)return o;var l=fr.createTransformer(e),c=typeof a[0]!=\"number\"?1:0,u=r.x.scale*n.x,d=r.y.scale*n.y;a[0+c]/=u,a[1+c]/=d;var p=Oe(u,d,.5);typeof a[2+c]==\"number\"&&(a[2+c]/=p),typeof a[3+c]==\"number\"&&(a[3+c]/=p);var f=l(a);if(i){var m=0;f=f.replace(YE,function(){var v=s[m];return m++,v})}return f}},eEe=function(e){M_(t,e);function t(){return e!==null&&e.apply(this,arguments)||this}return t.prototype.componentDidMount=function(){var n=this,r=this.props,o=r.visualElement,i=r.layoutGroup,s=r.switchLayoutGroup,a=r.layoutId,l=o.projection;_0e(nEe),l&&(i!=null&&i.group&&i.group.add(l),s!=null&&s.register&&a&&s.register(l),l.root.didUpdate(),l.addEventListener(\"animationComplete\",function(){n.safeToRemove()}),l.setOptions(G(G({},l.options),{onExitComplete:function(){return n.safeToRemove()}}))),Vs.hasEverUpdated=!0},t.prototype.getSnapshotBeforeUpdate=function(n){var r=this,o=this.props,i=o.layoutDependency,s=o.visualElement,a=o.drag,l=o.isPresent,c=s.projection;return c&&(c.isPresent=l,a||n.layoutDependency!==i||i===void 0?c.willUpdate():this.safeToRemove(),n.isPresent!==l&&(l?c.promote():c.relegate()||Sn.postRender(function(){var u;!((u=c.getStack())===null||u===void 0)&&u.members.length||r.safeToRemove()}))),null},t.prototype.componentDidUpdate=function(){var n=this.props.visualElement.projection;n&&(n.root.didUpdate(),!n.currentAnimation&&n.isLead()&&this.safeToRemove())},t.prototype.componentWillUnmount=function(){var n=this.props,r=n.visualElement,o=n.layoutGroup,i=n.switchLayoutGroup,s=r.projection;s&&(s.scheduleCheckAfterUnmount(),o!=null&&o.group&&o.group.remove(s),i!=null&&i.deregister&&i.deregister(s))},t.prototype.safeToRemove=function(){var n=this.props.safeToRemove;n==null||n()},t.prototype.render=function(){return null},t}($.Component);function tEe(e){var t=Ie(nT(),2),n=t[0],r=t[1],o=h.useContext(iC);return $.createElement(eEe,G({},e,{layoutGroup:o,switchLayoutGroup:h.useContext(sC),isPresent:n,safeToRemove:r}))}var nEe={borderRadius:G(G({},ys),{applyTo:[\"borderTopLeftRadius\",\"borderTopRightRadius\",\"borderBottomLeftRadius\",\"borderBottomRightRadius\"]}),borderTopLeftRadius:ys,borderTopRightRadius:ys,borderBottomLeftRadius:ys,borderBottomRightRadius:ys,boxShadow:K1e},rEe={measureLayout:tEe};function oEe(e,t,n){n===void 0&&(n={});var r=Un(e)?e:$o(e);return zv(\"\",r,t,n),{stop:function(){return r.stop()},isAnimating:function(){return r.isAnimating()}}}var ET=[\"TopLeft\",\"TopRight\",\"BottomLeft\",\"BottomRight\"],iEe=ET.length,ZE=function(e){return typeof e==\"string\"?parseFloat(e):e},XE=function(e){return typeof e==\"number\"||re.test(e)};function sEe(e,t,n,r,o,i){var s,a,l,c;o?(e.opacity=Oe(0,(s=n.opacity)!==null&&s!==void 0?s:1,aEe(r)),e.opacityExit=Oe((a=t.opacity)!==null&&a!==void 0?a:1,0,lEe(r))):i&&(e.opacity=Oe((l=t.opacity)!==null&&l!==void 0?l:1,(c=n.opacity)!==null&&c!==void 0?c:1,r));for(var u=0;u<iEe;u++){var d=\"border\".concat(ET[u],\"Radius\"),p=JE(t,d),f=JE(n,d);if(!(p===void 0&&f===void 0)){p||(p=0),f||(f=0);var m=p===0||f===0||XE(p)===XE(f);m?(e[d]=Math.max(Oe(ZE(p),ZE(f),r),0),(Vn.test(f)||Vn.test(p))&&(e[d]+=\"%\")):e[d]=f}}(t.rotate||n.rotate)&&(e.rotate=Oe(t.rotate||0,n.rotate||0,r))}function JE(e,t){var n;return(n=e[t])!==null&&n!==void 0?n:e.borderRadius}var aEe=bT(0,.5,Vv),lEe=bT(.5,.95,Fv);function bT(e,t,n){return function(r){return r<e?0:r>t?1:n(Sa(e,t,r))}}function KE(e,t){e.min=t.min,e.max=t.max}function un(e,t){KE(e.x,t.x),KE(e.y,t.y)}function eb(e,t,n,r,o){return e-=t,e=fu(e,1/n,r),o!==void 0&&(e=fu(e,1/o,r)),e}function cEe(e,t,n,r,o,i,s){if(t===void 0&&(t=0),n===void 0&&(n=1),r===void 0&&(r=.5),i===void 0&&(i=e),s===void 0&&(s=e),Vn.test(t)){t=parseFloat(t);var a=Oe(s.min,s.max,t/100);t=a-s.min}if(typeof t==\"number\"){var l=Oe(i.min,i.max,r);e===i&&(l-=t),e.min=eb(e.min,t,n,l,o),e.max=eb(e.max,t,n,l,o)}}function tb(e,t,n,r,o){var i=Ie(n,3),s=i[0],a=i[1],l=i[2];cEe(e,t[s],t[a],t[l],t.scale,r,o)}var uEe=[\"x\",\"scaleX\",\"originX\"],fEe=[\"y\",\"scaleY\",\"originY\"];function nb(e,t,n,r){tb(e.x,t,uEe,n==null?void 0:n.x,r==null?void 0:r.x),tb(e.y,t,fEe,n==null?void 0:n.y,r==null?void 0:r.y)}function rb(e){return e.translate===0&&e.scale===1}function xT(e){return rb(e.x)&&rb(e.y)}function wT(e,t){return e.x.min===t.x.min&&e.x.max===t.x.max&&e.y.min===t.y.min&&e.y.max===t.y.max}var dEe=function(){function e(){this.members=[]}return e.prototype.add=function(t){Hv(this.members,t),t.scheduleRender()},e.prototype.remove=function(t){if(Gv(this.members,t),t===this.prevLead&&(this.prevLead=void 0),t===this.lead){var n=this.members[this.members.length-1];n&&this.promote(n)}},e.prototype.relegate=function(t){var n=this.members.findIndex(function(s){return t===s});if(n===0)return!1;for(var r,o=n;o>=0;o--){var i=this.members[o];if(i.isPresent!==!1){r=i;break}}return r?(this.promote(r),!0):!1},e.prototype.promote=function(t,n){var r,o=this.lead;if(t!==o&&(this.prevLead=o,this.lead=t,t.show(),o)){o.instance&&o.scheduleRender(),t.scheduleRender(),t.resumeFrom=o,n&&(t.resumeFrom.preserveOpacity=!0),o.snapshot&&(t.snapshot=o.snapshot,t.snapshot.latestValues=o.animationValues||o.latestValues,t.snapshot.isShared=!0),!((r=t.root)===null||r===void 0)&&r.isUpdating&&(t.isLayoutDirty=!0);var i=t.options.crossfade;i===!1&&o.hide()}},e.prototype.exitAnimationComplete=function(){this.members.forEach(function(t){var n,r,o,i,s;(r=(n=t.options).onExitComplete)===null||r===void 0||r.call(n),(s=(o=t.resumingFrom)===null||o===void 0?void 0:(i=o.options).onExitComplete)===null||s===void 0||s.call(i)})},e.prototype.scheduleRender=function(){this.members.forEach(function(t){t.instance&&t.scheduleRender(!1)})},e.prototype.removeLeadSnapshot=function(){this.lead&&this.lead.snapshot&&(this.lead.snapshot=void 0)},e}(),pEe=\"translate3d(0px, 0px, 0) scale(1, 1) scale(1, 1)\";function ob(e,t,n){var r=e.x.translate/t.x,o=e.y.translate/t.y,i=\"translate3d(\".concat(r,\"px, \").concat(o,\"px, 0) \");if(i+=\"scale(\".concat(1/t.x,\", \").concat(1/t.y,\") \"),n){var s=n.rotate,a=n.rotateX,l=n.rotateY;s&&(i+=\"rotate(\".concat(s,\"deg) \")),a&&(i+=\"rotateX(\".concat(a,\"deg) \")),l&&(i+=\"rotateY(\".concat(l,\"deg) \"))}var c=e.x.scale*t.x,u=e.y.scale*t.y;return i+=\"scale(\".concat(c,\", \").concat(u,\")\"),i===pEe?\"none\":i}var hEe=function(e,t){return e.depth-t.depth},mEe=function(){function e(){this.children=[],this.isDirty=!1}return e.prototype.add=function(t){Hv(this.children,t),this.isDirty=!0},e.prototype.remove=function(t){Gv(this.children,t),this.isDirty=!0},e.prototype.forEach=function(t){this.isDirty&&this.children.sort(hEe),this.isDirty=!1,this.children.forEach(t)},e}(),ib=1e3;function _T(e){var t=e.attachResizeListener,n=e.defaultParent,r=e.measureScroll,o=e.checkIsScrollRoot,i=e.resetTransform;return function(){function s(a,l,c){var u=this;l===void 0&&(l={}),c===void 0&&(c=n==null?void 0:n()),this.children=new Set,this.options={},this.isTreeAnimating=!1,this.isAnimationBlocked=!1,this.isLayoutDirty=!1,this.updateManuallyBlocked=!1,this.updateBlockedByResize=!1,this.isUpdating=!1,this.isSVG=!1,this.needsReset=!1,this.shouldResetTransform=!1,this.treeScale={x:1,y:1},this.eventHandlers=new Map,this.potentialNodes=new Map,this.checkUpdateFailed=function(){u.isUpdating&&(u.isUpdating=!1,u.clearAllSnapshots())},this.updateProjection=function(){u.nodes.forEach(xEe),u.nodes.forEach(wEe)},this.hasProjected=!1,this.isVisible=!0,this.animationProgress=0,this.sharedNodes=new Map,this.id=a,this.latestValues=l,this.root=c?c.root||c:this,this.path=c?_n(_n([],Ie(c.path),!1),[c],!1):[],this.parent=c,this.depth=c?c.depth+1:0,a&&this.root.registerPotentialNode(a,this);for(var d=0;d<this.path.length;d++)this.path[d].shouldResetTransform=!0;this.root===this&&(this.nodes=new mEe)}return s.prototype.addEventListener=function(a,l){return this.eventHandlers.has(a)||this.eventHandlers.set(a,new Us),this.eventHandlers.get(a).add(l)},s.prototype.notifyListeners=function(a){for(var l=[],c=1;c<arguments.length;c++)l[c-1]=arguments[c];var u=this.eventHandlers.get(a);u==null||u.notify.apply(u,_n([],Ie(l),!1))},s.prototype.hasListeners=function(a){return this.eventHandlers.has(a)},s.prototype.registerPotentialNode=function(a,l){this.potentialNodes.set(a,l)},s.prototype.mount=function(a,l){var c=this,u;if(l===void 0&&(l=!1),!this.instance){this.isSVG=a instanceof SVGElement&&a.tagName!==\"svg\",this.instance=a;var d=this.options,p=d.layoutId,f=d.layout,m=d.visualElement;if(m&&!m.getInstance()&&m.mount(a),this.root.nodes.add(this),(u=this.parent)===null||u===void 0||u.children.add(this),this.id&&this.root.potentialNodes.delete(this.id),l&&(f||p)&&(this.isLayoutDirty=!0),t){var v,b=function(){return c.root.updateBlockedByResize=!1};t(a,function(){c.root.updateBlockedByResize=!0,clearTimeout(v),v=window.setTimeout(b,250),Vs.hasAnimatedSinceResize&&(Vs.hasAnimatedSinceResize=!1,c.nodes.forEach(bEe))})}p&&this.root.registerSharedNode(p,this),this.options.animate!==!1&&m&&(p||f)&&this.addEventListener(\"didUpdate\",function(y){var g,E,x,w,C,T=y.delta,A=y.hasLayoutChanged,S=y.hasRelativeTargetChanged,k=y.layout;if(c.isTreeAnimationBlocked()){c.target=void 0,c.relativeTarget=void 0;return}var q=(E=(g=c.options.transition)!==null&&g!==void 0?g:m.getDefaultTransition())!==null&&E!==void 0?E:kEe,H=m.getProps(),V=H.onLayoutAnimationStart,N=H.onLayoutAnimationComplete,M=!c.targetLayout||!wT(c.targetLayout,k)||S,R=!A&&S;if(!((x=c.resumeFrom)===null||x===void 0)&&x.instance||R||A&&(M||!c.currentAnimation)){c.resumeFrom&&(c.resumingFrom=c.resumeFrom,c.resumingFrom.resumingFrom=void 0),c.setAnimationOrigin(T,R);var I=G(G({},Bv(q,\"layout\")),{onPlay:V,onComplete:N});m.shouldReduceMotion&&(I.delay=0,I.type=!1),c.startAnimation(I)}else!A&&c.animationProgress===0&&c.finishAnimation(),c.isLead()&&((C=(w=c.options).onExitComplete)===null||C===void 0||C.call(w));c.targetLayout=k})}},s.prototype.unmount=function(){var a,l;this.options.layoutId&&this.willUpdate(),this.root.nodes.remove(this),(a=this.getStack())===null||a===void 0||a.remove(this),(l=this.parent)===null||l===void 0||l.children.delete(this),this.instance=void 0,Gi.preRender(this.updateProjection)},s.prototype.blockUpdate=function(){this.updateManuallyBlocked=!0},s.prototype.unblockUpdate=function(){this.updateManuallyBlocked=!1},s.prototype.isUpdateBlocked=function(){return this.updateManuallyBlocked||this.updateBlockedByResize},s.prototype.isTreeAnimationBlocked=function(){var a;return this.isAnimationBlocked||((a=this.parent)===null||a===void 0?void 0:a.isTreeAnimationBlocked())||!1},s.prototype.startUpdate=function(){var a;this.isUpdateBlocked()||(this.isUpdating=!0,(a=this.nodes)===null||a===void 0||a.forEach(_Ee))},s.prototype.willUpdate=function(a){var l,c,u;if(a===void 0&&(a=!0),this.root.isUpdateBlocked()){(c=(l=this.options).onExitComplete)===null||c===void 0||c.call(l);return}if(!this.root.isUpdating&&this.root.startUpdate(),!this.isLayoutDirty){this.isLayoutDirty=!0;for(var d=0;d<this.path.length;d++){var p=this.path[d];p.shouldResetTransform=!0,p.updateScroll()}var f=this.options,m=f.layoutId,v=f.layout;if(!(m===void 0&&!v)){var b=(u=this.options.visualElement)===null||u===void 0?void 0:u.getProps().transformTemplate;this.prevTransformTemplateValue=b==null?void 0:b(this.latestValues,\"\"),this.updateSnapshot(),a&&this.notifyListeners(\"willUpdate\")}}},s.prototype.didUpdate=function(){var a=this.isUpdateBlocked();if(a){this.unblockUpdate(),this.clearAllSnapshots(),this.nodes.forEach(sb);return}this.isUpdating&&(this.isUpdating=!1,this.potentialNodes.size&&(this.potentialNodes.forEach(NEe),this.potentialNodes.clear()),this.nodes.forEach(EEe),this.nodes.forEach(vEe),this.nodes.forEach(gEe),this.clearAllSnapshots(),Rd.update(),Rd.preRender(),Rd.render())},s.prototype.clearAllSnapshots=function(){this.nodes.forEach(yEe),this.sharedNodes.forEach(SEe)},s.prototype.scheduleUpdateProjection=function(){Sn.preRender(this.updateProjection,!1,!0)},s.prototype.scheduleCheckAfterUnmount=function(){var a=this;Sn.postRender(function(){a.isLayoutDirty?a.root.didUpdate():a.root.checkUpdateFailed()})},s.prototype.updateSnapshot=function(){if(!(this.snapshot||!this.instance)){var a=this.measure(),l=this.removeTransform(this.removeElementScroll(a));ub(l),this.snapshot={measured:a,layout:l,latestValues:{}}}},s.prototype.updateLayout=function(){var a;if(this.instance&&(this.updateScroll(),!(!(this.options.alwaysMeasureLayout&&this.isLead())&&!this.isLayoutDirty))){if(this.resumeFrom&&!this.resumeFrom.instance)for(var l=0;l<this.path.length;l++){var c=this.path[l];c.updateScroll()}var u=this.measure();ub(u);var d=this.layout;this.layout={measured:u,actual:this.removeElementScroll(u)},this.layoutCorrected=dt(),this.isLayoutDirty=!1,this.projectionDelta=void 0,this.notifyListeners(\"measure\",this.layout.actual),(a=this.options.visualElement)===null||a===void 0||a.notifyLayoutMeasure(this.layout.actual,d==null?void 0:d.actual)}},s.prototype.updateScroll=function(){this.options.layoutScroll&&this.instance&&(this.isScrollRoot=o(this.instance),this.scroll=r(this.instance))},s.prototype.resetTransform=function(){var a;if(i){var l=this.isLayoutDirty||this.shouldResetTransform,c=this.projectionDelta&&!xT(this.projectionDelta),u=(a=this.options.visualElement)===null||a===void 0?void 0:a.getProps().transformTemplate,d=u==null?void 0:u(this.latestValues,\"\"),p=d!==this.prevTransformTemplateValue;l&&(c||yr(this.latestValues)||p)&&(i(this.instance,d),this.shouldResetTransform=!1,this.scheduleRender())}},s.prototype.measure=function(){var a=this.options.visualElement;if(!a)return dt();var l=a.measureViewportBox(),c=this.root.scroll;return c&&(wr(l.x,c.x),wr(l.y,c.y)),l},s.prototype.removeElementScroll=function(a){var l=dt();un(l,a);for(var c=0;c<this.path.length;c++){var u=this.path[c],d=u.scroll,p=u.options,f=u.isScrollRoot;if(u!==this.root&&d&&p.layoutScroll){if(f){un(l,a);var m=this.root.scroll;m&&(wr(l.x,-m.x),wr(l.y,-m.y))}wr(l.x,d.x),wr(l.y,d.y)}}return l},s.prototype.applyTransform=function(a,l){l===void 0&&(l=!1);var c=dt();un(c,a);for(var u=0;u<this.path.length;u++){var d=this.path[u];!l&&d.options.layoutScroll&&d.scroll&&d!==d.root&&yi(c,{x:-d.scroll.x,y:-d.scroll.y}),yr(d.latestValues)&&yi(c,d.latestValues)}return yr(this.latestValues)&&yi(c,this.latestValues),c},s.prototype.removeTransform=function(a){var l,c=dt();un(c,a);for(var u=0;u<this.path.length;u++){var d=this.path[u];if(d.instance&&yr(d.latestValues)){uT(d.latestValues)&&d.updateSnapshot();var p=dt(),f=d.measure();un(p,f),nb(c,d.latestValues,(l=d.snapshot)===null||l===void 0?void 0:l.layout,p)}}return yr(this.latestValues)&&nb(c,this.latestValues),c},s.prototype.setTargetDelta=function(a){this.targetDelta=a,this.root.scheduleUpdateProjection()},s.prototype.setOptions=function(a){var l;this.options=G(G(G({},this.options),a),{crossfade:(l=a.crossfade)!==null&&l!==void 0?l:!0})},s.prototype.clearMeasurements=function(){this.scroll=void 0,this.layout=void 0,this.snapshot=void 0,this.prevTransformTemplateValue=void 0,this.targetDelta=void 0,this.target=void 0,this.isLayoutDirty=!1},s.prototype.resolveTargetDelta=function(){var a,l=this.options,c=l.layout,u=l.layoutId;!this.layout||!(c||u)||(!this.targetDelta&&!this.relativeTarget&&(this.relativeParent=this.getClosestProjectingParent(),this.relativeParent&&this.relativeParent.layout&&(this.relativeTarget=dt(),this.relativeTargetOrigin=dt(),zs(this.relativeTargetOrigin,this.layout.actual,this.relativeParent.layout.actual),un(this.relativeTarget,this.relativeTargetOrigin))),!(!this.relativeTarget&&!this.targetDelta)&&(this.target||(this.target=dt(),this.targetWithTransforms=dt()),this.relativeTarget&&this.relativeTargetOrigin&&(!((a=this.relativeParent)===null||a===void 0)&&a.target)?v1e(this.target,this.relativeTarget,this.relativeParent.target):this.targetDelta?(this.resumingFrom?this.target=this.applyTransform(this.layout.actual):un(this.target,this.layout.actual),fT(this.target,this.targetDelta)):un(this.target,this.layout.actual),this.attemptToResolveRelativeTarget&&(this.attemptToResolveRelativeTarget=!1,this.relativeParent=this.getClosestProjectingParent(),this.relativeParent&&!!this.relativeParent.resumingFrom==!!this.resumingFrom&&!this.relativeParent.options.layoutScroll&&this.relativeParent.target&&(this.relativeTarget=dt(),this.relativeTargetOrigin=dt(),zs(this.relativeTargetOrigin,this.target,this.relativeParent.target),un(this.relativeTarget,this.relativeTargetOrigin)))))},s.prototype.getClosestProjectingParent=function(){if(!(!this.parent||yr(this.parent.latestValues)))return(this.parent.relativeTarget||this.parent.targetDelta)&&this.parent.layout?this.parent:this.parent.getClosestProjectingParent()},s.prototype.calcProjection=function(){var a,l=this.options,c=l.layout,u=l.layoutId;if(this.isTreeAnimating=!!(!((a=this.parent)===null||a===void 0)&&a.isTreeAnimating||this.currentAnimation||this.pendingAnimation),this.isTreeAnimating||(this.targetDelta=this.relativeTarget=void 0),!(!this.layout||!(c||u))){var d=this.getLead();un(this.layoutCorrected,this.layout.actual),C1e(this.layoutCorrected,this.treeScale,this.path,!!this.resumingFrom||this!==d);var p=d.target;if(p){this.projectionDelta||(this.projectionDelta=Hs(),this.projectionDeltaWithTransform=Hs());var f=this.treeScale.x,m=this.treeScale.y,v=this.projectionTransform;Bs(this.projectionDelta,this.layoutCorrected,p,this.latestValues),this.projectionTransform=ob(this.projectionDelta,this.treeScale),(this.projectionTransform!==v||this.treeScale.x!==f||this.treeScale.y!==m)&&(this.hasProjected=!0,this.scheduleRender(),this.notifyListeners(\"projectionUpdate\",p))}}},s.prototype.hide=function(){this.isVisible=!1},s.prototype.show=function(){this.isVisible=!0},s.prototype.scheduleRender=function(a){var l,c,u;a===void 0&&(a=!0),(c=(l=this.options).scheduleRender)===null||c===void 0||c.call(l),a&&((u=this.getStack())===null||u===void 0||u.scheduleRender()),this.resumingFrom&&!this.resumingFrom.instance&&(this.resumingFrom=void 0)},s.prototype.setAnimationOrigin=function(a,l){var c=this,u;l===void 0&&(l=!1);var d=this.snapshot,p=(d==null?void 0:d.latestValues)||{},f=G({},this.latestValues),m=Hs();this.relativeTarget=this.relativeTargetOrigin=void 0,this.attemptToResolveRelativeTarget=!l;var v=dt(),b=d==null?void 0:d.isShared,y=(((u=this.getStack())===null||u===void 0?void 0:u.members.length)||0)<=1,g=!!(b&&!y&&this.options.crossfade===!0&&!this.path.some(TEe));this.animationProgress=0,this.mixTargetDelta=function(E){var x,w=E/1e3;ab(m.x,a.x,w),ab(m.y,a.y,w),c.setTargetDelta(m),c.relativeTarget&&c.relativeTargetOrigin&&c.layout&&(!((x=c.relativeParent)===null||x===void 0)&&x.layout)&&(zs(v,c.layout.actual,c.relativeParent.layout.actual),CEe(c.relativeTarget,c.relativeTargetOrigin,v,w)),b&&(c.animationValues=f,sEe(f,p,c.latestValues,w,g,y)),c.root.scheduleUpdateProjection(),c.scheduleRender(),c.animationProgress=w},this.mixTargetDelta(0)},s.prototype.startAnimation=function(a){var l=this,c,u;this.notifyListeners(\"animationStart\"),(c=this.currentAnimation)===null||c===void 0||c.stop(),this.resumingFrom&&((u=this.resumingFrom.currentAnimation)===null||u===void 0||u.stop()),this.pendingAnimation&&(Gi.update(this.pendingAnimation),this.pendingAnimation=void 0),this.pendingAnimation=Sn.update(function(){Vs.hasAnimatedSinceResize=!0,l.currentAnimation=oEe(0,ib,G(G({},a),{onUpdate:function(d){var p;l.mixTargetDelta(d),(p=a.onUpdate)===null||p===void 0||p.call(a,d)},onComplete:function(){var d;(d=a.onComplete)===null||d===void 0||d.call(a),l.completeAnimation()}})),l.resumingFrom&&(l.resumingFrom.currentAnimation=l.currentAnimation),l.pendingAnimation=void 0})},s.prototype.completeAnimation=function(){var a;this.resumingFrom&&(this.resumingFrom.currentAnimation=void 0,this.resumingFrom.preserveOpacity=void 0),(a=this.getStack())===null||a===void 0||a.exitAnimationComplete(),this.resumingFrom=this.currentAnimation=this.animationValues=void 0,this.notifyListeners(\"animationComplete\")},s.prototype.finishAnimation=function(){var a;this.currentAnimation&&((a=this.mixTargetDelta)===null||a===void 0||a.call(this,ib),this.currentAnimation.stop()),this.completeAnimation()},s.prototype.applyTransformsToTarget=function(){var a=this.getLead(),l=a.targetWithTransforms,c=a.target,u=a.layout,d=a.latestValues;!l||!c||!u||(un(l,c),yi(l,d),Bs(this.projectionDeltaWithTransform,this.layoutCorrected,l,d))},s.prototype.registerSharedNode=function(a,l){var c,u,d;this.sharedNodes.has(a)||this.sharedNodes.set(a,new dEe);var p=this.sharedNodes.get(a);p.add(l),l.promote({transition:(c=l.options.initialPromotionConfig)===null||c===void 0?void 0:c.transition,preserveFollowOpacity:(d=(u=l.options.initialPromotionConfig)===null||u===void 0?void 0:u.shouldPreserveFollowOpacity)===null||d===void 0?void 0:d.call(u,l)})},s.prototype.isLead=function(){var a=this.getStack();return a?a.lead===this:!0},s.prototype.getLead=function(){var a,l=this.options.layoutId;return l?((a=this.getStack())===null||a===void 0?void 0:a.lead)||this:this},s.prototype.getPrevLead=function(){var a,l=this.options.layoutId;return l?(a=this.getStack())===null||a===void 0?void 0:a.prevLead:void 0},s.prototype.getStack=function(){var a=this.options.layoutId;if(a)return this.root.sharedNodes.get(a)},s.prototype.promote=function(a){var l=a===void 0?{}:a,c=l.needsReset,u=l.transition,d=l.preserveFollowOpacity,p=this.getStack();p&&p.promote(this,d),c&&(this.projectionDelta=void 0,this.needsReset=!0),u&&this.setOptions({transition:u})},s.prototype.relegate=function(){var a=this.getStack();return a?a.relegate(this):!1},s.prototype.resetRotation=function(){var a=this.options.visualElement;if(a){for(var l=!1,c={},u=0;u<kh.length;u++){var d=kh[u],p=\"rotate\"+d;a.getStaticValue(p)&&(l=!0,c[p]=a.getStaticValue(p),a.setStaticValue(p,0))}if(l){a==null||a.syncRender();for(var p in c)a.setStaticValue(p,c[p]);a.scheduleRender()}}},s.prototype.getProjectionStyles=function(a){var l,c,u,d,p,f;a===void 0&&(a={});var m={};if(!this.instance||this.isSVG)return m;if(this.isVisible)m.visibility=\"\";else return{visibility:\"hidden\"};var v=(l=this.options.visualElement)===null||l===void 0?void 0:l.getProps().transformTemplate;if(this.needsReset)return this.needsReset=!1,m.opacity=\"\",m.pointerEvents=dc(a.pointerEvents)||\"\",m.transform=v?v(this.latestValues,\"\"):\"none\",m;var b=this.getLead();if(!this.projectionDelta||!this.layout||!b.target){var y={};return this.options.layoutId&&(y.opacity=(c=this.latestValues.opacity)!==null&&c!==void 0?c:1,y.pointerEvents=dc(a.pointerEvents)||\"\"),this.hasProjected&&!yr(this.latestValues)&&(y.transform=v?v({},\"\"):\"none\",this.hasProjected=!1),y}var g=b.animationValues||b.latestValues;this.applyTransformsToTarget(),m.transform=ob(this.projectionDeltaWithTransform,this.treeScale,g),v&&(m.transform=v(g,m.transform));var E=this.projectionDelta,x=E.x,w=E.y;m.transformOrigin=\"\".concat(x.origin*100,\"% \").concat(w.origin*100,\"% 0\"),b.animationValues?m.opacity=b===this?(d=(u=g.opacity)!==null&&u!==void 0?u:this.latestValues.opacity)!==null&&d!==void 0?d:1:this.preserveOpacity?this.latestValues.opacity:g.opacityExit:m.opacity=b===this?(p=g.opacity)!==null&&p!==void 0?p:\"\":(f=g.opacityExit)!==null&&f!==void 0?f:0;for(var C in ru)if(g[C]!==void 0){var T=ru[C],A=T.correct,S=T.applyTo,k=A(g[C],b);if(S)for(var q=S.length,H=0;H<q;H++)m[S[H]]=k;else m[C]=k}return this.options.layoutId&&(m.pointerEvents=b===this?dc(a.pointerEvents)||\"\":\"none\"),m},s.prototype.clearSnapshot=function(){this.resumeFrom=this.snapshot=void 0},s.prototype.resetTree=function(){this.root.nodes.forEach(function(a){var l;return(l=a.currentAnimation)===null||l===void 0?void 0:l.stop()}),this.root.nodes.forEach(sb),this.root.sharedNodes.clear()},s}()}function vEe(e){e.updateLayout()}function gEe(e){var t,n,r,o,i=(n=(t=e.resumeFrom)===null||t===void 0?void 0:t.snapshot)!==null&&n!==void 0?n:e.snapshot;if(e.isLead()&&e.layout&&i&&e.hasListeners(\"didUpdate\")){var s=e.layout,a=s.actual,l=s.measured;e.options.animationType===\"size\"?Ln(function(g){var E=i.isShared?i.measured[g]:i.layout[g],x=dr(E);E.min=a[g].min,E.max=E.min+x}):e.options.animationType===\"position\"&&Ln(function(g){var E=i.isShared?i.measured[g]:i.layout[g],x=dr(a[g]);E.max=E.min+x});var c=Hs();Bs(c,a,i.layout);var u=Hs();i.isShared?Bs(u,e.applyTransform(l,!0),i.measured):Bs(u,a,i.layout);var d=!xT(c),p=!1;if(!e.resumeFrom&&(e.relativeParent=e.getClosestProjectingParent(),e.relativeParent&&!e.relativeParent.resumeFrom)){var f=e.relativeParent,m=f.snapshot,v=f.layout;if(m&&v){var b=dt();zs(b,i.layout,m.layout);var y=dt();zs(y,a,v.actual),wT(b,y)||(p=!0)}}e.notifyListeners(\"didUpdate\",{layout:a,snapshot:i,delta:u,layoutDelta:c,hasLayoutChanged:d,hasRelativeTargetChanged:p})}else e.isLead()&&((o=(r=e.options).onExitComplete)===null||o===void 0||o.call(r));e.options.transition=void 0}function yEe(e){e.clearSnapshot()}function sb(e){e.clearMeasurements()}function EEe(e){var t=e.options.visualElement;t!=null&&t.getProps().onBeforeLayoutMeasure&&t.notifyBeforeLayoutMeasure(),e.resetTransform()}function bEe(e){e.finishAnimation(),e.targetDelta=e.relativeTarget=e.target=void 0}function xEe(e){e.resolveTargetDelta()}function wEe(e){e.calcProjection()}function _Ee(e){e.resetRotation()}function SEe(e){e.removeLeadSnapshot()}function ab(e,t,n){e.translate=Oe(t.translate,0,n),e.scale=Oe(t.scale,1,n),e.origin=t.origin,e.originPoint=t.originPoint}function lb(e,t,n,r){e.min=Oe(t.min,n.min,r),e.max=Oe(t.max,n.max,r)}function CEe(e,t,n,r){lb(e.x,t.x,n.x,r),lb(e.y,t.y,n.y,r)}function TEe(e){return e.animationValues&&e.animationValues.opacityExit!==void 0}var kEe={duration:.45,ease:[.4,0,.1,1]};function NEe(e,t){for(var n=e.root,r=e.path.length-1;r>=0;r--)if(e.path[r].instance){n=e.path[r];break}var o=n&&n!==e.root?n.instance:document,i=o.querySelector('[data-projection-id=\"'.concat(t,'\"]'));i&&e.mount(i,!0)}function cb(e){e.min=Math.round(e.min),e.max=Math.round(e.max)}function ub(e){cb(e.x),cb(e.y)}var AEe=_T({attachResizeListener:function(e,t){return mf(e,\"resize\",t)},measureScroll:function(){return{x:document.documentElement.scrollLeft||document.body.scrollLeft,y:document.documentElement.scrollTop||document.body.scrollTop}},checkIsScrollRoot:function(){return!0}}),Md={current:void 0},DEe=_T({measureScroll:function(e){return{x:e.scrollLeft,y:e.scrollTop}},defaultParent:function(){if(!Md.current){var e=new AEe(0,{});e.mount(window),e.setOptions({layoutScroll:!0}),Md.current=e}return Md.current},resetTransform:function(e,t){e.style.transform=t??\"none\"},checkIsScrollRoot:function(e){return window.getComputedStyle(e).position===\"fixed\"}}),IEe=G(G(G(G({},p1e),Aye),O1e),rEe),ST=x0e(function(e,t){return age(e,t,IEe,J1e,DEe)}),CT=h.createContext(null);function REe(e,t,n,r){if(!r)return e;var o=e.findIndex(function(u){return u.value===t});if(o===-1)return e;var i=r>0?1:-1,s=e[o+i];if(!s)return e;var a=e[o],l=s.layout,c=Oe(l.min,l.max,.5);return i===1&&a.layout.max+n>c||i===-1&&a.layout.min+n<c?Gye(e,o,o+i):e}function LEe(e,t){var n=e.children,r=e.as,o=r===void 0?\"ul\":r,i=e.axis,s=i===void 0?\"y\":i,a=e.onReorder,l=e.values,c=yt(e,[\"children\",\"as\",\"axis\",\"onReorder\",\"values\"]),u=Jr(function(){return ST(o)}),d=[],p=h.useRef(!1),f={axis:s,registerItem:function(m,v){v&&d.findIndex(function(b){return m===b.value})===-1&&(d.push({value:m,layout:v[s]}),d.sort($Ee))},updateOrder:function(m,v,b){if(!p.current){var y=REe(d,m,v,b);d!==y&&(p.current=!0,a(y.map(PEe).filter(function(g){return l.indexOf(g)!==-1})))}}};return h.useEffect(function(){p.current=!1}),h.createElement(u,G({},c,{ref:t}),h.createElement(CT.Provider,{value:f},n))}var OEe=h.forwardRef(LEe);function PEe(e){return e.value}function $Ee(e,t){return e.layout.min-t.layout.min}function TT(e){var t=Jr(function(){return $o(e)}),n=h.useContext(uf).isStatic;if(n){var r=Ie(h.useState(e),2),o=r[1];h.useEffect(function(){return t.onChange(o)},[])}return t}var FEe=function(e){return typeof e==\"object\"&&e.mix},MEe=function(e){return FEe(e)?e.mix:void 0};function VEe(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=!Array.isArray(e[0]),r=n?0:-1,o=e[0+r],i=e[1+r],s=e[2+r],a=e[3+r],l=Pv(i,s,G({mixer:MEe(s[0])},a));return n?l(o):l}function jEe(e,t){Ch(function(){var n=e.map(function(r){return r.onChange(t)});return function(){return n.forEach(function(r){return r()})}})}function qEe(e,t){var n=TT(t()),r=function(){return n.set(t())};return r(),jEe(e,function(){return Sn.update(r,!1,!0)}),n}function UEe(e,t,n,r){var o=typeof t==\"function\"?t:VEe(t,n,r);return Array.isArray(e)?fb(e,o):fb([e],function(i){var s=Ie(i,1),a=s[0];return o(a)})}function fb(e,t){var n=Jr(function(){return[]});return qEe(e,function(){n.length=0;for(var r=e.length,o=0;o<r;o++)n[o]=e[o].get();return t(n)})}function db(e,t){return t===void 0&&(t=0),Un(e)?e:TT(t)}function BEe(e,t){var n=e.children,r=e.style,o=e.value,i=e.as,s=i===void 0?\"li\":i,a=e.onDrag,l=e.layout,c=l===void 0?!0:l,u=yt(e,[\"children\",\"style\",\"value\",\"as\",\"onDrag\",\"layout\"]),d=Jr(function(){return ST(s)}),p=h.useContext(CT),f={x:db(r==null?void 0:r.x),y:db(r==null?void 0:r.y)},m=UEe([f.x,f.y],function(x){var w=Ie(x,2),C=w[0],T=w[1];return C||T?1:\"unset\"}),v=h.useRef(null),b=p,y=b.axis,g=b.registerItem,E=b.updateOrder;return h.useEffect(function(){g(o,v.current)},[p]),h.createElement(d,G({drag:y},u,{dragSnapToOrigin:!0,style:G(G({},r),{x:f.x,y:f.y,zIndex:m}),layout:c,onDrag:function(x,w){var C=w.velocity;C[y]&&E(o,f[y].get(),C[y]),a==null||a(x,w)},onLayoutMeasure:function(x){v.current=x},ref:t}),n)}var zEe=h.forwardRef(BEe),kT={Group:OEe,Item:zEe};const[Ef,f_e]=Bo(\"Tooltip\",[Ju]),Qv=Ju(),HEe=\"TooltipProvider\",GEe=700,Bh=\"tooltip.open\",[WEe,Yv]=Ef(HEe),QEe=e=>{const{__scopeTooltip:t,delayDuration:n=GEe,skipDelayDuration:r=300,disableHoverableContent:o=!1,children:i}=e,[s,a]=h.useState(!0),l=h.useRef(!1),c=h.useRef(0);return h.useEffect(()=>{const u=c.current;return()=>window.clearTimeout(u)},[]),h.createElement(WEe,{scope:t,isOpenDelayed:s,delayDuration:n,onOpen:h.useCallback(()=>{window.clearTimeout(c.current),a(!1)},[]),onClose:h.useCallback(()=>{window.clearTimeout(c.current),c.current=window.setTimeout(()=>a(!0),r)},[r]),isPointerInTransitRef:l,onPointerInTransitChange:h.useCallback(u=>{l.current=u},[]),disableHoverableContent:o},i)},Zv=\"Tooltip\",[YEe,Za]=Ef(Zv),ZEe=e=>{const{__scopeTooltip:t,children:n,open:r,defaultOpen:o=!1,onOpenChange:i,disableHoverableContent:s,delayDuration:a}=e,l=Yv(Zv,e.__scopeTooltip),c=Qv(t),[u,d]=h.useState(null),p=_o(),f=h.useRef(0),m=s??l.disableHoverableContent,v=a??l.delayDuration,b=h.useRef(!1),[y=!1,g]=Qu({prop:r,defaultProp:o,onChange:T=>{T?(l.onOpen(),document.dispatchEvent(new CustomEvent(Bh))):l.onClose(),i==null||i(T)}}),E=h.useMemo(()=>y?b.current?\"delayed-open\":\"instant-open\":\"closed\",[y]),x=h.useCallback(()=>{window.clearTimeout(f.current),b.current=!1,g(!0)},[g]),w=h.useCallback(()=>{window.clearTimeout(f.current),g(!1)},[g]),C=h.useCallback(()=>{window.clearTimeout(f.current),f.current=window.setTimeout(()=>{b.current=!0,g(!0)},v)},[v,g]);return h.useEffect(()=>()=>window.clearTimeout(f.current),[]),h.createElement(gS,c,h.createElement(YEe,{scope:t,contentId:p,open:y,stateAttribute:E,trigger:u,onTriggerChange:d,onTriggerEnter:h.useCallback(()=>{l.isOpenDelayed?C():x()},[l.isOpenDelayed,C,x]),onTriggerLeave:h.useCallback(()=>{m?w():window.clearTimeout(f.current)},[w,m]),onOpen:x,onClose:w,disableHoverableContent:m},n))},pb=\"TooltipTrigger\",XEe=h.forwardRef((e,t)=>{const{__scopeTooltip:n,...r}=e,o=Za(pb,n),i=Yv(pb,n),s=Qv(n),a=h.useRef(null),l=at(t,a,o.onTriggerChange),c=h.useRef(!1),u=h.useRef(!1),d=h.useCallback(()=>c.current=!1,[]);return h.useEffect(()=>()=>document.removeEventListener(\"pointerup\",d),[d]),h.createElement(yS,oe({asChild:!0},s),h.createElement(gt.button,oe({\"aria-describedby\":o.open?o.contentId:void 0,\"data-state\":o.stateAttribute},r,{ref:l,onPointerMove:ae(e.onPointerMove,p=>{p.pointerType!==\"touch\"&&!u.current&&!i.isPointerInTransitRef.current&&(o.onTriggerEnter(),u.current=!0)}),onPointerLeave:ae(e.onPointerLeave,()=>{o.onTriggerLeave(),u.current=!1}),onPointerDown:ae(e.onPointerDown,()=>{c.current=!0,document.addEventListener(\"pointerup\",d,{once:!0})}),onFocus:ae(e.onFocus,()=>{c.current||o.onOpen()}),onBlur:ae(e.onBlur,o.onClose),onClick:ae(e.onClick,o.onClose)})))}),NT=\"TooltipPortal\",[JEe,KEe]=Ef(NT,{forceMount:void 0}),ebe=e=>{const{__scopeTooltip:t,forceMount:n,children:r,container:o}=e,i=Za(NT,t);return h.createElement(JEe,{scope:t,forceMount:n},h.createElement(Xr,{present:n||i.open},h.createElement(iv,{asChild:!0,container:o},r)))},Ta=\"TooltipContent\",tbe=h.forwardRef((e,t)=>{const n=KEe(Ta,e.__scopeTooltip),{forceMount:r=n.forceMount,side:o=\"top\",...i}=e,s=Za(Ta,e.__scopeTooltip);return h.createElement(Xr,{present:r||s.open},s.disableHoverableContent?h.createElement(AT,oe({side:o},i,{ref:t})):h.createElement(nbe,oe({side:o},i,{ref:t})))}),nbe=h.forwardRef((e,t)=>{const n=Za(Ta,e.__scopeTooltip),r=Yv(Ta,e.__scopeTooltip),o=h.useRef(null),i=at(t,o),[s,a]=h.useState(null),{trigger:l,onClose:c}=n,u=o.current,{onPointerInTransitChange:d}=r,p=h.useCallback(()=>{a(null),d(!1)},[d]),f=h.useCallback((m,v)=>{const b=m.currentTarget,y={x:m.clientX,y:m.clientY},g=obe(y,b.getBoundingClientRect()),E=ibe(y,g),x=sbe(v.getBoundingClientRect()),w=lbe([...E,...x]);a(w),d(!0)},[d]);return h.useEffect(()=>()=>p(),[p]),h.useEffect(()=>{if(l&&u){const m=b=>f(b,u),v=b=>f(b,l);return l.addEventListener(\"pointerleave\",m),u.addEventListener(\"pointerleave\",v),()=>{l.removeEventListener(\"pointerleave\",m),u.removeEventListener(\"pointerleave\",v)}}},[l,u,f,p]),h.useEffect(()=>{if(s){const m=v=>{const b=v.target,y={x:v.clientX,y:v.clientY},g=(l==null?void 0:l.contains(b))||(u==null?void 0:u.contains(b)),E=!abe(y,s);g?p():E&&(p(),c())};return document.addEventListener(\"pointermove\",m),()=>document.removeEventListener(\"pointermove\",m)}},[l,u,s,c,p]),h.createElement(AT,oe({},e,{ref:i}))}),[rbe,d_e]=Ef(Zv,{isInside:!1}),AT=h.forwardRef((e,t)=>{const{__scopeTooltip:n,children:r,\"aria-label\":o,onEscapeKeyDown:i,onPointerDownOutside:s,...a}=e,l=Za(Ta,n),c=Qv(n),{onClose:u}=l;return h.useEffect(()=>(document.addEventListener(Bh,u),()=>document.removeEventListener(Bh,u)),[u]),h.useEffect(()=>{if(l.trigger){const d=p=>{const f=p.target;f!=null&&f.contains(l.trigger)&&u()};return window.addEventListener(\"scroll\",d,{capture:!0}),()=>window.removeEventListener(\"scroll\",d,{capture:!0})}},[l.trigger,u]),h.createElement(ov,{asChild:!0,disableOutsidePointerEvents:!1,onEscapeKeyDown:i,onPointerDownOutside:s,onFocusOutside:d=>d.preventDefault(),onDismiss:u},h.createElement(ES,oe({\"data-state\":l.stateAttribute},c,a,{ref:t,style:{...a.style,\"--radix-tooltip-content-transform-origin\":\"var(--radix-popper-transform-origin)\",\"--radix-tooltip-content-available-width\":\"var(--radix-popper-available-width)\",\"--radix-tooltip-content-available-height\":\"var(--radix-popper-available-height)\",\"--radix-tooltip-trigger-width\":\"var(--radix-popper-anchor-width)\",\"--radix-tooltip-trigger-height\":\"var(--radix-popper-anchor-height)\"}}),h.createElement(R_,null,r),h.createElement(rbe,{scope:n,isInside:!0},h.createElement(eS,{id:l.contentId,role:\"tooltip\"},o||r))))});function obe(e,t){const n=Math.abs(t.top-e.y),r=Math.abs(t.bottom-e.y),o=Math.abs(t.right-e.x),i=Math.abs(t.left-e.x);switch(Math.min(n,r,o,i)){case i:return\"left\";case o:return\"right\";case n:return\"top\";case r:return\"bottom\";default:throw new Error(\"unreachable\")}}function ibe(e,t,n=5){const r=[];switch(t){case\"top\":r.push({x:e.x-n,y:e.y+n},{x:e.x+n,y:e.y+n});break;case\"bottom\":r.push({x:e.x-n,y:e.y-n},{x:e.x+n,y:e.y-n});break;case\"left\":r.push({x:e.x+n,y:e.y-n},{x:e.x+n,y:e.y+n});break;case\"right\":r.push({x:e.x-n,y:e.y-n},{x:e.x-n,y:e.y+n});break}return r}function sbe(e){const{top:t,right:n,bottom:r,left:o}=e;return[{x:o,y:t},{x:n,y:t},{x:n,y:r},{x:o,y:r}]}function abe(e,t){const{x:n,y:r}=e;let o=!1;for(let i=0,s=t.length-1;i<t.length;s=i++){const a=t[i].x,l=t[i].y,c=t[s].x,u=t[s].y;l>r!=u>r&&n<(c-a)*(r-l)/(u-l)+a&&(o=!o)}return o}function lbe(e){const t=e.slice();return t.sort((n,r)=>n.x<r.x?-1:n.x>r.x?1:n.y<r.y?-1:n.y>r.y?1:0),cbe(t)}function cbe(e){if(e.length<=1)return e.slice();const t=[];for(let r=0;r<e.length;r++){const o=e[r];for(;t.length>=2;){const i=t[t.length-1],s=t[t.length-2];if((i.x-s.x)*(o.y-s.y)>=(i.y-s.y)*(o.x-s.x))t.pop();else break}t.push(o)}t.pop();const n=[];for(let r=e.length-1;r>=0;r--){const o=e[r];for(;n.length>=2;){const i=n[n.length-1],s=n[n.length-2];if((i.x-s.x)*(o.y-s.y)>=(i.y-s.y)*(o.x-s.x))n.pop();else break}n.push(o)}return n.pop(),t.length===1&&n.length===1&&t[0].x===n[0].x&&t[0].y===n[0].y?t:t.concat(n)}const ube=QEe,fbe=ZEe,dbe=XEe,pbe=ebe,hbe=tbe;var mbe=Object.defineProperty,vbe=(e,t,n)=>t in e?mbe(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,Vd=(e,t,n)=>(vbe(e,typeof t!=\"symbol\"?t+\"\":t,n),n);let gbe=class{constructor(){Vd(this,\"current\",this.detect()),Vd(this,\"handoffState\",\"pending\"),Vd(this,\"currentId\",0)}set(t){this.current!==t&&(this.handoffState=\"pending\",this.currentId=0,this.current=t)}reset(){this.set(this.detect())}nextId(){return++this.currentId}get isServer(){return this.current===\"server\"}get isClient(){return this.current===\"client\"}detect(){return typeof window>\"u\"||typeof document>\"u\"?\"server\":\"client\"}handoff(){this.handoffState===\"pending\"&&(this.handoffState=\"complete\")}get isHandoffComplete(){return this.handoffState===\"complete\"}},So=new gbe,jt=(e,t)=>{So.isServer?h.useEffect(e,t):h.useLayoutEffect(e,t)};function Xa(e){let t=h.useRef(e);return jt(()=>{t.current=e},[e]),t}function Xv(e,t){let[n,r]=h.useState(e),o=Xa(e);return jt(()=>r(o.current),[o,r,...t]),n}function ybe(e){typeof queueMicrotask==\"function\"?queueMicrotask(e):Promise.resolve().then(e).catch(t=>setTimeout(()=>{throw t}))}function du(){let e=[],t={addEventListener(n,r,o,i){return n.addEventListener(r,o,i),t.add(()=>n.removeEventListener(r,o,i))},requestAnimationFrame(...n){let r=requestAnimationFrame(...n);return t.add(()=>cancelAnimationFrame(r))},nextFrame(...n){return t.requestAnimationFrame(()=>t.requestAnimationFrame(...n))},setTimeout(...n){let r=setTimeout(...n);return t.add(()=>clearTimeout(r))},microTask(...n){let r={current:!0};return ybe(()=>{r.current&&n[0]()}),t.add(()=>{r.current=!1})},style(n,r,o){let i=n.style.getPropertyValue(r);return Object.assign(n.style,{[r]:o}),this.add(()=>{Object.assign(n.style,{[r]:i})})},group(n){let r=du();return n(r),this.add(()=>r.dispose())},add(n){return e.push(n),()=>{let r=e.indexOf(n);if(r>=0)for(let o of e.splice(r,1))o()}},dispose(){for(let n of e.splice(0))n()}};return t}function Jv(){let[e]=h.useState(du);return h.useEffect(()=>()=>e.dispose(),[e]),e}let we=function(e){let t=Xa(e);return $.useCallback((...n)=>t.current(...n),[t])};function Ebe(){let e=typeof document>\"u\";return\"useSyncExternalStore\"in Wd?(t=>t.useSyncExternalStore)(Wd)(()=>()=>{},()=>!1,()=>!e):!1}function bbe(){let e=Ebe(),[t,n]=h.useState(So.isHandoffComplete);return t&&So.isHandoffComplete===!1&&n(!1),h.useEffect(()=>{t!==!0&&n(!0)},[t]),h.useEffect(()=>So.handoff(),[]),e?!1:t}var hb;let Ja=(hb=$.useId)!=null?hb:function(){let e=bbe(),[t,n]=$.useState(e?()=>So.nextId():null);return jt(()=>{t===null&&n(So.nextId())},[t]),t!=null?\"\"+t:void 0};function nr(e,t,...n){if(e in t){let o=t[e];return typeof o==\"function\"?o(...n):o}let r=new Error(`Tried to handle \"${e}\" but there is no handler defined. Only defined handlers are: ${Object.keys(t).map(o=>`\"${o}\"`).join(\", \")}.`);throw Error.captureStackTrace&&Error.captureStackTrace(r,nr),r}function Kv(e){return So.isServer?null:e instanceof Node?e.ownerDocument:e!=null&&e.hasOwnProperty(\"current\")&&e.current instanceof Node?e.current.ownerDocument:document}let mb=[\"[contentEditable=true]\",\"[tabindex]\",\"a[href]\",\"area[href]\",\"button:not([disabled])\",\"iframe\",\"input:not([disabled])\",\"select:not([disabled])\",\"textarea:not([disabled])\"].map(e=>`${e}:not([tabindex='-1'])`).join(\",\");var xbe=(e=>(e[e.First=1]=\"First\",e[e.Previous=2]=\"Previous\",e[e.Next=4]=\"Next\",e[e.Last=8]=\"Last\",e[e.WrapAround=16]=\"WrapAround\",e[e.NoScroll=32]=\"NoScroll\",e))(xbe||{}),wbe=(e=>(e[e.Error=0]=\"Error\",e[e.Overflow=1]=\"Overflow\",e[e.Success=2]=\"Success\",e[e.Underflow=3]=\"Underflow\",e))(wbe||{}),_be=(e=>(e[e.Previous=-1]=\"Previous\",e[e.Next=1]=\"Next\",e))(_be||{}),DT=(e=>(e[e.Strict=0]=\"Strict\",e[e.Loose=1]=\"Loose\",e))(DT||{});function Sbe(e,t=0){var n;return e===((n=Kv(e))==null?void 0:n.body)?!1:nr(t,{0(){return e.matches(mb)},1(){let r=e;for(;r!==null;){if(r.matches(mb))return!0;r=r.parentElement}return!1}})}var Cbe=(e=>(e[e.Keyboard=0]=\"Keyboard\",e[e.Mouse=1]=\"Mouse\",e))(Cbe||{});typeof window<\"u\"&&typeof document<\"u\"&&(document.addEventListener(\"keydown\",e=>{e.metaKey||e.altKey||e.ctrlKey||(document.documentElement.dataset.headlessuiFocusVisible=\"\")},!0),document.addEventListener(\"click\",e=>{e.detail===1?delete document.documentElement.dataset.headlessuiFocusVisible:e.detail===0&&(document.documentElement.dataset.headlessuiFocusVisible=\"\")},!0));function Tbe(e,t=n=>n){return e.slice().sort((n,r)=>{let o=t(n),i=t(r);if(o===null||i===null)return 0;let s=o.compareDocumentPosition(i);return s&Node.DOCUMENT_POSITION_FOLLOWING?-1:s&Node.DOCUMENT_POSITION_PRECEDING?1:0})}function Ul(e,t,n){let r=Xa(t);h.useEffect(()=>{function o(i){r.current(i)}return document.addEventListener(e,o,n),()=>document.removeEventListener(e,o,n)},[e,n])}function kbe(e,t,n){let r=Xa(t);h.useEffect(()=>{function o(i){r.current(i)}return window.addEventListener(e,o,n),()=>window.removeEventListener(e,o,n)},[e,n])}function Nbe(e,t,n=!0){let r=h.useRef(!1);h.useEffect(()=>{requestAnimationFrame(()=>{r.current=n})},[n]);function o(s,a){if(!r.current||s.defaultPrevented)return;let l=a(s);if(l===null||!l.getRootNode().contains(l)||!l.isConnected)return;let c=function u(d){return typeof d==\"function\"?u(d()):Array.isArray(d)||d instanceof Set?d:[d]}(e);for(let u of c){if(u===null)continue;let d=u instanceof HTMLElement?u:u.current;if(d!=null&&d.contains(l)||s.composed&&s.composedPath().includes(d))return}return!Sbe(l,DT.Loose)&&l.tabIndex!==-1&&s.preventDefault(),t(s,l)}let i=h.useRef(null);Ul(\"pointerdown\",s=>{var a,l;r.current&&(i.current=((l=(a=s.composedPath)==null?void 0:a.call(s))==null?void 0:l[0])||s.target)},!0),Ul(\"mousedown\",s=>{var a,l;r.current&&(i.current=((l=(a=s.composedPath)==null?void 0:a.call(s))==null?void 0:l[0])||s.target)},!0),Ul(\"click\",s=>{i.current&&(o(s,()=>i.current),i.current=null)},!0),Ul(\"touchend\",s=>o(s,()=>s.target instanceof HTMLElement?s.target:null),!0),kbe(\"blur\",s=>o(s,()=>window.document.activeElement instanceof HTMLIFrameElement?window.document.activeElement:null),!0)}function vb(e){var t;if(e.type)return e.type;let n=(t=e.as)!=null?t:\"button\";if(typeof n==\"string\"&&n.toLowerCase()===\"button\")return\"button\"}function Abe(e,t){let[n,r]=h.useState(()=>vb(e));return jt(()=>{r(vb(e))},[e.type,e.as]),jt(()=>{n||t.current&&t.current instanceof HTMLButtonElement&&!t.current.hasAttribute(\"type\")&&r(\"button\")},[n,t]),n}let Dbe=Symbol();function Ka(...e){let t=h.useRef(e);h.useEffect(()=>{t.current=e},[e]);let n=we(r=>{for(let o of t.current)o!=null&&(typeof o==\"function\"?o(r):o.current=r)});return e.every(r=>r==null||(r==null?void 0:r[Dbe]))?void 0:n}function Ibe({container:e,accept:t,walk:n,enabled:r=!0}){let o=h.useRef(t),i=h.useRef(n);h.useEffect(()=>{o.current=t,i.current=n},[t,n]),jt(()=>{if(!e||!r)return;let s=Kv(e);if(!s)return;let a=o.current,l=i.current,c=Object.assign(d=>a(d),{acceptNode:a}),u=s.createTreeWalker(e,NodeFilter.SHOW_ELEMENT,c,!1);for(;u.nextNode();)l(u.currentNode)},[e,r,o,i])}function Rbe(e){throw new Error(\"Unexpected object: \"+e)}var rt=(e=>(e[e.First=0]=\"First\",e[e.Previous=1]=\"Previous\",e[e.Next=2]=\"Next\",e[e.Last=3]=\"Last\",e[e.Specific=4]=\"Specific\",e[e.Nothing=5]=\"Nothing\",e))(rt||{});function Lbe(e,t){let n=t.resolveItems();if(n.length<=0)return null;let r=t.resolveActiveIndex(),o=r??-1,i=(()=>{switch(e.focus){case 0:return n.findIndex(s=>!t.resolveDisabled(s));case 1:{let s=n.slice().reverse().findIndex((a,l,c)=>o!==-1&&c.length-l-1>=o?!1:!t.resolveDisabled(a));return s===-1?s:n.length-1-s}case 2:return n.findIndex((s,a)=>a<=o?!1:!t.resolveDisabled(s));case 3:{let s=n.slice().reverse().findIndex(a=>!t.resolveDisabled(a));return s===-1?s:n.length-1-s}case 4:return n.findIndex(s=>t.resolveId(s)===e.id);case 5:return null;default:Rbe(e)}})();return i===-1?r:i}function gb(...e){return Array.from(new Set(e.flatMap(t=>typeof t==\"string\"?t.split(\" \"):[]))).filter(Boolean).join(\" \")}var zh=(e=>(e[e.None=0]=\"None\",e[e.RenderStrategy=1]=\"RenderStrategy\",e[e.Static=2]=\"Static\",e))(zh||{}),Obe=(e=>(e[e.Unmount=0]=\"Unmount\",e[e.Hidden=1]=\"Hidden\",e))(Obe||{});function Go({ourProps:e,theirProps:t,slot:n,defaultTag:r,features:o,visible:i=!0,name:s}){let a=IT(t,e);if(i)return Bl(a,n,r,s);let l=o??0;if(l&2){let{static:c=!1,...u}=a;if(c)return Bl(u,n,r,s)}if(l&1){let{unmount:c=!0,...u}=a;return nr(c?0:1,{0(){return null},1(){return Bl({...u,hidden:!0,style:{display:\"none\"}},n,r,s)}})}return Bl(a,n,r,s)}function Bl(e,t={},n,r){let{as:o=n,children:i,refName:s=\"ref\",...a}=jd(e,[\"unmount\",\"static\"]),l=e.ref!==void 0?{[s]:e.ref}:{},c=typeof i==\"function\"?i(t):i;\"className\"in a&&a.className&&typeof a.className==\"function\"&&(a.className=a.className(t));let u={};if(t){let d=!1,p=[];for(let[f,m]of Object.entries(t))typeof m==\"boolean\"&&(d=!0),m===!0&&p.push(f);d&&(u[\"data-headlessui-state\"]=p.join(\" \"))}if(o===h.Fragment&&Object.keys(Hh(a)).length>0){if(!h.isValidElement(c)||Array.isArray(c)&&c.length>1)throw new Error(['Passing props on \"Fragment\"!',\"\",`The current component <${r} /> is rendering a \"Fragment\".`,\"However we need to passthrough the following props:\",Object.keys(a).map(m=>`  - ${m}`).join(`\n`),\"\",\"You can apply a few solutions:\",['Add an `as=\"...\"` prop, to ensure that we render an actual element instead of a \"Fragment\".',\"Render a single element as the child so that we can forward the props onto that element.\"].map(m=>`  - ${m}`).join(`\n`)].join(`\n`));let d=c.props,p=typeof(d==null?void 0:d.className)==\"function\"?(...m)=>gb(d==null?void 0:d.className(...m),a.className):gb(d==null?void 0:d.className,a.className),f=p?{className:p}:{};return h.cloneElement(c,Object.assign({},IT(c.props,Hh(jd(a,[\"ref\"]))),u,l,Pbe(c.ref,l.ref),f))}return h.createElement(o,Object.assign({},jd(a,[\"ref\"]),o!==h.Fragment&&l,o!==h.Fragment&&u),c)}function Pbe(...e){return{ref:e.every(t=>t==null)?void 0:t=>{for(let n of e)n!=null&&(typeof n==\"function\"?n(t):n.current=t)}}}function IT(...e){if(e.length===0)return{};if(e.length===1)return e[0];let t={},n={};for(let r of e)for(let o in r)o.startsWith(\"on\")&&typeof r[o]==\"function\"?(n[o]!=null||(n[o]=[]),n[o].push(r[o])):t[o]=r[o];if(t.disabled||t[\"aria-disabled\"])return Object.assign(t,Object.fromEntries(Object.keys(n).map(r=>[r,void 0])));for(let r in n)Object.assign(t,{[r](o,...i){let s=n[r];for(let a of s){if((o instanceof Event||(o==null?void 0:o.nativeEvent)instanceof Event)&&o.defaultPrevented)return;a(o,...i)}}});return t}function Wo(e){var t;return Object.assign(h.forwardRef(e),{displayName:(t=e.displayName)!=null?t:e.name})}function Hh(e){let t=Object.assign({},e);for(let n in t)t[n]===void 0&&delete t[n];return t}function jd(e,t=[]){let n=Object.assign({},e);for(let r of t)r in n&&delete n[r];return n}function $be(e){let t=e.parentElement,n=null;for(;t&&!(t instanceof HTMLFieldSetElement);)t instanceof HTMLLegendElement&&(n=t),t=t.parentElement;let r=(t==null?void 0:t.getAttribute(\"disabled\"))===\"\";return r&&Fbe(n)?!1:r}function Fbe(e){if(!e)return!1;let t=e.previousElementSibling;for(;t!==null;){if(t instanceof HTMLLegendElement)return!1;t=t.previousElementSibling}return!0}function RT(e={},t=null,n=[]){for(let[r,o]of Object.entries(e))OT(n,LT(t,r),o);return n}function LT(e,t){return e?e+\"[\"+t+\"]\":t}function OT(e,t,n){if(Array.isArray(n))for(let[r,o]of n.entries())OT(e,LT(t,r.toString()),o);else n instanceof Date?e.push([t,n.toISOString()]):typeof n==\"boolean\"?e.push([t,n?\"1\":\"0\"]):typeof n==\"string\"?e.push([t,n]):typeof n==\"number\"?e.push([t,`${n}`]):n==null?e.push([t,\"\"]):RT(n,t,e)}let Mbe=\"div\";var PT=(e=>(e[e.None=1]=\"None\",e[e.Focusable=2]=\"Focusable\",e[e.Hidden=4]=\"Hidden\",e))(PT||{});function Vbe(e,t){let{features:n=1,...r}=e,o={ref:t,\"aria-hidden\":(n&2)===2?!0:void 0,style:{position:\"fixed\",top:1,left:1,width:1,height:0,padding:0,margin:-1,overflow:\"hidden\",clip:\"rect(0, 0, 0, 0)\",whiteSpace:\"nowrap\",borderWidth:\"0\",...(n&4)===4&&(n&2)!==2&&{display:\"none\"}}};return Go({ourProps:o,theirProps:r,slot:{},defaultTag:Mbe,name:\"Hidden\"})}let jbe=Wo(Vbe),e0=h.createContext(null);e0.displayName=\"OpenClosedContext\";var ka=(e=>(e[e.Open=1]=\"Open\",e[e.Closed=2]=\"Closed\",e[e.Closing=4]=\"Closing\",e[e.Opening=8]=\"Opening\",e))(ka||{});function qbe(){return h.useContext(e0)}function Ube({value:e,children:t}){return $.createElement(e0.Provider,{value:e},t)}var Lt=(e=>(e.Space=\" \",e.Enter=\"Enter\",e.Escape=\"Escape\",e.Backspace=\"Backspace\",e.Delete=\"Delete\",e.ArrowLeft=\"ArrowLeft\",e.ArrowUp=\"ArrowUp\",e.ArrowRight=\"ArrowRight\",e.ArrowDown=\"ArrowDown\",e.Home=\"Home\",e.End=\"End\",e.PageUp=\"PageUp\",e.PageDown=\"PageDown\",e.Tab=\"Tab\",e))(Lt||{});function Bbe(e,t,n){let[r,o]=h.useState(n),i=e!==void 0,s=h.useRef(i),a=h.useRef(!1),l=h.useRef(!1);return i&&!s.current&&!a.current?(a.current=!0,s.current=i,console.error(\"A component is changing from uncontrolled to controlled. This may be caused by the value changing from undefined to a defined value, which should not happen.\")):!i&&s.current&&!l.current&&(l.current=!0,s.current=i,console.error(\"A component is changing from controlled to uncontrolled. This may be caused by the value changing from a defined value to undefined, which should not happen.\")),[i?e:r,we(c=>(i||o(c),t==null?void 0:t(c)))]}function yb(e,t){let n=h.useRef([]),r=we(e);h.useEffect(()=>{let o=[...n.current];for(let[i,s]of t.entries())if(n.current[i]!==s){let a=r(t,o);return n.current=t,a}},[r,...t])}function Eb(e){return[e.screenX,e.screenY]}function zbe(){let e=h.useRef([-1,-1]);return{wasMoved(t){let n=Eb(t);return e.current[0]===n[0]&&e.current[1]===n[1]?!1:(e.current=n,!0)},update(t){e.current=Eb(t)}}}function Hbe(){return/iPhone/gi.test(window.navigator.platform)||/Mac/gi.test(window.navigator.platform)&&window.navigator.maxTouchPoints>0}function Gbe(){return/Android/gi.test(window.navigator.userAgent)}function Wbe(){return Hbe()||Gbe()}function Qbe(...e){return h.useMemo(()=>Kv(...e),[...e])}var Ybe=(e=>(e[e.Open=0]=\"Open\",e[e.Closed=1]=\"Closed\",e))(Ybe||{}),Zbe=(e=>(e[e.Single=0]=\"Single\",e[e.Multi=1]=\"Multi\",e))(Zbe||{}),Xbe=(e=>(e[e.Pointer=0]=\"Pointer\",e[e.Other=1]=\"Other\",e))(Xbe||{}),Jbe=(e=>(e[e.OpenCombobox=0]=\"OpenCombobox\",e[e.CloseCombobox=1]=\"CloseCombobox\",e[e.GoToOption=2]=\"GoToOption\",e[e.RegisterOption=3]=\"RegisterOption\",e[e.UnregisterOption=4]=\"UnregisterOption\",e[e.RegisterLabel=5]=\"RegisterLabel\",e))(Jbe||{});function qd(e,t=n=>n){let n=e.activeOptionIndex!==null?e.options[e.activeOptionIndex]:null,r=Tbe(t(e.options.slice()),i=>i.dataRef.current.domRef.current),o=n?r.indexOf(n):null;return o===-1&&(o=null),{options:r,activeOptionIndex:o}}let Kbe={1(e){var t;return(t=e.dataRef.current)!=null&&t.disabled||e.comboboxState===1?e:{...e,activeOptionIndex:null,comboboxState:1}},0(e){var t;if((t=e.dataRef.current)!=null&&t.disabled||e.comboboxState===0)return e;let n=e.activeOptionIndex;if(e.dataRef.current){let{isSelected:r}=e.dataRef.current,o=e.options.findIndex(i=>r(i.dataRef.current.value));o!==-1&&(n=o)}return{...e,comboboxState:0,activeOptionIndex:n}},2(e,t){var n,r,o,i;if((n=e.dataRef.current)!=null&&n.disabled||(r=e.dataRef.current)!=null&&r.optionsRef.current&&!((o=e.dataRef.current)!=null&&o.optionsPropsRef.current.static)&&e.comboboxState===1)return e;let s=qd(e);if(s.activeOptionIndex===null){let l=s.options.findIndex(c=>!c.dataRef.current.disabled);l!==-1&&(s.activeOptionIndex=l)}let a=Lbe(t,{resolveItems:()=>s.options,resolveActiveIndex:()=>s.activeOptionIndex,resolveId:l=>l.id,resolveDisabled:l=>l.dataRef.current.disabled});return{...e,...s,activeOptionIndex:a,activationTrigger:(i=t.trigger)!=null?i:1}},3:(e,t)=>{var n,r;let o={id:t.id,dataRef:t.dataRef},i=qd(e,a=>[...a,o]);e.activeOptionIndex===null&&(n=e.dataRef.current)!=null&&n.isSelected(t.dataRef.current.value)&&(i.activeOptionIndex=i.options.indexOf(o));let s={...e,...i,activationTrigger:1};return(r=e.dataRef.current)!=null&&r.__demoMode&&e.dataRef.current.value===void 0&&(s.activeOptionIndex=0),s},4:(e,t)=>{let n=qd(e,r=>{let o=r.findIndex(i=>i.id===t.id);return o!==-1&&r.splice(o,1),r});return{...e,...n,activationTrigger:1}},5:(e,t)=>({...e,labelId:t.id})},t0=h.createContext(null);t0.displayName=\"ComboboxActionsContext\";function el(e){let t=h.useContext(t0);if(t===null){let n=new Error(`<${e} /> is missing a parent <Combobox /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,el),n}return t}let n0=h.createContext(null);n0.displayName=\"ComboboxDataContext\";function ss(e){let t=h.useContext(n0);if(t===null){let n=new Error(`<${e} /> is missing a parent <Combobox /> component.`);throw Error.captureStackTrace&&Error.captureStackTrace(n,ss),n}return t}function exe(e,t){return nr(t.type,Kbe,e,t)}let txe=h.Fragment;function nxe(e,t){let{value:n,defaultValue:r,onChange:o,form:i,name:s,by:a=(j,z)=>j===z,disabled:l=!1,__demoMode:c=!1,nullable:u=!1,multiple:d=!1,...p}=e,[f=d?[]:void 0,m]=Bbe(n,o,r),[v,b]=h.useReducer(exe,{dataRef:h.createRef(),comboboxState:c?0:1,options:[],activeOptionIndex:null,activationTrigger:1,labelId:null}),y=h.useRef(!1),g=h.useRef({static:!1,hold:!1}),E=h.useRef(null),x=h.useRef(null),w=h.useRef(null),C=h.useRef(null),T=we(typeof a==\"string\"?(j,z)=>{let Y=a;return(j==null?void 0:j[Y])===(z==null?void 0:z[Y])}:a),A=h.useCallback(j=>nr(S.mode,{1:()=>f.some(z=>T(z,j)),0:()=>T(f,j)}),[f]),S=h.useMemo(()=>({...v,optionsPropsRef:g,labelRef:E,inputRef:x,buttonRef:w,optionsRef:C,value:f,defaultValue:r,disabled:l,mode:d?1:0,get activeOptionIndex(){if(y.current&&v.activeOptionIndex===null&&v.options.length>0){let j=v.options.findIndex(z=>!z.dataRef.current.disabled);if(j!==-1)return j}return v.activeOptionIndex},compare:T,isSelected:A,nullable:u,__demoMode:c}),[f,r,l,d,u,c,v]),k=h.useRef(S.activeOptionIndex!==null?S.options[S.activeOptionIndex]:null);h.useEffect(()=>{let j=S.activeOptionIndex!==null?S.options[S.activeOptionIndex]:null;k.current!==j&&(k.current=j)}),jt(()=>{v.dataRef.current=S},[S]),Nbe([S.buttonRef,S.inputRef,S.optionsRef],()=>U.closeCombobox(),S.comboboxState===0);let q=h.useMemo(()=>({open:S.comboboxState===0,disabled:l,activeIndex:S.activeOptionIndex,activeOption:S.activeOptionIndex===null?null:S.options[S.activeOptionIndex].dataRef.current.value,value:f}),[S,l,f]),H=we(j=>{let z=S.options.find(Y=>Y.id===j);z&&P(z.dataRef.current.value)}),V=we(()=>{if(S.activeOptionIndex!==null){let{dataRef:j,id:z}=S.options[S.activeOptionIndex];P(j.current.value),U.goToOption(rt.Specific,z)}}),N=we(()=>{b({type:0}),y.current=!0}),M=we(()=>{b({type:1}),y.current=!1}),R=we((j,z,Y)=>(y.current=!1,j===rt.Specific?b({type:2,focus:rt.Specific,id:z,trigger:Y}):b({type:2,focus:j,trigger:Y}))),I=we((j,z)=>(b({type:3,id:j,dataRef:z}),()=>{var Y;((Y=k.current)==null?void 0:Y.id)===j&&(y.current=!0),b({type:4,id:j})})),D=we(j=>(b({type:5,id:j}),()=>b({type:5,id:null}))),P=we(j=>nr(S.mode,{0(){return m==null?void 0:m(j)},1(){let z=S.value.slice(),Y=z.findIndex(be=>T(be,j));return Y===-1?z.push(j):z.splice(Y,1),m==null?void 0:m(z)}})),U=h.useMemo(()=>({onChange:P,registerOption:I,registerLabel:D,goToOption:R,closeCombobox:M,openCombobox:N,selectActiveOption:V,selectOption:H}),[]),Z=t===null?{}:{ref:t},ee=h.useRef(null),te=Jv();return h.useEffect(()=>{ee.current&&r!==void 0&&te.addEventListener(ee.current,\"reset\",()=>{m==null||m(r)})},[ee,m]),$.createElement(t0.Provider,{value:U},$.createElement(n0.Provider,{value:S},$.createElement(Ube,{value:nr(S.comboboxState,{0:ka.Open,1:ka.Closed})},s!=null&&f!=null&&RT({[s]:f}).map(([j,z],Y)=>$.createElement(jbe,{features:PT.Hidden,ref:Y===0?be=>{var lt;ee.current=(lt=be==null?void 0:be.closest(\"form\"))!=null?lt:null}:void 0,...Hh({key:j,as:\"input\",type:\"hidden\",hidden:!0,readOnly:!0,form:i,name:j,value:z})})),Go({ourProps:Z,theirProps:p,slot:q,defaultTag:txe,name:\"Combobox\"}))))}let rxe=\"input\";function oxe(e,t){var n,r,o,i;let s=Ja(),{id:a=`headlessui-combobox-input-${s}`,onChange:l,displayValue:c,type:u=\"text\",...d}=e,p=ss(\"Combobox.Input\"),f=el(\"Combobox.Input\"),m=Ka(p.inputRef,t),v=Qbe(p.inputRef),b=h.useRef(!1),y=Jv(),g=we(()=>{f.onChange(null),p.optionsRef.current&&(p.optionsRef.current.scrollTop=0),f.goToOption(rt.Nothing)}),E=function(){var V;return typeof c==\"function\"&&p.value!==void 0?(V=c(p.value))!=null?V:\"\":typeof p.value==\"string\"?p.value:\"\"}();yb(([V,N],[M,R])=>{if(b.current)return;let I=p.inputRef.current;I&&((R===0&&N===1||V!==M)&&(I.value=V),requestAnimationFrame(()=>{if(b.current||!I||(v==null?void 0:v.activeElement)!==I)return;let{selectionStart:D,selectionEnd:P}=I;Math.abs((P??0)-(D??0))===0&&D===0&&I.setSelectionRange(I.value.length,I.value.length)}))},[E,p.comboboxState,v]),yb(([V],[N])=>{if(V===0&&N===1){if(b.current)return;let M=p.inputRef.current;if(!M)return;let R=M.value,{selectionStart:I,selectionEnd:D,selectionDirection:P}=M;M.value=\"\",M.value=R,P!==null?M.setSelectionRange(I,D,P):M.setSelectionRange(I,D)}},[p.comboboxState]);let x=h.useRef(!1),w=we(()=>{x.current=!0}),C=we(()=>{y.nextFrame(()=>{x.current=!1})}),T=we(V=>{switch(b.current=!0,V.key){case Lt.Enter:if(b.current=!1,p.comboboxState!==0||x.current)return;if(V.preventDefault(),V.stopPropagation(),p.activeOptionIndex===null){f.closeCombobox();return}f.selectActiveOption(),p.mode===0&&f.closeCombobox();break;case Lt.ArrowDown:return b.current=!1,V.preventDefault(),V.stopPropagation(),nr(p.comboboxState,{0:()=>{f.goToOption(rt.Next)},1:()=>{f.openCombobox()}});case Lt.ArrowUp:return b.current=!1,V.preventDefault(),V.stopPropagation(),nr(p.comboboxState,{0:()=>{f.goToOption(rt.Previous)},1:()=>{f.openCombobox(),y.nextFrame(()=>{p.value||f.goToOption(rt.Last)})}});case Lt.Home:if(V.shiftKey)break;return b.current=!1,V.preventDefault(),V.stopPropagation(),f.goToOption(rt.First);case Lt.PageUp:return b.current=!1,V.preventDefault(),V.stopPropagation(),f.goToOption(rt.First);case Lt.End:if(V.shiftKey)break;return b.current=!1,V.preventDefault(),V.stopPropagation(),f.goToOption(rt.Last);case Lt.PageDown:return b.current=!1,V.preventDefault(),V.stopPropagation(),f.goToOption(rt.Last);case Lt.Escape:return b.current=!1,p.comboboxState!==0?void 0:(V.preventDefault(),p.optionsRef.current&&!p.optionsPropsRef.current.static&&V.stopPropagation(),p.nullable&&p.mode===0&&p.value===null&&g(),f.closeCombobox());case Lt.Tab:if(b.current=!1,p.comboboxState!==0)return;p.mode===0&&f.selectActiveOption(),f.closeCombobox();break}}),A=we(V=>{l==null||l(V),p.nullable&&p.mode===0&&V.target.value===\"\"&&g(),f.openCombobox()}),S=we(()=>{b.current=!1}),k=Xv(()=>{if(p.labelId)return[p.labelId].join(\" \")},[p.labelId]),q=h.useMemo(()=>({open:p.comboboxState===0,disabled:p.disabled}),[p]),H={ref:m,id:a,role:\"combobox\",type:u,\"aria-controls\":(n=p.optionsRef.current)==null?void 0:n.id,\"aria-expanded\":p.comboboxState===0,\"aria-activedescendant\":p.activeOptionIndex===null||(r=p.options[p.activeOptionIndex])==null?void 0:r.id,\"aria-labelledby\":k,\"aria-autocomplete\":\"list\",defaultValue:(i=(o=e.defaultValue)!=null?o:p.defaultValue!==void 0?c==null?void 0:c(p.defaultValue):null)!=null?i:p.defaultValue,disabled:p.disabled,onCompositionStart:w,onCompositionEnd:C,onKeyDown:T,onChange:A,onBlur:S};return Go({ourProps:H,theirProps:d,slot:q,defaultTag:rxe,name:\"Combobox.Input\"})}let ixe=\"button\";function sxe(e,t){var n;let r=ss(\"Combobox.Button\"),o=el(\"Combobox.Button\"),i=Ka(r.buttonRef,t),s=Ja(),{id:a=`headlessui-combobox-button-${s}`,...l}=e,c=Jv(),u=we(v=>{switch(v.key){case Lt.ArrowDown:return v.preventDefault(),v.stopPropagation(),r.comboboxState===1&&o.openCombobox(),c.nextFrame(()=>{var b;return(b=r.inputRef.current)==null?void 0:b.focus({preventScroll:!0})});case Lt.ArrowUp:return v.preventDefault(),v.stopPropagation(),r.comboboxState===1&&(o.openCombobox(),c.nextFrame(()=>{r.value||o.goToOption(rt.Last)})),c.nextFrame(()=>{var b;return(b=r.inputRef.current)==null?void 0:b.focus({preventScroll:!0})});case Lt.Escape:return r.comboboxState!==0?void 0:(v.preventDefault(),r.optionsRef.current&&!r.optionsPropsRef.current.static&&v.stopPropagation(),o.closeCombobox(),c.nextFrame(()=>{var b;return(b=r.inputRef.current)==null?void 0:b.focus({preventScroll:!0})}));default:return}}),d=we(v=>{if($be(v.currentTarget))return v.preventDefault();r.comboboxState===0?o.closeCombobox():(v.preventDefault(),o.openCombobox()),c.nextFrame(()=>{var b;return(b=r.inputRef.current)==null?void 0:b.focus({preventScroll:!0})})}),p=Xv(()=>{if(r.labelId)return[r.labelId,a].join(\" \")},[r.labelId,a]),f=h.useMemo(()=>({open:r.comboboxState===0,disabled:r.disabled,value:r.value}),[r]),m={ref:i,id:a,type:Abe(e,r.buttonRef),tabIndex:-1,\"aria-haspopup\":\"listbox\",\"aria-controls\":(n=r.optionsRef.current)==null?void 0:n.id,\"aria-expanded\":r.comboboxState===0,\"aria-labelledby\":p,disabled:r.disabled,onClick:d,onKeyDown:u};return Go({ourProps:m,theirProps:l,slot:f,defaultTag:ixe,name:\"Combobox.Button\"})}let axe=\"label\";function lxe(e,t){let n=Ja(),{id:r=`headlessui-combobox-label-${n}`,...o}=e,i=ss(\"Combobox.Label\"),s=el(\"Combobox.Label\"),a=Ka(i.labelRef,t);jt(()=>s.registerLabel(r),[r]);let l=we(()=>{var u;return(u=i.inputRef.current)==null?void 0:u.focus({preventScroll:!0})}),c=h.useMemo(()=>({open:i.comboboxState===0,disabled:i.disabled}),[i]);return Go({ourProps:{ref:a,id:r,onClick:l},theirProps:o,slot:c,defaultTag:axe,name:\"Combobox.Label\"})}let cxe=\"ul\",uxe=zh.RenderStrategy|zh.Static;function fxe(e,t){let n=Ja(),{id:r=`headlessui-combobox-options-${n}`,hold:o=!1,...i}=e,s=ss(\"Combobox.Options\"),a=Ka(s.optionsRef,t),l=qbe(),c=(()=>l!==null?(l&ka.Open)===ka.Open:s.comboboxState===0)();jt(()=>{var f;s.optionsPropsRef.current.static=(f=e.static)!=null?f:!1},[s.optionsPropsRef,e.static]),jt(()=>{s.optionsPropsRef.current.hold=o},[s.optionsPropsRef,o]),Ibe({container:s.optionsRef.current,enabled:s.comboboxState===0,accept(f){return f.getAttribute(\"role\")===\"option\"?NodeFilter.FILTER_REJECT:f.hasAttribute(\"role\")?NodeFilter.FILTER_SKIP:NodeFilter.FILTER_ACCEPT},walk(f){f.setAttribute(\"role\",\"none\")}});let u=Xv(()=>{var f,m;return(m=s.labelId)!=null?m:(f=s.buttonRef.current)==null?void 0:f.id},[s.labelId,s.buttonRef.current]),d=h.useMemo(()=>({open:s.comboboxState===0}),[s]),p={\"aria-labelledby\":u,role:\"listbox\",\"aria-multiselectable\":s.mode===1?!0:void 0,id:r,ref:a};return Go({ourProps:p,theirProps:i,slot:d,defaultTag:cxe,features:uxe,visible:c,name:\"Combobox.Options\"})}let dxe=\"li\";function pxe(e,t){var n,r;let o=Ja(),{id:i=`headlessui-combobox-option-${o}`,disabled:s=!1,value:a,...l}=e,c=ss(\"Combobox.Option\"),u=el(\"Combobox.Option\"),d=c.activeOptionIndex!==null?c.options[c.activeOptionIndex].id===i:!1,p=c.isSelected(a),f=h.useRef(null),m=Xa({disabled:s,value:a,domRef:f,textValue:(r=(n=f.current)==null?void 0:n.textContent)==null?void 0:r.toLowerCase()}),v=Ka(t,f),b=we(()=>u.selectOption(i));jt(()=>u.registerOption(i,m),[m,i]);let y=h.useRef(!c.__demoMode);jt(()=>{if(!c.__demoMode)return;let S=du();return S.requestAnimationFrame(()=>{y.current=!0}),S.dispose},[]),jt(()=>{if(c.comboboxState!==0||!d||!y.current||c.activationTrigger===0)return;let S=du();return S.requestAnimationFrame(()=>{var k,q;(q=(k=f.current)==null?void 0:k.scrollIntoView)==null||q.call(k,{block:\"nearest\"})}),S.dispose},[f,d,c.comboboxState,c.activationTrigger,c.activeOptionIndex]);let g=we(S=>{if(s)return S.preventDefault();b(),c.mode===0&&u.closeCombobox(),Wbe()||requestAnimationFrame(()=>{var k;return(k=c.inputRef.current)==null?void 0:k.focus()})}),E=we(()=>{if(s)return u.goToOption(rt.Nothing);u.goToOption(rt.Specific,i)}),x=zbe(),w=we(S=>x.update(S)),C=we(S=>{x.wasMoved(S)&&(s||d||u.goToOption(rt.Specific,i,0))}),T=we(S=>{x.wasMoved(S)&&(s||d&&(c.optionsPropsRef.current.hold||u.goToOption(rt.Nothing)))}),A=h.useMemo(()=>({active:d,selected:p,disabled:s}),[d,p,s]);return Go({ourProps:{id:i,ref:v,role:\"option\",tabIndex:s===!0?void 0:-1,\"aria-disabled\":s===!0?!0:void 0,\"aria-selected\":p,disabled:void 0,onClick:g,onFocus:E,onPointerEnter:w,onMouseEnter:w,onPointerMove:C,onMouseMove:C,onPointerLeave:T,onMouseLeave:T},theirProps:l,slot:A,defaultTag:dxe,name:\"Combobox.Option\"})}let hxe=Wo(nxe),mxe=Wo(sxe),vxe=Wo(oxe),gxe=Wo(lxe),yxe=Wo(fxe),Exe=Wo(pxe),ei=Object.assign(hxe,{Input:vxe,Button:mxe,Label:gxe,Options:yxe,Option:Exe});var bxe=Object.defineProperty,F=(e,t)=>bxe(e,\"name\",{value:t,configurable:!0});function Kr(e){const t=h.createContext(null);return t.displayName=e,t}F(Kr,\"createNullableContext\");function eo(e){function t(n){var r;const o=h.useContext(e);if(o===null&&n!=null&&n.nonNull)throw new Error(`Tried to use \\`${((r=n.caller)==null?void 0:r.name)||t.caller.name}\\` without the necessary context. Make sure to render the \\`${e.displayName}Provider\\` component higher up the tree.`);return o}return F(t,\"useGivenContext\"),Object.defineProperty(t,\"name\",{value:`use${e.displayName}`}),t}F(eo,\"createContextHook\");const $T=Kr(\"StorageContext\");function FT(e){const t=h.useRef(!0),[n,r]=h.useState(new Xp(e.storage));return h.useEffect(()=>{t.current?t.current=!1:r(new Xp(e.storage))},[e.storage]),_.jsx($T.Provider,{value:n,children:e.children})}F(FT,\"StorageContextProvider\");const to=eo($T),xxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M5.0484 1.40838C6.12624 0.33054 7.87376 0.330541 8.9516 1.40838L12.5916 5.0484C13.6695 6.12624 13.6695 7.87376 12.5916 8.9516L8.9516 12.5916C7.87376 13.6695 6.12624 13.6695 5.0484 12.5916L1.40838 8.9516C0.33054 7.87376 0.330541 6.12624 1.40838 5.0484L5.0484 1.40838Z\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"rect\",{x:6,y:6,width:2,height:2,rx:1,fill:\"currentColor\"})),\"SvgArgument\"),wxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 9\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M1 1L7 7L13 1\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgChevronDown\"),_xe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 7 10\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M6 1.04819L2 5.04819L6 9.04819\",stroke:\"currentColor\",strokeWidth:1.75})),\"SvgChevronLeft\"),Sxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 9\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M13 8L7 2L1 8\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgChevronUp\"),Cxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M1 1L12.9998 12.9997\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{d:\"M13 1L1.00079 13.0003\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgClose\"),Txe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"-2 -2 22 22\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M11.25 14.2105V15.235C11.25 16.3479 10.3479 17.25 9.23501 17.25H2.76499C1.65214 17.25 0.75 16.3479 0.75 15.235L0.75 8.76499C0.75 7.65214 1.65214 6.75 2.76499 6.75L3.78947 6.75\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"rect\",{x:6.75,y:.75,width:10.5,height:10.5,rx:2.2069,stroke:\"currentColor\",strokeWidth:1.5})),\"SvgCopy\"),kxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M5.0484 1.40838C6.12624 0.33054 7.87376 0.330541 8.9516 1.40838L12.5916 5.0484C13.6695 6.12624 13.6695 7.87376 12.5916 8.9516L8.9516 12.5916C7.87376 13.6695 6.12624 13.6695 5.0484 12.5916L1.40838 8.9516C0.33054 7.87376 0.330541 6.12624 1.40838 5.0484L5.0484 1.40838Z\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M5 9L9 5\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M5 5L9 9\",stroke:\"currentColor\",strokeWidth:1.2})),\"SvgDeprecatedArgument\"),Nxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 12 12\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M4 8L8 4\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M4 4L8 8\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M8.5 1.2H9C9.99411 1.2 10.8 2.00589 10.8 3V9C10.8 9.99411 9.99411 10.8 9 10.8H8.5V12H9C10.6569 12 12 10.6569 12 9V3C12 1.34315 10.6569 0 9 0H8.5V1.2ZM3.5 1.2V0H3C1.34315 0 0 1.34315 0 3V9C0 10.6569 1.34315 12 3 12H3.5V10.8H3C2.00589 10.8 1.2 9.99411 1.2 9V3C1.2 2.00589 2.00589 1.2 3 1.2H3.5Z\",fill:\"currentColor\"})),\"SvgDeprecatedEnumValue\"),Axe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 12 12\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:.6,y:.6,width:10.8,height:10.8,rx:3.4,stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M4 8L8 4\",stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M4 4L8 8\",stroke:\"currentColor\",strokeWidth:1.2})),\"SvgDeprecatedField\"),Dxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0.5 12 12\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:7,y:5.5,width:2,height:2,rx:1,transform:\"rotate(90 7 5.5)\",fill:\"currentColor\"}),h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M10.8 9L10.8 9.5C10.8 10.4941 9.99411 11.3 9 11.3L3 11.3C2.00589 11.3 1.2 10.4941 1.2 9.5L1.2 9L-3.71547e-07 9L-3.93402e-07 9.5C-4.65826e-07 11.1569 1.34314 12.5 3 12.5L9 12.5C10.6569 12.5 12 11.1569 12 9.5L12 9L10.8 9ZM10.8 4L12 4L12 3.5C12 1.84315 10.6569 0.5 9 0.5L3 0.5C1.34315 0.5 -5.87117e-08 1.84315 -1.31135e-07 3.5L-1.5299e-07 4L1.2 4L1.2 3.5C1.2 2.50589 2.00589 1.7 3 1.7L9 1.7C9.99411 1.7 10.8 2.50589 10.8 3.5L10.8 4Z\",fill:\"currentColor\"})),\"SvgDirective\"),Ixe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 20 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M0.75 3C0.75 1.75736 1.75736 0.75 3 0.75H17.25C17.8023 0.75 18.25 1.19772 18.25 1.75V5.25\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{d:\"M0.75 3C0.75 4.24264 1.75736 5.25 3 5.25H18.25C18.8023 5.25 19.25 5.69771 19.25 6.25V22.25C19.25 22.8023 18.8023 23.25 18.25 23.25H3C1.75736 23.25 0.75 22.2426 0.75 21V3Z\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M3 5.25C1.75736 5.25 0.75 4.24264 0.75 3V21C0.75 22.2426 1.75736 23.25 3 23.25H18.25C18.8023 23.25 19.25 22.8023 19.25 22.25V6.25C19.25 5.69771 18.8023 5.25 18.25 5.25H3ZM13 11L6 11V12.5L13 12.5V11Z\",fill:\"currentColor\"})),\"SvgDocsFilled\"),Rxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 20 24\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M0.75 3C0.75 4.24264 1.75736 5.25 3 5.25H17.25M0.75 3C0.75 1.75736 1.75736 0.75 3 0.75H16.25C16.8023 0.75 17.25 1.19772 17.25 1.75V5.25M0.75 3V21C0.75 22.2426 1.75736 23.25 3 23.25H18.25C18.8023 23.25 19.25 22.8023 19.25 22.25V6.25C19.25 5.69771 18.8023 5.25 18.25 5.25H17.25\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"line\",{x1:13,y1:11.75,x2:6,y2:11.75,stroke:\"currentColor\",strokeWidth:1.5})),\"SvgDocs\"),Lxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 12 12\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:5,y:5,width:2,height:2,rx:1,fill:\"currentColor\"}),h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M8.5 1.2H9C9.99411 1.2 10.8 2.00589 10.8 3V9C10.8 9.99411 9.99411 10.8 9 10.8H8.5V12H9C10.6569 12 12 10.6569 12 9V3C12 1.34315 10.6569 0 9 0H8.5V1.2ZM3.5 1.2V0H3C1.34315 0 0 1.34315 0 3V9C0 10.6569 1.34315 12 3 12H3.5V10.8H3C2.00589 10.8 1.2 9.99411 1.2 9V3C1.2 2.00589 2.00589 1.2 3 1.2H3.5Z\",fill:\"currentColor\"})),\"SvgEnumValue\"),Oxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 12 13\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:.6,y:1.1,width:10.8,height:10.8,rx:2.4,stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"rect\",{x:5,y:5.5,width:2,height:2,rx:1,fill:\"currentColor\"})),\"SvgField\"),Pxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 24 20\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M1.59375 9.52344L4.87259 12.9944L8.07872 9.41249\",stroke:\"currentColor\",strokeWidth:1.5,strokeLinecap:\"square\"}),h.createElement(\"path\",{d:\"M13.75 5.25V10.75H18.75\",stroke:\"currentColor\",strokeWidth:1.5,strokeLinecap:\"square\"}),h.createElement(\"path\",{d:\"M4.95427 11.9332C4.55457 10.0629 4.74441 8.11477 5.49765 6.35686C6.25089 4.59894 7.5305 3.11772 9.16034 2.11709C10.7902 1.11647 12.6901 0.645626 14.5986 0.769388C16.5071 0.893151 18.3303 1.60543 19.8172 2.80818C21.3042 4.01093 22.3818 5.64501 22.9017 7.48548C23.4216 9.32595 23.3582 11.2823 22.7203 13.0853C22.0824 14.8883 20.9013 16.4492 19.3396 17.5532C17.778 18.6572 15.9125 19.25 14 19.25\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgHistory\"),$xe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 12 12\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"circle\",{cx:6,cy:6,r:5.4,stroke:\"currentColor\",strokeWidth:1.2,strokeDasharray:\"4.241025 4.241025\",transform:\"rotate(22.5)\",\"transform-origin\":\"center\"}),h.createElement(\"circle\",{cx:6,cy:6,r:1,fill:\"currentColor\"})),\"SvgImplements\"),Fxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 19 18\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M1.5 14.5653C1.5 15.211 1.75652 15.8303 2.21314 16.2869C2.66975 16.7435 3.28905 17 3.9348 17C4.58054 17 5.19984 16.7435 5.65646 16.2869C6.11307 15.8303 6.36959 15.211 6.36959 14.5653V12.1305H3.9348C3.28905 12.1305 2.66975 12.387 2.21314 12.8437C1.75652 13.3003 1.5 13.9195 1.5 14.5653Z\",stroke:\"currentColor\",strokeWidth:1.125,strokeLinecap:\"round\",strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M3.9348 1.00063C3.28905 1.00063 2.66975 1.25715 2.21314 1.71375C1.75652 2.17035 1.5 2.78964 1.5 3.43537C1.5 4.0811 1.75652 4.70038 2.21314 5.15698C2.66975 5.61358 3.28905 5.8701 3.9348 5.8701H6.36959V3.43537C6.36959 2.78964 6.11307 2.17035 5.65646 1.71375C5.19984 1.25715 4.58054 1.00063 3.9348 1.00063Z\",stroke:\"currentColor\",strokeWidth:1.125,strokeLinecap:\"round\",strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M15.0652 12.1305H12.6304V14.5653C12.6304 15.0468 12.7732 15.5175 13.0407 15.9179C13.3083 16.3183 13.6885 16.6304 14.1334 16.8147C14.5783 16.9989 15.0679 17.0472 15.5402 16.9532C16.0125 16.8593 16.4464 16.6274 16.7869 16.2869C17.1274 15.9464 17.3593 15.5126 17.4532 15.0403C17.5472 14.568 17.4989 14.0784 17.3147 13.6335C17.1304 13.1886 16.8183 12.8084 16.4179 12.5409C16.0175 12.2733 15.5468 12.1305 15.0652 12.1305Z\",stroke:\"currentColor\",strokeWidth:1.125,strokeLinecap:\"round\",strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M12.6318 5.86775H6.36955V12.1285H12.6318V5.86775Z\",stroke:\"currentColor\",strokeWidth:1.125,strokeLinecap:\"round\",strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M17.5 3.43473C17.5 2.789 17.2435 2.16972 16.7869 1.71312C16.3303 1.25652 15.711 1 15.0652 1C14.4195 1 13.8002 1.25652 13.3435 1.71312C12.8869 2.16972 12.6304 2.789 12.6304 3.43473V5.86946H15.0652C15.711 5.86946 16.3303 5.61295 16.7869 5.15635C17.2435 4.69975 17.5 4.08046 17.5 3.43473Z\",stroke:\"currentColor\",strokeWidth:1.125,strokeLinecap:\"round\",strokeLinejoin:\"round\"})),\"SvgKeyboardShortcut\"),Mxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 13 13\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"circle\",{cx:5,cy:5,r:4.35,stroke:\"currentColor\",strokeWidth:1.3}),h.createElement(\"line\",{x1:8.45962,y1:8.54038,x2:11.7525,y2:11.8333,stroke:\"currentColor\",strokeWidth:1.3})),\"SvgMagnifyingGlass\"),Vxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"-2 -2 22 22\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M17.2492 6V2.9569C17.2492 1.73806 16.2611 0.75 15.0423 0.75L2.9569 0.75C1.73806 0.75 0.75 1.73806 0.75 2.9569L0.75 6\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{d:\"M0.749873 12V15.0431C0.749873 16.2619 1.73794 17.25 2.95677 17.25H15.0421C16.261 17.25 17.249 16.2619 17.249 15.0431V12\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{d:\"M6 4.5L9 7.5L12 4.5\",stroke:\"currentColor\",strokeWidth:1.5}),h.createElement(\"path\",{d:\"M12 13.5L9 10.5L6 13.5\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgMerge\"),jxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M0.75 13.25L0.0554307 12.967C-0.0593528 13.2488 0.00743073 13.5719 0.224488 13.7851C0.441545 13.9983 0.765869 14.0592 1.04549 13.9393L0.75 13.25ZM12.8214 1.83253L12.2911 2.36286L12.2911 2.36286L12.8214 1.83253ZM12.8214 3.90194L13.3517 4.43227L12.8214 3.90194ZM10.0981 1.17859L9.56773 0.648259L10.0981 1.17859ZM12.1675 1.17859L12.6978 0.648258L12.6978 0.648257L12.1675 1.17859ZM2.58049 8.75697L3.27506 9.03994L2.58049 8.75697ZM2.70066 8.57599L3.23099 9.10632L2.70066 8.57599ZM5.2479 11.4195L4.95355 10.7297L5.2479 11.4195ZM5.42036 11.303L4.89003 10.7727L5.42036 11.303ZM4.95355 10.7297C4.08882 11.0987 3.41842 11.362 2.73535 11.6308C2.05146 11.9 1.35588 12.1743 0.454511 12.5607L1.04549 13.9393C1.92476 13.5624 2.60256 13.2951 3.28469 13.0266C3.96762 12.7578 4.65585 12.4876 5.54225 12.1093L4.95355 10.7297ZM1.44457 13.533L3.27506 9.03994L1.88592 8.474L0.0554307 12.967L1.44457 13.533ZM3.23099 9.10632L10.6284 1.70892L9.56773 0.648259L2.17033 8.04566L3.23099 9.10632ZM11.6371 1.70892L12.2911 2.36286L13.3517 1.3022L12.6978 0.648258L11.6371 1.70892ZM12.2911 3.37161L4.89003 10.7727L5.95069 11.8333L13.3517 4.43227L12.2911 3.37161ZM12.2911 2.36286C12.5696 2.64142 12.5696 3.09305 12.2911 3.37161L13.3517 4.43227C14.2161 3.56792 14.2161 2.16654 13.3517 1.3022L12.2911 2.36286ZM10.6284 1.70892C10.9069 1.43036 11.3586 1.43036 11.6371 1.70892L12.6978 0.648257C11.8335 -0.216088 10.4321 -0.216084 9.56773 0.648259L10.6284 1.70892ZM3.27506 9.03994C3.26494 9.06479 3.24996 9.08735 3.23099 9.10632L2.17033 8.04566C2.04793 8.16806 1.95123 8.31369 1.88592 8.474L3.27506 9.03994ZM5.54225 12.1093C5.69431 12.0444 5.83339 11.9506 5.95069 11.8333L4.89003 10.7727C4.90863 10.7541 4.92988 10.7398 4.95355 10.7297L5.54225 12.1093Z\",fill:\"currentColor\"}),h.createElement(\"path\",{d:\"M11.5 4.5L9.5 2.5\",stroke:\"currentColor\",strokeWidth:1.4026,strokeLinecap:\"round\",strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M5.5 10.5L3.5 8.5\",stroke:\"currentColor\",strokeWidth:1.4026,strokeLinecap:\"round\",strokeLinejoin:\"round\"})),\"SvgPen\"),qxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 16 18\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M1.32226e-07 1.6609C7.22332e-08 0.907329 0.801887 0.424528 1.46789 0.777117L15.3306 8.11621C16.0401 8.49182 16.0401 9.50818 15.3306 9.88379L1.46789 17.2229C0.801886 17.5755 1.36076e-06 17.0927 1.30077e-06 16.3391L1.32226e-07 1.6609Z\",fill:\"currentColor\"})),\"SvgPlay\"),Uxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 10 16\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M4.25 9.25V13.5H5.75V9.25L10 9.25V7.75L5.75 7.75V3.5H4.25V7.75L0 7.75V9.25L4.25 9.25Z\",fill:\"currentColor\"})),\"SvgPlus\"),Bxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{width:25,height:25,viewBox:\"0 0 25 25\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M10.2852 24.0745L13.7139 18.0742\",stroke:\"currentColor\",strokeWidth:1.5625}),h.createElement(\"path\",{d:\"M14.5742 24.0749L17.1457 19.7891\",stroke:\"currentColor\",strokeWidth:1.5625}),h.createElement(\"path\",{d:\"M19.4868 24.0735L20.7229 21.7523C21.3259 20.6143 21.5457 19.3122 21.3496 18.0394C21.1535 16.7666 20.5519 15.591 19.6342 14.6874L23.7984 6.87853C24.0123 6.47728 24.0581 6.00748 23.9256 5.57249C23.7932 5.1375 23.4933 4.77294 23.0921 4.55901C22.6908 4.34509 22.221 4.29932 21.7861 4.43178C21.3511 4.56424 20.9865 4.86408 20.7726 5.26533L16.6084 13.0742C15.3474 12.8142 14.0362 12.9683 12.8699 13.5135C11.7035 14.0586 10.7443 14.9658 10.135 16.1L6 24.0735\",stroke:\"currentColor\",strokeWidth:1.5625}),h.createElement(\"path\",{d:\"M4 15L5 13L7 12L5 11L4 9L3 11L1 12L3 13L4 15Z\",stroke:\"currentColor\",strokeWidth:1.5625,strokeLinejoin:\"round\"}),h.createElement(\"path\",{d:\"M11.5 8L12.6662 5.6662L15 4.5L12.6662 3.3338L11.5 1L10.3338 3.3338L8 4.5L10.3338 5.6662L11.5 8Z\",stroke:\"currentColor\",strokeWidth:1.5625,strokeLinejoin:\"round\"})),\"SvgPrettify\"),zxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M4.75 9.25H1.25V12.75\",stroke:\"currentColor\",strokeWidth:1,strokeLinecap:\"square\"}),h.createElement(\"path\",{d:\"M11.25 6.75H14.75V3.25\",stroke:\"currentColor\",strokeWidth:1,strokeLinecap:\"square\"}),h.createElement(\"path\",{d:\"M14.1036 6.65539C13.8 5.27698 13.0387 4.04193 11.9437 3.15131C10.8487 2.26069 9.48447 1.76694 8.0731 1.75043C6.66173 1.73392 5.28633 2.19563 4.17079 3.0604C3.05526 3.92516 2.26529 5.14206 1.92947 6.513\",stroke:\"currentColor\",strokeWidth:1}),h.createElement(\"path\",{d:\"M1.89635 9.34461C2.20001 10.723 2.96131 11.9581 4.05631 12.8487C5.15131 13.7393 6.51553 14.2331 7.9269 14.2496C9.33827 14.2661 10.7137 13.8044 11.8292 12.9396C12.9447 12.0748 13.7347 10.8579 14.0705 9.487\",stroke:\"currentColor\",strokeWidth:1})),\"SvgReload\"),Hxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 13 13\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:.6,y:.6,width:11.8,height:11.8,rx:5.9,stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"path\",{d:\"M4.25 7.5C4.25 6 5.75 5 6.5 6.5C7.25 8 8.75 7 8.75 5.5\",stroke:\"currentColor\",strokeWidth:1.2})),\"SvgRootType\"),Gxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 21 20\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{fillRule:\"evenodd\",clipRule:\"evenodd\",d:\"M9.29186 1.92702C9.06924 1.82745 8.87014 1.68202 8.70757 1.50024L7.86631 0.574931C7.62496 0.309957 7.30773 0.12592 6.95791 0.0479385C6.60809 -0.0300431 6.24274 0.00182978 5.91171 0.139208C5.58068 0.276585 5.3001 0.512774 5.10828 0.815537C4.91645 1.1183 4.82272 1.47288 4.83989 1.83089L4.90388 3.08019C4.91612 3.32348 4.87721 3.56662 4.78968 3.79394C4.70215 4.02126 4.56794 4.2277 4.39571 4.39994C4.22347 4.57219 4.01704 4.7064 3.78974 4.79394C3.56243 4.88147 3.3193 4.92038 3.07603 4.90814L1.8308 4.84414C1.47162 4.82563 1.11553 4.91881 0.811445 5.11086C0.507359 5.30292 0.270203 5.58443 0.132561 5.91671C-0.00508149 6.249 -0.0364554 6.61576 0.0427496 6.9666C0.121955 7.31744 0.307852 7.63514 0.5749 7.87606L1.50016 8.71204C1.68193 8.87461 1.82735 9.07373 1.92692 9.29636C2.02648 9.51898 2.07794 9.76012 2.07794 10.004C2.07794 10.2479 2.02648 10.489 1.92692 10.7116C1.82735 10.9343 1.68193 11.1334 1.50016 11.296L0.5749 12.1319C0.309856 12.3729 0.125575 12.6898 0.0471809 13.0393C-0.0312128 13.3888 9.64098e-05 13.754 0.13684 14.0851C0.273583 14.4162 0.509106 14.6971 0.811296 14.8894C1.11349 15.0817 1.46764 15.1762 1.82546 15.1599L3.0707 15.0959C3.31397 15.0836 3.5571 15.1225 3.7844 15.2101C4.01171 15.2976 4.21814 15.4318 4.39037 15.6041C4.56261 15.7763 4.69682 15.9827 4.78435 16.2101C4.87188 16.4374 4.91078 16.6805 4.89855 16.9238L4.83455 18.1691C4.81605 18.5283 4.90921 18.8844 5.10126 19.1885C5.2933 19.4926 5.5748 19.7298 5.90707 19.8674C6.23934 20.0051 6.60608 20.0365 6.9569 19.9572C7.30772 19.878 7.6254 19.6921 7.86631 19.4251L8.7129 18.4998C8.87547 18.318 9.07458 18.1725 9.29719 18.073C9.51981 17.9734 9.76093 17.9219 10.0048 17.9219C10.2487 17.9219 10.4898 17.9734 10.7124 18.073C10.935 18.1725 11.1341 18.318 11.2967 18.4998L12.1326 19.4251C12.3735 19.6921 12.6912 19.878 13.042 19.9572C13.3929 20.0365 13.7596 20.0051 14.0919 19.8674C14.4241 19.7298 14.7056 19.4926 14.8977 19.1885C15.0897 18.8844 15.1829 18.5283 15.1644 18.1691L15.1004 16.9238C15.0882 16.6805 15.1271 16.4374 15.2146 16.2101C15.3021 15.9827 15.4363 15.7763 15.6086 15.6041C15.7808 15.4318 15.9872 15.2976 16.2145 15.2101C16.4418 15.1225 16.685 15.0836 16.9282 15.0959L18.1735 15.1599C18.5326 15.1784 18.8887 15.0852 19.1928 14.8931C19.4969 14.7011 19.7341 14.4196 19.8717 14.0873C20.0093 13.755 20.0407 13.3882 19.9615 13.0374C19.8823 12.6866 19.6964 12.3689 19.4294 12.1279L18.5041 11.292C18.3223 11.1294 18.1769 10.9303 18.0774 10.7076C17.9778 10.485 17.9263 10.2439 17.9263 10C17.9263 9.75612 17.9778 9.51499 18.0774 9.29236C18.1769 9.06973 18.3223 8.87062 18.5041 8.70804L19.4294 7.87206C19.6964 7.63114 19.8823 7.31344 19.9615 6.9626C20.0407 6.61176 20.0093 6.245 19.8717 5.91271C19.7341 5.58043 19.4969 5.29892 19.1928 5.10686C18.8887 4.91481 18.5326 4.82163 18.1735 4.84014L16.9282 4.90414C16.685 4.91638 16.4418 4.87747 16.2145 4.78994C15.9872 4.7024 15.7808 4.56818 15.6086 4.39594C15.4363 4.2237 15.3021 4.01726 15.2146 3.78994C15.1271 3.56262 15.0882 3.31948 15.1004 3.07619L15.1644 1.83089C15.1829 1.4717 15.0897 1.11559 14.8977 0.811487C14.7056 0.507385 14.4241 0.270217 14.0919 0.132568C13.7596 -0.00508182 13.3929 -0.0364573 13.042 0.0427519C12.6912 0.121961 12.3735 0.307869 12.1326 0.574931L11.2914 1.50024C11.1288 1.68202 10.9297 1.82745 10.7071 1.92702C10.4845 2.02659 10.2433 2.07805 9.99947 2.07805C9.7556 2.07805 9.51448 2.02659 9.29186 1.92702ZM14.3745 10C14.3745 12.4162 12.4159 14.375 9.99977 14.375C7.58365 14.375 5.625 12.4162 5.625 10C5.625 7.58375 7.58365 5.625 9.99977 5.625C12.4159 5.625 14.3745 7.58375 14.3745 10Z\",fill:\"currentColor\"})),\"SvgSettings\"),Wxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M6.5782 1.07092C6.71096 0.643026 7.28904 0.643027 7.4218 1.07092L8.59318 4.84622C8.65255 5.03758 8.82284 5.16714 9.01498 5.16714L12.8056 5.16714C13.2353 5.16714 13.4139 5.74287 13.0663 6.00732L9.99962 8.34058C9.84418 8.45885 9.77913 8.66848 9.83851 8.85984L11.0099 12.6351C11.1426 13.063 10.675 13.4189 10.3274 13.1544L7.26069 10.8211C7.10524 10.7029 6.89476 10.7029 6.73931 10.8211L3.6726 13.1544C3.32502 13.4189 2.85735 13.063 2.99012 12.6351L4.16149 8.85984C4.22087 8.66848 4.15582 8.45885 4.00038 8.34058L0.933671 6.00732C0.586087 5.74287 0.764722 5.16714 1.19436 5.16714L4.98502 5.16714C5.17716 5.16714 5.34745 5.03758 5.40682 4.84622L6.5782 1.07092Z\",fill:\"currentColor\",stroke:\"currentColor\"})),\"SvgStarFilled\"),Qxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 14 14\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M6.5782 1.07092C6.71096 0.643026 7.28904 0.643027 7.4218 1.07092L8.59318 4.84622C8.65255 5.03758 8.82284 5.16714 9.01498 5.16714L12.8056 5.16714C13.2353 5.16714 13.4139 5.74287 13.0663 6.00732L9.99962 8.34058C9.84418 8.45885 9.77913 8.66848 9.83851 8.85984L11.0099 12.6351C11.1426 13.063 10.675 13.4189 10.3274 13.1544L7.26069 10.8211C7.10524 10.7029 6.89476 10.7029 6.73931 10.8211L3.6726 13.1544C3.32502 13.4189 2.85735 13.063 2.99012 12.6351L4.16149 8.85984C4.22087 8.66848 4.15582 8.45885 4.00038 8.34058L0.933671 6.00732C0.586087 5.74287 0.764722 5.16714 1.19436 5.16714L4.98502 5.16714C5.17716 5.16714 5.34745 5.03758 5.40682 4.84622L6.5782 1.07092Z\",stroke:\"currentColor\",strokeWidth:1.5})),\"SvgStar\"),Yxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 16 16\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{width:16,height:16,rx:2,fill:\"currentColor\"})),\"SvgStop\"),Zxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{width:\"1em\",height:\"5em\",xmlns:\"http://www.w3.org/2000/svg\",fillRule:\"evenodd\",\"aria-hidden\":\"true\",viewBox:\"0 0 23 23\",style:{height:\"1.5em\"},clipRule:\"evenodd\",\"aria-labelledby\":t,...n},e===void 0?h.createElement(\"title\",{id:t},\"trash icon\"):e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"path\",{d:\"M19 24h-14c-1.104 0-2-.896-2-2v-17h-1v-2h6v-1.5c0-.827.673-1.5 1.5-1.5h5c.825 0 1.5.671 1.5 1.5v1.5h6v2h-1v17c0 1.104-.896 2-2 2zm0-19h-14v16.5c0 .276.224.5.5.5h13c.276 0 .5-.224.5-.5v-16.5zm-7 7.586l3.293-3.293 1.414 1.414-3.293 3.293 3.293 3.293-1.414 1.414-3.293-3.293-3.293 3.293-1.414-1.414 3.293-3.293-3.293-3.293 1.414-1.414 3.293 3.293zm2-10.586h-4v1h4v-1z\",fill:\"currentColor\",strokeWidth:.25,stroke:\"currentColor\"})),\"SvgTrash\"),Xxe=F(({title:e,titleId:t,...n})=>h.createElement(\"svg\",{height:\"1em\",viewBox:\"0 0 13 13\",fill:\"none\",xmlns:\"http://www.w3.org/2000/svg\",\"aria-labelledby\":t,...n},e?h.createElement(\"title\",{id:t},e):null,h.createElement(\"rect\",{x:.6,y:.6,width:11.8,height:11.8,rx:5.9,stroke:\"currentColor\",strokeWidth:1.2}),h.createElement(\"rect\",{x:5.5,y:5.5,width:2,height:2,rx:1,fill:\"currentColor\"})),\"SvgType\"),Jxe=he(xxe),Kxe=he(wxe),ewe=he(_xe),twe=he(Sxe),r0=he(Cxe),nwe=he(Txe),rwe=he(kxe),owe=he(Nxe),iwe=he(Axe),swe=he(Dxe),awe=he(Ixe,\"filled docs icon\"),lwe=he(Rxe),cwe=he(Lxe),uwe=he(Oxe),fwe=he(Pxe),dwe=he($xe),pwe=he(Fxe),hwe=he(Mxe),mwe=he(Vxe),vwe=he(jxe),gwe=he(qxe),ywe=he(Uxe),Ewe=he(Bxe),bwe=he(zxe),xwe=he(Hxe),wwe=he(Gxe),_we=he(Wxe,\"filled star icon\"),Swe=he(Qxe),Cwe=he(Yxe),Twe=he(Zxe,\"trash icon\"),zl=he(Xxe);function he(e,t=e.name.replace(\"Svg\",\"\").replaceAll(/([A-Z])/g,\" $1\").trimStart().toLowerCase()+\" icon\"){return e.defaultProps={title:t},e}F(he,\"generateIcon\");const Qe=h.forwardRef((e,t)=>_.jsx(\"button\",{...e,ref:t,className:Ke(\"graphiql-un-styled\",e.className)}));Qe.displayName=\"UnStyledButton\";const gn=h.forwardRef((e,t)=>_.jsx(\"button\",{...e,ref:t,className:Ke(\"graphiql-button\",{success:\"graphiql-button-success\",error:\"graphiql-button-error\"}[e.state],e.className)}));gn.displayName=\"Button\";const Gh=h.forwardRef((e,t)=>_.jsx(\"div\",{...e,ref:t,className:Ke(\"graphiql-button-group\",e.className)}));Gh.displayName=\"ButtonGroup\";const tl=F((e,t)=>Object.entries(t).reduce((n,[r,o])=>(n[r]=o,n),e),\"createComponentGroup\"),MT=h.forwardRef((e,t)=>_.jsx(Y5,{asChild:!0,children:_.jsxs(Qe,{...e,ref:t,type:\"button\",className:Ke(\"graphiql-dialog-close\",e.className),children:[_.jsx(eS,{children:\"Close dialog\"}),_.jsx(r0,{})]})}));MT.displayName=\"Dialog.Close\";function VT({children:e,...t}){return _.jsx(U5,{...t,children:_.jsxs(z5,{children:[_.jsx(H5,{className:\"graphiql-dialog-overlay\"}),_.jsx(G5,{className:\"graphiql-dialog\",children:e})]})})}F(VT,\"DialogRoot\");const ti=tl(VT,{Close:MT,Title:W5,Trigger:B5,Description:Q5}),jT=h.forwardRef((e,t)=>_.jsx(WL,{asChild:!0,children:_.jsx(\"button\",{...e,ref:t,className:Ke(\"graphiql-un-styled\",e.className)})}));jT.displayName=\"DropdownMenuButton\";function qT({children:e,align:t=\"start\",sideOffset:n=5,className:r,...o}){return _.jsx(QL,{children:_.jsx(YL,{align:t,sideOffset:n,className:Ke(\"graphiql-dropdown-content\",r),...o,children:e})})}F(qT,\"Content\");const kwe=F(({className:e,children:t,...n})=>_.jsx(ZL,{className:Ke(\"graphiql-dropdown-item\",e),...n,children:t}),\"Item\"),Dr=tl(GL,{Button:jT,Item:kwe,Content:qT}),pu=new Kve({breaks:!0,linkify:!0}),Bn=h.forwardRef(({children:e,onlyShowFirstChild:t,type:n,...r},o)=>_.jsx(\"div\",{...r,ref:o,className:Ke(`graphiql-markdown-${n}`,t&&\"graphiql-markdown-preview\",r.className),dangerouslySetInnerHTML:{__html:pu.render(e)}}));Bn.displayName=\"MarkdownContent\";const o0=h.forwardRef((e,t)=>_.jsx(\"div\",{...e,ref:t,className:Ke(\"graphiql-spinner\",e.className)}));o0.displayName=\"Spinner\";function UT({children:e,align:t=\"start\",side:n=\"bottom\",sideOffset:r=5,label:o}){return _.jsxs(fbe,{children:[_.jsx(dbe,{asChild:!0,children:e}),_.jsx(pbe,{children:_.jsx(hbe,{className:\"graphiql-tooltip\",align:t,side:n,sideOffset:r,children:o})})]})}F(UT,\"TooltipRoot\");const pt=tl(UT,{Provider:ube}),BT=h.forwardRef(({isActive:e,value:t,children:n,className:r,...o},i)=>_.jsx(kT.Item,{...o,ref:i,value:t,\"aria-selected\":e?\"true\":void 0,role:\"tab\",className:Ke(\"graphiql-tab\",e&&\"graphiql-tab-active\",r),children:n}));BT.displayName=\"Tab\";const zT=h.forwardRef((e,t)=>_.jsx(Qe,{...e,ref:t,type:\"button\",className:Ke(\"graphiql-tab-button\",e.className),children:e.children}));zT.displayName=\"Tab.Button\";const HT=h.forwardRef((e,t)=>_.jsx(pt,{label:\"Close Tab\",children:_.jsx(Qe,{\"aria-label\":\"Close Tab\",...e,ref:t,type:\"button\",className:Ke(\"graphiql-tab-close\",e.className),children:_.jsx(r0,{})})}));HT.displayName=\"Tab.Close\";const Ud=tl(BT,{Button:zT,Close:HT}),GT=h.forwardRef(({values:e,onReorder:t,children:n,className:r,...o},i)=>_.jsx(kT.Group,{...o,ref:i,values:e,onReorder:t,axis:\"x\",role:\"tablist\",className:Ke(\"graphiql-tabs\",r),children:n}));GT.displayName=\"Tabs\";const WT=Kr(\"HistoryContext\");function QT(e){var t;const n=to(),r=h.useRef(new f3(n||new Xp(null),e.maxHistoryLength||Nwe)),[o,i]=h.useState(((t=r.current)==null?void 0:t.queries)||[]),s=h.useCallback(p=>{var f;(f=r.current)==null||f.updateHistory(p),i(r.current.queries)},[]),a=h.useCallback((p,f)=>{r.current.editLabel(p,f),i(r.current.queries)},[]),l=h.useCallback(p=>{r.current.toggleFavorite(p),i(r.current.queries)},[]),c=h.useCallback(p=>p,[]),u=h.useCallback((p,f=!1)=>{r.current.deleteHistory(p,f),i(r.current.queries)},[]),d=h.useMemo(()=>({addToHistory:s,editLabel:a,items:o,toggleFavorite:l,setActive:c,deleteFromHistory:u}),[s,a,o,l,c,u]);return _.jsx(WT.Provider,{value:d,children:e.children})}F(QT,\"HistoryContextProvider\");const bf=eo(WT),Nwe=20;function YT(){const{items:e,deleteFromHistory:t}=bf({nonNull:!0});let n=e.slice().map((a,l)=>({...a,index:l})).reverse();const r=n.filter(a=>a.favorite);r.length&&(n=n.filter(a=>!a.favorite));const[o,i]=h.useState(null);h.useEffect(()=>{o&&setTimeout(()=>{i(null)},2e3)},[o]);const s=h.useCallback(()=>{try{for(const a of n)t(a,!0);i(\"success\")}catch{i(\"error\")}},[t,n]);return _.jsxs(\"section\",{\"aria-label\":\"History\",className:\"graphiql-history\",children:[_.jsxs(\"div\",{className:\"graphiql-history-header\",children:[\"History\",(o||n.length>0)&&_.jsx(gn,{type:\"button\",state:o||void 0,disabled:!n.length,onClick:s,children:{success:\"Cleared\",error:\"Failed to Clear\"}[o]||\"Clear\"})]}),!!r.length&&_.jsx(\"ul\",{className:\"graphiql-history-items\",children:r.map(a=>_.jsx(Na,{item:a},a.index))}),!!r.length&&!!n.length&&_.jsx(\"div\",{className:\"graphiql-history-item-spacer\"}),!!n.length&&_.jsx(\"ul\",{className:\"graphiql-history-items\",children:n.map(a=>_.jsx(Na,{item:a},a.index))})]})}F(YT,\"History\");function Na(e){const{editLabel:t,toggleFavorite:n,deleteFromHistory:r,setActive:o}=bf({nonNull:!0,caller:Na}),{headerEditor:i,queryEditor:s,variableEditor:a}=et({nonNull:!0,caller:Na}),l=h.useRef(null),c=h.useRef(null),[u,d]=h.useState(!1);h.useEffect(()=>{var E;u&&((E=l.current)==null||E.focus())},[u]);const p=e.item.label||e.item.operationName||ZT(e.item.query),f=h.useCallback(()=>{var E;d(!1);const{index:x,...w}=e.item;t({...w,label:(E=l.current)==null?void 0:E.value},x)},[t,e.item]),m=h.useCallback(()=>{d(!1)},[]),v=h.useCallback(E=>{E.stopPropagation(),d(!0)},[]),b=h.useCallback(()=>{const{query:E,variables:x,headers:w}=e.item;s==null||s.setValue(E??\"\"),a==null||a.setValue(x??\"\"),i==null||i.setValue(w??\"\"),o(e.item)},[i,e.item,s,o,a]),y=h.useCallback(E=>{E.stopPropagation(),r(e.item)},[e.item,r]),g=h.useCallback(E=>{E.stopPropagation(),n(e.item)},[e.item,n]);return _.jsx(\"li\",{className:Ke(\"graphiql-history-item\",u&&\"editable\"),children:u?_.jsxs(_.Fragment,{children:[_.jsx(\"input\",{type:\"text\",defaultValue:e.item.label,ref:l,onKeyDown:E=>{E.key===\"Esc\"?d(!1):E.key===\"Enter\"&&(d(!1),t({...e.item,label:E.currentTarget.value}))},placeholder:\"Type a label\"}),_.jsx(Qe,{type:\"button\",ref:c,onClick:f,children:\"Save\"}),_.jsx(Qe,{type:\"button\",ref:c,onClick:m,children:_.jsx(r0,{})})]}):_.jsxs(_.Fragment,{children:[_.jsx(pt,{label:\"Set active\",children:_.jsx(Qe,{type:\"button\",className:\"graphiql-history-item-label\",onClick:b,\"aria-label\":\"Set active\",children:p})}),_.jsx(pt,{label:\"Edit label\",children:_.jsx(Qe,{type:\"button\",className:\"graphiql-history-item-action\",onClick:v,\"aria-label\":\"Edit label\",children:_.jsx(vwe,{\"aria-hidden\":\"true\"})})}),_.jsx(pt,{label:e.item.favorite?\"Remove favorite\":\"Add favorite\",children:_.jsx(Qe,{type:\"button\",className:\"graphiql-history-item-action\",onClick:g,\"aria-label\":e.item.favorite?\"Remove favorite\":\"Add favorite\",children:e.item.favorite?_.jsx(_we,{\"aria-hidden\":\"true\"}):_.jsx(Swe,{\"aria-hidden\":\"true\"})})}),_.jsx(pt,{label:\"Delete from history\",children:_.jsx(Qe,{type:\"button\",className:\"graphiql-history-item-action\",onClick:y,\"aria-label\":\"Delete from history\",children:_.jsx(Twe,{\"aria-hidden\":\"true\"})})})]})})}F(Na,\"HistoryItem\");function ZT(e){return e==null?void 0:e.split(`\n`).map(t=>t.replace(/#(.*)/,\"\")).join(\" \").replaceAll(\"{\",\" { \").replaceAll(\"}\",\" } \").replaceAll(/[\\s]{2,}/g,\" \")}F(ZT,\"formatQuery\");const XT=Kr(\"ExecutionContext\");function hu({fetcher:e,getDefaultFieldNames:t,children:n,operationName:r}){if(!e)throw new TypeError(\"The `ExecutionContextProvider` component requires a `fetcher` function to be passed as prop.\");const{externalFragments:o,headerEditor:i,queryEditor:s,responseEditor:a,variableEditor:l,updateActiveTabValues:c}=et({nonNull:!0,caller:hu}),u=bf(),d=yu({getDefaultFieldNames:t,caller:hu}),[p,f]=h.useState(!1),[m,v]=h.useState(null),b=h.useRef(0),y=h.useCallback(()=>{m==null||m.unsubscribe(),f(!1),v(null)},[m]),g=h.useCallback(async()=>{if(!s||!a)return;if(m){y();return}const w=F(V=>{a.setValue(V),c({response:V})},\"setResponse\");b.current+=1;const C=b.current;let T=d()||s.getValue();const A=l==null?void 0:l.getValue();let S;try{S=Wh({json:A,errorMessageParse:\"Variables are invalid JSON\",errorMessageType:\"Variables are not a JSON object.\"})}catch(V){w(V instanceof Error?V.message:`${V}`);return}const k=i==null?void 0:i.getValue();let q;try{q=Wh({json:k,errorMessageParse:\"Headers are invalid JSON\",errorMessageType:\"Headers are not a JSON object.\"})}catch(V){w(V instanceof Error?V.message:`${V}`);return}if(o){const V=s.documentAST?Z3(s.documentAST,o):[];V.length>0&&(T+=`\n`+V.map(N=>Ut(N)).join(`\n`))}w(\"\"),f(!0);const H=r??s.operationName??void 0;u==null||u.addToHistory({query:T,variables:A,headers:k,operationName:H});try{let V={data:{}};const N=F(I=>{if(C!==b.current)return;let D=Array.isArray(I)?I:!1;if(!D&&typeof I==\"object\"&&I!==null&&\"hasNext\"in I&&(D=[I]),D){const P={data:V.data},U=[...(V==null?void 0:V.errors)||[],...D.flatMap(Z=>Z.errors).filter(Boolean)];U.length&&(P.errors=U);for(const Z of D){const{path:ee,data:te,errors:j,...z}=Z;if(ee){if(!te)throw new Error(`Expected part to contain a data property, but got ${Z}`);pI(P.data,ee,te,{merge:!0})}else te&&(P.data=te);V={...P,...z}}f(!1),w(Zp(V))}else{const P=Zp(I);f(!1),w(P)}},\"handleResponse\"),M=e({query:T,variables:S,operationName:H},{headers:q??void 0,documentAST:s.documentAST??void 0}),R=await Promise.resolve(M);if(Fw(R))v(R.subscribe({next(I){N(I)},error(I){f(!1),I&&w(ha(I)),v(null)},complete(){f(!1),v(null)}}));else if(Mw(R)){v({unsubscribe:()=>{var I,D;return(D=(I=R[Symbol.asyncIterator]()).return)==null?void 0:D.call(I)}});for await(const I of R)N(I);f(!1),v(null)}else N(R)}catch(V){f(!1),w(ha(V)),v(null)}},[d,o,e,i,u,r,s,a,y,m,c,l]),E=!!m,x=h.useMemo(()=>({isFetching:p,isSubscribed:E,operationName:r??null,run:g,stop:y}),[p,E,r,g,y]);return _.jsx(XT.Provider,{value:x,children:n})}F(hu,\"ExecutionContextProvider\");const nl=eo(XT);function Wh({json:e,errorMessageParse:t,errorMessageType:n}){let r;try{r=e&&e.trim()!==\"\"?JSON.parse(e):void 0}catch(i){throw new Error(`${t}: ${i instanceof Error?i.message:i}.`)}const o=typeof r==\"object\"&&r!==null&&!Array.isArray(r);if(r!==void 0&&!o)throw new Error(n);return r}F(Wh,\"tryParseJsonObject\");const xf=\"graphiql\",wf=\"sublime\";let JT=!1;typeof window==\"object\"&&(JT=window.navigator.platform.toLowerCase().indexOf(\"mac\")===0);const _f={[JT?\"Cmd-F\":\"Ctrl-F\"]:\"findPersistent\",\"Cmd-G\":\"findPersistent\",\"Ctrl-G\":\"findPersistent\",\"Ctrl-Left\":\"goSubwordLeft\",\"Ctrl-Right\":\"goSubwordRight\",\"Alt-Left\":\"goGroupLeft\",\"Alt-Right\":\"goGroupRight\"};async function as(e,t){const n=await me(()=>import(\"./codemirror.es-52e8b92d.js\"),[\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.c).then(r=>typeof r==\"function\"?r:r.default);return await Promise.all((t==null?void 0:t.useCommonAddons)===!1?e:[me(()=>import(\"./show-hint.es-b981493e.js\"),[\"assets/show-hint.es-b981493e.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.s),me(()=>import(\"./matchbrackets.es-97d2e827.js\"),[\"assets/matchbrackets.es-97d2e827.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/matchbrackets.es2-f53f57e6.js\"]).then(r=>r.m),me(()=>import(\"./closebrackets.es-e969742b.js\"),[\"assets/closebrackets.es-e969742b.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.c),me(()=>import(\"./brace-fold.es-f2e3735d.js\"),[\"assets/brace-fold.es-f2e3735d.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.b),me(()=>import(\"./foldgutter.es-b6cee46a.js\"),[\"assets/foldgutter.es-b6cee46a.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.f),me(()=>import(\"./lint.es-fe7166bb.js\"),[\"assets/lint.es-fe7166bb.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.l),me(()=>import(\"./searchcursor.es-b1a352a2.js\"),[\"assets/searchcursor.es-b1a352a2.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\"]).then(r=>r.s),me(()=>import(\"./jump-to-line.es-3afd5e0a.js\"),[\"assets/jump-to-line.es-3afd5e0a.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/dialog.es-b2776d29.js\"]).then(r=>r.j),me(()=>import(\"./dialog.es-b2776d29.js\"),[\"assets/dialog.es-b2776d29.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(r=>r.d),me(()=>import(\"./sublime.es-e2a3eb60.js\"),[\"assets/sublime.es-e2a3eb60.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\",\"assets/matchbrackets.es2-f53f57e6.js\"]).then(r=>r.s),...e]),n}F(as,\"importCodeMirror\");const Awe=F(e=>e?Ut(e):\"\",\"printDefault\");function i0({field:e}){if(!(\"defaultValue\"in e)||e.defaultValue===void 0)return null;const t=vi(e.defaultValue,e.type);return t?_.jsxs(_.Fragment,{children:[\" = \",_.jsx(\"span\",{className:\"graphiql-doc-explorer-default-value\",children:Awe(t)})]}):null}F(i0,\"DefaultValue\");const KT=Kr(\"SchemaContext\");function s0(e){if(!e.fetcher)throw new TypeError(\"The `SchemaContextProvider` component requires a `fetcher` function to be passed as prop.\");const{initialHeaders:t,headerEditor:n}=et({nonNull:!0,caller:s0}),[r,o]=h.useState(),[i,s]=h.useState(!1),[a,l]=h.useState(null),c=h.useRef(0);h.useEffect(()=>{o(Qp(e.schema)||e.schema===null||e.schema===void 0?e.schema:void 0),c.current++},[e.schema]);const u=h.useRef(t);h.useEffect(()=>{n&&(u.current=n.getValue())});const{introspectionQuery:d,introspectionQueryName:p,introspectionQuerySansSubscriptions:f}=e2({inputValueDeprecation:e.inputValueDeprecation,introspectionQueryName:e.introspectionQueryName,schemaDescription:e.schemaDescription}),{fetcher:m,onSchemaChange:v,dangerouslyAssumeSchemaIsValid:b,children:y}=e,g=h.useCallback(()=>{if(Qp(e.schema)||e.schema===null)return;const w=++c.current,C=e.schema;async function T(){if(C)return C;const A=t2(u.current);if(!A.isValidJSON){l(\"Introspection failed as headers are invalid.\");return}const S=A.headers?{headers:A.headers}:{},k=Ig(m({query:d,operationName:p},S));if(!Dg(k)){l(\"Fetcher did not return a Promise for introspection.\");return}s(!0),l(null);let q=await k;if(typeof q!=\"object\"||q===null||!(\"data\"in q)){const V=Ig(m({query:f,operationName:p},S));if(!Dg(V))throw new Error(\"Fetcher did not return a Promise for introspection.\");q=await V}if(s(!1),q!=null&&q.data&&\"__schema\"in q.data)return q.data;const H=typeof q==\"string\"?q:Zp(q);l(H)}F(T,\"fetchIntrospectionData\"),T().then(A=>{if(!(w!==c.current||!A))try{const S=MD(A);o(S),v==null||v(S)}catch(S){l(ha(S))}}).catch(A=>{w===c.current&&(l(ha(A)),s(!1))})},[m,p,d,f,v,e.schema]);h.useEffect(()=>{g()},[g]),h.useEffect(()=>{function w(C){C.ctrlKey&&C.key===\"R\"&&g()}return F(w,\"triggerIntrospection\"),window.addEventListener(\"keydown\",w),()=>window.removeEventListener(\"keydown\",w)});const E=h.useMemo(()=>!r||b?[]:y_(r),[r,b]),x=h.useMemo(()=>({fetchError:a,introspect:g,isFetching:i,schema:r,validationErrors:E}),[a,g,i,r,E]);return _.jsx(KT.Provider,{value:x,children:y})}F(s0,\"SchemaContextProvider\");const Wn=eo(KT);function e2({inputValueDeprecation:e,introspectionQueryName:t,schemaDescription:n}){return h.useMemo(()=>{const r=t||\"IntrospectionQuery\";let o=FD({inputValueDeprecation:e,schemaDescription:n});t&&(o=o.replace(\"query IntrospectionQuery\",`query ${r}`));const i=o.replace(\"subscriptionType { name }\",\"\");return{introspectionQueryName:r,introspectionQuery:o,introspectionQuerySansSubscriptions:i}},[e,t,n])}F(e2,\"useIntrospectionQuery\");function t2(e){let t=null,n=!0;try{e&&(t=JSON.parse(e))}catch{n=!1}return{headers:t,isValidJSON:n}}F(t2,\"parseHeaderString\");const Hl={name:\"Docs\"},n2=Kr(\"ExplorerContext\");function a0(e){const{schema:t,validationErrors:n}=Wn({nonNull:!0,caller:a0}),[r,o]=h.useState([Hl]),i=h.useCallback(c=>{o(u=>u.at(-1).def===c.def?u:[...u,c])},[]),s=h.useCallback(()=>{o(c=>c.length>1?c.slice(0,-1):c)},[]),a=h.useCallback(()=>{o(c=>c.length===1?c:[Hl])},[]);h.useEffect(()=>{t==null||n.length>0?a():o(c=>{if(c.length===1)return c;const u=[Hl];let d=null;for(const p of c)if(p!==Hl)if(p.def)if(Zm(p.def)){const f=t.getType(p.def.name);if(f)u.push({name:p.name,def:f}),d=f;else break}else{if(d===null)break;if(Ae(d)||vt(d)){const f=d.getFields()[p.name];if(f)u.push({name:p.name,def:f});else break}else{if(Zr(d)||Bt(d)||De(d)||nn(d))break;{const f=d;if(f.args.find(m=>m.name===p.name))u.push({name:p.name,def:f});else break}}}else d=null,u.push(p);return u})},[a,t,n]);const l=h.useMemo(()=>({explorerNavStack:r,push:i,pop:s,reset:a}),[r,i,s,a]);return _.jsx(n2.Provider,{value:l,children:e.children})}F(a0,\"ExplorerContextProvider\");const no=eo(n2);function Aa(e,t){return qe(e)?_.jsxs(_.Fragment,{children:[Aa(e.ofType,t),\"!\"]}):wt(e)?_.jsxs(_.Fragment,{children:[\"[\",Aa(e.ofType,t),\"]\"]}):t(e)}F(Aa,\"renderType\");function En(e){const{push:t}=no({nonNull:!0,caller:En});return e.type?Aa(e.type,n=>_.jsx(\"a\",{className:\"graphiql-doc-explorer-type-name\",onClick:r=>{r.preventDefault(),t({name:n.name,def:n})},href:\"#\",children:n.name})):null}F(En,\"TypeLink\");function Da({arg:e,showDefaultValue:t,inline:n}){const r=_.jsxs(\"span\",{children:[_.jsx(\"span\",{className:\"graphiql-doc-explorer-argument-name\",children:e.name}),\": \",_.jsx(En,{type:e.type}),t!==!1&&_.jsx(i0,{field:e})]});return n?r:_.jsxs(\"div\",{className:\"graphiql-doc-explorer-argument\",children:[r,e.description?_.jsx(Bn,{type:\"description\",children:e.description}):null,e.deprecationReason?_.jsxs(\"div\",{className:\"graphiql-doc-explorer-argument-deprecation\",children:[_.jsx(\"div\",{className:\"graphiql-doc-explorer-argument-deprecation-label\",children:\"Deprecated\"}),_.jsx(Bn,{type:\"deprecation\",children:e.deprecationReason})]}):null]})}F(Da,\"Argument\");function l0(e){return e.children?_.jsxs(\"div\",{className:\"graphiql-doc-explorer-deprecation\",children:[_.jsx(\"div\",{className:\"graphiql-doc-explorer-deprecation-label\",children:\"Deprecated\"}),_.jsx(Bn,{type:\"deprecation\",onlyShowFirstChild:e.preview??!0,children:e.children})]}):null}F(l0,\"DeprecationReason\");function r2({directive:e}){return _.jsxs(\"span\",{className:\"graphiql-doc-explorer-directive\",children:[\"@\",e.name.value]})}F(r2,\"Directive\");function zt(e){const t=Dwe[e.title];return _.jsxs(\"div\",{children:[_.jsxs(\"div\",{className:\"graphiql-doc-explorer-section-title\",children:[_.jsx(t,{}),e.title]}),_.jsx(\"div\",{className:\"graphiql-doc-explorer-section-content\",children:e.children})]})}F(zt,\"ExplorerSection\");const Dwe={Arguments:Jxe,\"Deprecated Arguments\":rwe,\"Deprecated Enum Values\":owe,\"Deprecated Fields\":iwe,Directives:swe,\"Enum Values\":cwe,Fields:uwe,Implements:dwe,Implementations:zl,\"Possible Types\":zl,\"Root Types\":xwe,Type:zl,\"All Schema Types\":zl};function o2(e){return _.jsxs(_.Fragment,{children:[e.field.description?_.jsx(Bn,{type:\"description\",children:e.field.description}):null,_.jsx(l0,{preview:!1,children:e.field.deprecationReason}),_.jsx(zt,{title:\"Type\",children:_.jsx(En,{type:e.field.type})}),_.jsx(i2,{field:e.field}),_.jsx(s2,{field:e.field})]})}F(o2,\"FieldDocumentation\");function i2({field:e}){const[t,n]=h.useState(!1),r=h.useCallback(()=>{n(!0)},[]);if(!(\"args\"in e))return null;const o=[],i=[];for(const s of e.args)s.deprecationReason?i.push(s):o.push(s);return _.jsxs(_.Fragment,{children:[o.length>0?_.jsx(zt,{title:\"Arguments\",children:o.map(s=>_.jsx(Da,{arg:s},s.name))}):null,i.length>0?t||o.length===0?_.jsx(zt,{title:\"Deprecated Arguments\",children:i.map(s=>_.jsx(Da,{arg:s},s.name))}):_.jsx(gn,{type:\"button\",onClick:r,children:\"Show Deprecated Arguments\"}):null]})}F(i2,\"Arguments\");function s2({field:e}){var t;const n=((t=e.astNode)==null?void 0:t.directives)||[];return!n||n.length===0?null:_.jsx(zt,{title:\"Directives\",children:n.map(r=>_.jsx(\"div\",{children:_.jsx(r2,{directive:r})},r.name.value))})}F(s2,\"Directives\");function a2(e){var t,n,r,o;const i=e.schema.getQueryType(),s=(n=(t=e.schema).getMutationType)==null?void 0:n.call(t),a=(o=(r=e.schema).getSubscriptionType)==null?void 0:o.call(r),l=e.schema.getTypeMap(),c=[i==null?void 0:i.name,s==null?void 0:s.name,a==null?void 0:a.name];return _.jsxs(_.Fragment,{children:[_.jsx(Bn,{type:\"description\",children:e.schema.description||\"A GraphQL schema provides a root type for each kind of operation.\"}),_.jsxs(zt,{title:\"Root Types\",children:[i?_.jsxs(\"div\",{children:[_.jsx(\"span\",{className:\"graphiql-doc-explorer-root-type\",children:\"query\"}),\": \",_.jsx(En,{type:i})]}):null,s&&_.jsxs(\"div\",{children:[_.jsx(\"span\",{className:\"graphiql-doc-explorer-root-type\",children:\"mutation\"}),\": \",_.jsx(En,{type:s})]}),a&&_.jsxs(\"div\",{children:[_.jsx(\"span\",{className:\"graphiql-doc-explorer-root-type\",children:\"subscription\"}),\": \",_.jsx(En,{type:a})]})]}),_.jsx(zt,{title:\"All Schema Types\",children:l&&_.jsx(\"div\",{children:Object.values(l).map(u=>c.includes(u.name)||u.name.startsWith(\"__\")?null:_.jsx(\"div\",{children:_.jsx(En,{type:u})},u.name))})})]})}F(a2,\"SchemaDocumentation\");function Fo(e,t){let n;return function(...r){n&&window.clearTimeout(n),n=window.setTimeout(()=>{n=null,t(...r)},e)}}F(Fo,\"debounce\");function c0(){const{explorerNavStack:e,push:t}=no({nonNull:!0,caller:c0}),n=h.useRef(null),r=mu(),[o,i]=h.useState(\"\"),[s,a]=h.useState(r(o)),l=h.useMemo(()=>Fo(200,f=>{a(r(f))}),[r]);h.useEffect(()=>{l(o)},[l,o]),h.useEffect(()=>{function f(m){var v;m.metaKey&&m.key===\"k\"&&((v=n.current)==null||v.focus())}return F(f,\"handleKeyDown\"),window.addEventListener(\"keydown\",f),()=>window.removeEventListener(\"keydown\",f)},[]);const c=e.at(-1),u=h.useCallback(f=>{t(\"field\"in f?{name:f.field.name,def:f.field}:{name:f.type.name,def:f.type})},[t]),d=h.useRef(!1),p=h.useCallback(f=>{d.current=f.type===\"focus\"},[]);return e.length===1||Ae(c.def)||De(c.def)||vt(c.def)?_.jsxs(ei,{as:\"div\",className:\"graphiql-doc-explorer-search\",onChange:u,\"data-state\":d?void 0:\"idle\",\"aria-label\":`Search ${c.name}...`,children:[_.jsxs(\"div\",{className:\"graphiql-doc-explorer-search-input\",onClick:()=>{var f;(f=n.current)==null||f.focus()},children:[_.jsx(hwe,{}),_.jsx(ei.Input,{autoComplete:\"off\",onFocus:p,onBlur:p,onChange:f=>i(f.target.value),placeholder:\"⌘ K\",ref:n,value:o,\"data-cy\":\"doc-explorer-input\"})]}),d.current&&_.jsxs(ei.Options,{\"data-cy\":\"doc-explorer-list\",children:[s.within.length+s.types.length+s.fields.length===0?_.jsx(\"li\",{className:\"graphiql-doc-explorer-search-empty\",children:\"No results found\"}):s.within.map((f,m)=>_.jsx(ei.Option,{value:f,\"data-cy\":\"doc-explorer-option\",children:_.jsx(Qh,{field:f.field,argument:f.argument})},`within-${m}`)),s.within.length>0&&s.types.length+s.fields.length>0?_.jsx(\"div\",{className:\"graphiql-doc-explorer-search-divider\",children:\"Other results\"}):null,s.types.map((f,m)=>_.jsx(ei.Option,{value:f,\"data-cy\":\"doc-explorer-option\",children:_.jsx(vu,{type:f.type})},`type-${m}`)),s.fields.map((f,m)=>_.jsxs(ei.Option,{value:f,\"data-cy\":\"doc-explorer-option\",children:[_.jsx(vu,{type:f.type}),\".\",_.jsx(Qh,{field:f.field,argument:f.argument})]},`field-${m}`))]})]}):null}F(c0,\"Search\");function mu(e){const{explorerNavStack:t}=no({nonNull:!0,caller:e||mu}),{schema:n}=Wn({nonNull:!0,caller:e||mu}),r=t.at(-1);return h.useCallback(o=>{const i={within:[],types:[],fields:[]};if(!n)return i;const s=r.def,a=n.getTypeMap();let l=Object.keys(a);s&&(l=l.filter(c=>c!==s.name),l.unshift(s.name));for(const c of l){if(i.within.length+i.types.length+i.fields.length>=100)break;const u=a[c];if(s!==u&&mc(c,o)&&i.types.push({type:u}),!Ae(u)&&!De(u)&&!vt(u))continue;const d=u.getFields();for(const p in d){const f=d[p];let m;if(!mc(p,o))if(\"args\"in f){if(m=f.args.filter(v=>mc(v.name,o)),m.length===0)continue}else continue;i[s===u?\"within\":\"fields\"].push(...m?m.map(v=>({type:u,field:f,argument:v})):[{type:u,field:f}])}}return i},[r.def,n])}F(mu,\"useSearchResults\");function mc(e,t){try{const n=t.replaceAll(/[^_0-9A-Za-z]/g,r=>\"\\\\\"+r);return e.search(new RegExp(n,\"i\"))!==-1}catch{return e.toLowerCase().includes(t.toLowerCase())}}F(mc,\"isMatch\");function vu(e){return _.jsx(\"span\",{className:\"graphiql-doc-explorer-search-type\",children:e.type.name})}F(vu,\"Type\");function Qh({field:e,argument:t}){return _.jsxs(_.Fragment,{children:[_.jsx(\"span\",{className:\"graphiql-doc-explorer-search-field\",children:e.name}),t?_.jsxs(_.Fragment,{children:[\"(\",_.jsx(\"span\",{className:\"graphiql-doc-explorer-search-argument\",children:t.name}),\":\",\" \",Aa(t.type,n=>_.jsx(vu,{type:n})),\")\"]}):null]})}F(Qh,\"Field$1\");function l2(e){const{push:t}=no({nonNull:!0});return _.jsx(\"a\",{className:\"graphiql-doc-explorer-field-name\",onClick:n=>{n.preventDefault(),t({name:e.field.name,def:e.field})},href:\"#\",children:e.field.name})}F(l2,\"FieldLink\");function c2(e){return Zm(e.type)?_.jsxs(_.Fragment,{children:[e.type.description?_.jsx(Bn,{type:\"description\",children:e.type.description}):null,_.jsx(u2,{type:e.type}),_.jsx(f2,{type:e.type}),_.jsx(d2,{type:e.type}),_.jsx(p2,{type:e.type})]}):null}F(c2,\"TypeDocumentation\");function u2({type:e}){return Ae(e)&&e.getInterfaces().length>0?_.jsx(zt,{title:\"Implements\",children:e.getInterfaces().map(t=>_.jsx(\"div\",{children:_.jsx(En,{type:t})},t.name))}):null}F(u2,\"ImplementsInterfaces\");function f2({type:e}){const[t,n]=h.useState(!1),r=h.useCallback(()=>{n(!0)},[]);if(!Ae(e)&&!De(e)&&!vt(e))return null;const o=e.getFields(),i=[],s=[];for(const a of Object.keys(o).map(l=>o[l]))a.deprecationReason?s.push(a):i.push(a);return _.jsxs(_.Fragment,{children:[i.length>0?_.jsx(zt,{title:\"Fields\",children:i.map(a=>_.jsx(Yh,{field:a},a.name))}):null,s.length>0?t||i.length===0?_.jsx(zt,{title:\"Deprecated Fields\",children:s.map(a=>_.jsx(Yh,{field:a},a.name))}):_.jsx(gn,{type:\"button\",onClick:r,children:\"Show Deprecated Fields\"}):null]})}F(f2,\"Fields\");function Yh({field:e}){const t=\"args\"in e?e.args.filter(n=>!n.deprecationReason):[];return _.jsxs(\"div\",{className:\"graphiql-doc-explorer-item\",children:[_.jsxs(\"div\",{children:[_.jsx(l2,{field:e}),t.length>0?_.jsxs(_.Fragment,{children:[\"(\",_.jsx(\"span\",{children:t.map(n=>t.length===1?_.jsx(Da,{arg:n,inline:!0},n.name):_.jsx(\"div\",{className:\"graphiql-doc-explorer-argument-multiple\",children:_.jsx(Da,{arg:n,inline:!0})},n.name))}),\")\"]}):null,\": \",_.jsx(En,{type:e.type}),_.jsx(i0,{field:e})]}),e.description?_.jsx(Bn,{type:\"description\",onlyShowFirstChild:!0,children:e.description}):null,_.jsx(l0,{children:e.deprecationReason})]})}F(Yh,\"Field\");function d2({type:e}){const[t,n]=h.useState(!1),r=h.useCallback(()=>{n(!0)},[]);if(!Bt(e))return null;const o=[],i=[];for(const s of e.getValues())s.deprecationReason?i.push(s):o.push(s);return _.jsxs(_.Fragment,{children:[o.length>0?_.jsx(zt,{title:\"Enum Values\",children:o.map(s=>_.jsx(Zh,{value:s},s.name))}):null,i.length>0?t||o.length===0?_.jsx(zt,{title:\"Deprecated Enum Values\",children:i.map(s=>_.jsx(Zh,{value:s},s.name))}):_.jsx(gn,{type:\"button\",onClick:r,children:\"Show Deprecated Values\"}):null]})}F(d2,\"EnumValues\");function Zh({value:e}){return _.jsxs(\"div\",{className:\"graphiql-doc-explorer-item\",children:[_.jsx(\"div\",{className:\"graphiql-doc-explorer-enum-value\",children:e.name}),e.description?_.jsx(Bn,{type:\"description\",children:e.description}):null,e.deprecationReason?_.jsx(Bn,{type:\"deprecation\",children:e.deprecationReason}):null]})}F(Zh,\"EnumValue\");function p2({type:e}){const{schema:t}=Wn({nonNull:!0});return!t||!jr(e)?null:_.jsx(zt,{title:De(e)?\"Implementations\":\"Possible Types\",children:t.getPossibleTypes(e).map(n=>_.jsx(\"div\",{children:_.jsx(En,{type:n})},n.name))})}F(p2,\"PossibleTypes\");function gu(){const{fetchError:e,isFetching:t,schema:n,validationErrors:r}=Wn({nonNull:!0,caller:gu}),{explorerNavStack:o,pop:i}=no({nonNull:!0,caller:gu}),s=o.at(-1);let a=null;e?a=_.jsx(\"div\",{className:\"graphiql-doc-explorer-error\",children:\"Error fetching schema\"}):r.length>0?a=_.jsxs(\"div\",{className:\"graphiql-doc-explorer-error\",children:[\"Schema is invalid: \",r[0].message]}):t?a=_.jsx(o0,{}):n?o.length===1?a=_.jsx(a2,{schema:n}):Qm(s.def)?a=_.jsx(c2,{type:s.def}):s.def&&(a=_.jsx(o2,{field:s.def})):a=_.jsx(\"div\",{className:\"graphiql-doc-explorer-error\",children:\"No GraphQL schema available\"});let l;return o.length>1&&(l=o.at(-2).name),_.jsxs(\"section\",{className:\"graphiql-doc-explorer\",\"aria-label\":\"Documentation Explorer\",children:[_.jsxs(\"div\",{className:\"graphiql-doc-explorer-header\",children:[_.jsxs(\"div\",{className:\"graphiql-doc-explorer-header-content\",children:[l&&_.jsxs(\"a\",{href:\"#\",className:\"graphiql-doc-explorer-back\",onClick:c=>{c.preventDefault(),i()},\"aria-label\":`Go back to ${l}`,children:[_.jsx(ewe,{}),l]}),_.jsx(\"div\",{className:\"graphiql-doc-explorer-title\",children:s.name})]}),_.jsx(c0,{},s.name)]}),_.jsx(\"div\",{className:\"graphiql-doc-explorer-content\",children:a})]})}F(gu,\"DocExplorer\");const Ia={title:\"Documentation Explorer\",icon:F(function(){const e=Sf();return(e==null?void 0:e.visiblePlugin)===Ia?_.jsx(awe,{}):_.jsx(lwe,{})},\"Icon\"),content:gu},bb={title:\"History\",icon:fwe,content:YT},h2=Kr(\"PluginContext\");function m2(e){const t=to(),n=no(),r=bf(),o=!!n,i=!!r,s=h.useMemo(()=>{const f=[],m={};o&&(f.push(Ia),m[Ia.title]=!0),i&&(f.push(bb),m[bb.title]=!0);for(const v of e.plugins||[]){if(typeof v.title!=\"string\"||!v.title)throw new Error(\"All GraphiQL plugins must have a unique title\");if(m[v.title])throw new Error(`All GraphiQL plugins must have a unique title, found two plugins with the title '${v.title}'`);f.push(v),m[v.title]=!0}return f},[o,i,e.plugins]),[a,l]=h.useState(()=>{const f=t==null?void 0:t.get(xb);return s.find(v=>v.title===f)||(f&&(t==null||t.set(xb,\"\")),e.visiblePlugin&&s.find(v=>(typeof e.visiblePlugin==\"string\"?v.title:v)===e.visiblePlugin)||null)}),{onTogglePluginVisibility:c,children:u}=e,d=h.useCallback(f=>{const m=f&&s.find(v=>(typeof f==\"string\"?v.title:v)===f)||null;l(v=>m===v?v:(c==null||c(m),m))},[c,s]);h.useEffect(()=>{e.visiblePlugin&&d(e.visiblePlugin)},[s,e.visiblePlugin,d]);const p=h.useMemo(()=>({plugins:s,setVisiblePlugin:d,visiblePlugin:a}),[s,d,a]);return _.jsx(h2.Provider,{value:p,children:u})}F(m2,\"PluginContextProvider\");const Sf=eo(h2),xb=\"visiblePlugin\";function v2(e,t,n,r,o,i){as([],{useCommonAddons:!1}).then(a=>{let l,c,u,d,p,f,m,v,b;a.on(t,\"select\",(y,g)=>{if(!l){const E=g.parentNode;l=document.createElement(\"div\"),l.className=\"CodeMirror-hint-information\",E.append(l);const x=document.createElement(\"header\");x.className=\"CodeMirror-hint-information-header\",l.append(x),c=document.createElement(\"span\"),c.className=\"CodeMirror-hint-information-field-name\",x.append(c),u=document.createElement(\"span\"),u.className=\"CodeMirror-hint-information-type-name-pill\",x.append(u),d=document.createElement(\"span\"),u.append(d),p=document.createElement(\"a\"),p.className=\"CodeMirror-hint-information-type-name\",p.href=\"javascript:void 0\",p.addEventListener(\"click\",s),u.append(p),f=document.createElement(\"span\"),u.append(f),m=document.createElement(\"div\"),m.className=\"CodeMirror-hint-information-description\",l.append(m),v=document.createElement(\"div\"),v.className=\"CodeMirror-hint-information-deprecation\",l.append(v);const w=document.createElement(\"span\");w.className=\"CodeMirror-hint-information-deprecation-label\",w.textContent=\"Deprecated\",v.append(w),b=document.createElement(\"div\"),b.className=\"CodeMirror-hint-information-deprecation-reason\",v.append(b);const C=parseInt(window.getComputedStyle(l).paddingBottom.replace(/px$/,\"\"),10)||0,T=parseInt(window.getComputedStyle(l).maxHeight.replace(/px$/,\"\"),10)||0,A=F(()=>{l&&(l.style.paddingTop=E.scrollTop+C+\"px\",l.style.maxHeight=E.scrollTop+T+\"px\")},\"handleScroll\");E.addEventListener(\"scroll\",A);let S;E.addEventListener(\"DOMNodeRemoved\",S=F(k=>{k.target===E&&(E.removeEventListener(\"scroll\",A),E.removeEventListener(\"DOMNodeRemoved\",S),l&&l.removeEventListener(\"click\",s),l=null,c=null,u=null,d=null,p=null,f=null,m=null,v=null,b=null,S=null)},\"onRemoveFn\"))}if(c&&(c.textContent=y.text),u&&d&&p&&f)if(y.type){u.style.display=\"inline\";const E=F(x=>{qe(x)?(f.textContent=\"!\"+f.textContent,E(x.ofType)):wt(x)?(d.textContent+=\"[\",f.textContent=\"]\"+f.textContent,E(x.ofType)):p.textContent=x.name},\"renderType\");d.textContent=\"\",f.textContent=\"\",E(y.type)}else d.textContent=\"\",p.textContent=\"\",f.textContent=\"\",u.style.display=\"none\";m&&(y.description?(m.style.display=\"block\",m.innerHTML=pu.render(y.description)):(m.style.display=\"none\",m.innerHTML=\"\")),v&&b&&(y.deprecationReason?(v.style.display=\"block\",b.innerHTML=pu.render(y.deprecationReason)):(v.style.display=\"none\",b.innerHTML=\"\"))})});function s(a){if(!n||!r||!o||!(a.currentTarget instanceof HTMLElement))return;const l=a.currentTarget.textContent||\"\",c=n.getType(l);c&&(o.setVisiblePlugin(Ia),r.push({name:c.name,def:c}),i==null||i(c))}F(s,\"onClickHintInformation\")}F(v2,\"onHasCompletion\");function ks(e,t){h.useEffect(()=>{e&&typeof t==\"string\"&&t!==e.getValue()&&e.setValue(t)},[e,t])}F(ks,\"useSynchronizeValue\");function rl(e,t,n){h.useEffect(()=>{e&&e.setOption(t,n)},[e,t,n])}F(rl,\"useSynchronizeOption\");function u0(e,t,n,r,o){const{updateActiveTabValues:i}=et({nonNull:!0,caller:o}),s=to();h.useEffect(()=>{if(!e)return;const a=Fo(500,u=>{!s||n===null||s.set(n,u)}),l=Fo(100,u=>{i({[r]:u})}),c=F((u,d)=>{if(!d)return;const p=u.getValue();a(p),l(p),t==null||t(p)},\"handleChange\");return e.on(\"change\",c),()=>e.off(\"change\",c)},[t,e,s,n,r,i])}F(u0,\"useChangeHandler\");function f0(e,t,n){const{schema:r}=Wn({nonNull:!0,caller:n}),o=no(),i=Sf();h.useEffect(()=>{if(!e)return;const s=F((a,l)=>{v2(a,l,r,o,i,c=>{t==null||t({kind:\"Type\",type:c,schema:r||void 0})})},\"handleCompletion\");return e.on(\"hasCompletion\",s),()=>e.off(\"hasCompletion\",s)},[t,e,o,i,r])}F(f0,\"useCompletion\");function bn(e,t,n){h.useEffect(()=>{if(e){for(const r of t)e.removeKeyMap(r);if(n){const r={};for(const o of t)r[o]=()=>n();e.addKeyMap(r)}}},[e,t,n])}F(bn,\"useKeyMap\");function Cf({caller:e,onCopyQuery:t}={}){const{queryEditor:n}=et({nonNull:!0,caller:e||Cf});return h.useCallback(()=>{if(!n)return;const r=n.getValue();bI(r),t==null||t(r)},[n,t])}F(Cf,\"useCopyQuery\");function Mo({caller:e}={}){const{queryEditor:t}=et({nonNull:!0,caller:e||Mo}),{schema:n}=Wn({nonNull:!0,caller:Mo});return h.useCallback(()=>{const r=t==null?void 0:t.documentAST,o=t==null?void 0:t.getValue();!r||!o||t.setValue(Ut(a3(r,n)))},[t,n])}F(Mo,\"useMergeQuery\");function ls({caller:e}={}){const{queryEditor:t,headerEditor:n,variableEditor:r}=et({nonNull:!0,caller:e||ls});return h.useCallback(()=>{if(r){const o=r.getValue();try{const i=JSON.stringify(JSON.parse(o),null,2);i!==o&&r.setValue(i)}catch{}}if(n){const o=n.getValue();try{const i=JSON.stringify(JSON.parse(o),null,2);i!==o&&n.setValue(i)}catch{}}if(t){const o=t.getValue(),i=Ut(qo(o));i!==o&&t.setValue(i)}},[t,r,n])}F(ls,\"usePrettifyEditors\");function yu({getDefaultFieldNames:e,caller:t}={}){const{schema:n}=Wn({nonNull:!0,caller:t||yu}),{queryEditor:r}=et({nonNull:!0,caller:t||yu});return h.useCallback(()=>{if(!r)return;const o=r.getValue(),{insertions:i,result:s}=t3(n,o,e);return i&&i.length>0&&r.operation(()=>{const a=r.getCursor(),l=r.indexFromPos(a);r.setValue(s||\"\");let c=0;const u=i.map(({index:p,string:f})=>r.markText(r.posFromIndex(p+c),r.posFromIndex(p+(c+=f.length)),{className:\"auto-inserted-leaf\",clearOnEnter:!0,title:\"Automatically added leaf fields\"}));setTimeout(()=>{for(const p of u)p.clear()},7e3);let d=l;for(const{index:p,string:f}of i)p<l&&(d+=f.length);r.setCursor(r.posFromIndex(d))}),s},[e,r,n])}F(yu,\"useAutoCompleteLeafs\");function Iwe(){const{queryEditor:e}=et({nonNull:!0}),t=(e==null?void 0:e.getValue())??\"\",n=h.useCallback(r=>e==null?void 0:e.setValue(r),[e]);return h.useMemo(()=>[t,n],[t,n])}F(Iwe,\"useOperationsEditorState\");function Rwe(){const{variableEditor:e}=et({nonNull:!0}),t=(e==null?void 0:e.getValue())??\"\",n=h.useCallback(r=>e==null?void 0:e.setValue(r),[e]);return h.useMemo(()=>[t,n],[t,n])}F(Rwe,\"useVariablesEditorState\");function Ei({editorTheme:e=xf,keyMap:t=wf,onEdit:n,readOnly:r=!1}={},o){const{initialHeaders:i,headerEditor:s,setHeaderEditor:a,shouldPersistHeaders:l}=et({nonNull:!0,caller:o||Ei}),c=nl(),u=Mo({caller:o||Ei}),d=ls({caller:o||Ei}),p=h.useRef(null);return h.useEffect(()=>{let f=!0;return as([me(()=>import(\"./javascript.es-3c6957c5.js\"),[\"assets/javascript.es-3c6957c5.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(m=>m.j)]).then(m=>{if(!f)return;const v=p.current;if(!v)return;const b=m(v,{value:i,lineNumbers:!0,tabSize:2,mode:{name:\"javascript\",json:!0},theme:e,autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:r?\"nocursor\":!1,foldGutter:!0,gutters:[\"CodeMirror-linenumbers\",\"CodeMirror-foldgutter\"],extraKeys:_f});b.addKeyMap({\"Cmd-Space\"(){b.showHint({completeSingle:!1,container:v})},\"Ctrl-Space\"(){b.showHint({completeSingle:!1,container:v})},\"Alt-Space\"(){b.showHint({completeSingle:!1,container:v})},\"Shift-Space\"(){b.showHint({completeSingle:!1,container:v})}}),b.on(\"keyup\",(y,g)=>{const{code:E,key:x,shiftKey:w}=g,C=E.startsWith(\"Key\"),T=!w&&E.startsWith(\"Digit\");(C||T||x===\"_\"||x==='\"')&&y.execCommand(\"autocomplete\")}),a(b)}),()=>{f=!1}},[e,i,r,a]),rl(s,\"keyMap\",t),u0(s,n,l?vc:null,\"headers\",Ei),bn(s,[\"Cmd-Enter\",\"Ctrl-Enter\"],c==null?void 0:c.run),bn(s,[\"Shift-Ctrl-P\"],d),bn(s,[\"Shift-Ctrl-M\"],u),p}F(Ei,\"useHeaderEditor\");const vc=\"headers\",Lwe=Array.from({length:11},(e,t)=>String.fromCharCode(8192+t)).concat([\"\\u2028\",\"\\u2029\",\" \",\" \"]),Owe=new RegExp(\"[\"+Lwe.join(\"\")+\"]\",\"g\");function g2(e){return e.replace(Owe,\" \")}F(g2,\"normalizeWhitespace\");function _r({editorTheme:e=xf,keyMap:t=wf,onClickReference:n,onCopyQuery:r,onEdit:o,readOnly:i=!1}={},s){const{schema:a}=Wn({nonNull:!0,caller:s||_r}),{externalFragments:l,initialQuery:c,queryEditor:u,setOperationName:d,setQueryEditor:p,validationRules:f,variableEditor:m,updateActiveTabValues:v}=et({nonNull:!0,caller:s||_r}),b=nl(),y=to(),g=no(),E=Sf(),x=Cf({caller:s||_r,onCopyQuery:r}),w=Mo({caller:s||_r}),C=ls({caller:s||_r}),T=h.useRef(null),A=h.useRef(),S=h.useRef(()=>{});h.useEffect(()=>{S.current=H=>{if(!(!g||!E)){switch(E.setVisiblePlugin(Ia),H.kind){case\"Type\":{g.push({name:H.type.name,def:H.type});break}case\"Field\":{g.push({name:H.field.name,def:H.field});break}case\"Argument\":{H.field&&g.push({name:H.field.name,def:H.field});break}case\"EnumValue\":{H.type&&g.push({name:H.type.name,def:H.type});break}}n==null||n(H)}}},[g,n,E]),h.useEffect(()=>{let H=!0;return as([me(()=>import(\"./comment.es-39699bae.js\"),[\"assets/comment.es-39699bae.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(V=>V.c),me(()=>import(\"./search.es-2e392dd0.js\"),[\"assets/search.es-2e392dd0.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\",\"assets/dialog.es-b2776d29.js\"]).then(V=>V.s),me(()=>import(\"./hint.es-1418191b.js\"),[\"assets/hint.es-1418191b.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/show-hint.es-b981493e.js\",\"assets/Range-52ddcb6a.js\"]),me(()=>import(\"./lint.es2-97c4a6f4.js\"),[\"assets/lint.es2-97c4a6f4.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/Range-52ddcb6a.js\"]),me(()=>import(\"./info.es-3175bfab.js\"),[\"assets/info.es-3175bfab.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/SchemaReference.es-0ccab37b.js\",\"assets/forEachState.es-b2033c2b.js\",\"assets/info-addon.es-c9b2027b.js\"]),me(()=>import(\"./jump.es-7b275cf1.js\"),[\"assets/jump.es-7b275cf1.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/SchemaReference.es-0ccab37b.js\",\"assets/forEachState.es-b2033c2b.js\"]),me(()=>import(\"./mode.es-8c5bcfbd.js\"),[\"assets/mode.es-8c5bcfbd.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/mode-indent.es-057a4f6a.js\"])]).then(V=>{if(!H)return;A.current=V;const N=T.current;if(!N)return;const M=V(N,{value:c,lineNumbers:!0,tabSize:2,foldGutter:!0,mode:\"graphql\",theme:e,autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:i?\"nocursor\":!1,lint:{schema:void 0,validationRules:null,externalFragments:void 0},hintOptions:{schema:void 0,closeOnUnfocus:!1,completeSingle:!1,container:N,externalFragments:void 0},info:{schema:void 0,renderDescription:I=>pu.render(I),onClick(I){S.current(I)}},jump:{schema:void 0,onClick(I){S.current(I)}},gutters:[\"CodeMirror-linenumbers\",\"CodeMirror-foldgutter\"],extraKeys:{..._f,\"Cmd-S\"(){},\"Ctrl-S\"(){}}});M.addKeyMap({\"Cmd-Space\"(){M.showHint({completeSingle:!0,container:N})},\"Ctrl-Space\"(){M.showHint({completeSingle:!0,container:N})},\"Alt-Space\"(){M.showHint({completeSingle:!0,container:N})},\"Shift-Space\"(){M.showHint({completeSingle:!0,container:N})},\"Shift-Alt-Space\"(){M.showHint({completeSingle:!0,container:N})}}),M.on(\"keyup\",(I,D)=>{Pwe.test(D.key)&&I.execCommand(\"autocomplete\")});let R=!1;M.on(\"startCompletion\",()=>{R=!0}),M.on(\"endCompletion\",()=>{R=!1}),M.on(\"keydown\",(I,D)=>{D.key===\"Escape\"&&R&&D.stopPropagation()}),M.on(\"beforeChange\",(I,D)=>{var P;if(D.origin===\"paste\"){const U=D.text.map(g2);(P=D.update)==null||P.call(D,D.from,D.to,U)}}),M.documentAST=null,M.operationName=null,M.operations=null,M.variableToType=null,p(M)}),()=>{H=!1}},[e,c,i,p]),rl(u,\"keyMap\",t),h.useEffect(()=>{if(!u)return;function H(N){var M;const R=K3(a,N.getValue()),I=l3(N.operations??void 0,N.operationName??void 0,R==null?void 0:R.operations);return N.documentAST=(R==null?void 0:R.documentAST)??null,N.operationName=I??null,N.operations=(R==null?void 0:R.operations)??null,m&&(m.state.lint.linterOptions.variableToType=R==null?void 0:R.variableToType,m.options.lint.variableToType=R==null?void 0:R.variableToType,m.options.hintOptions.variableToType=R==null?void 0:R.variableToType,(M=A.current)==null||M.signal(m,\"change\",m)),R?{...R,operationName:I}:null}F(H,\"getAndUpdateOperationFacts\");const V=Fo(100,N=>{const M=N.getValue();y==null||y.set(x2,M);const R=N.operationName,I=H(N);(I==null?void 0:I.operationName)!==void 0&&(y==null||y.set($we,I.operationName)),o==null||o(M,I==null?void 0:I.documentAST),I!=null&&I.operationName&&R!==I.operationName&&d(I.operationName),v({query:M,operationName:(I==null?void 0:I.operationName)??null})});return H(u),u.on(\"change\",V),()=>u.off(\"change\",V)},[o,u,a,d,y,m,v]),y2(u,a??null,A),E2(u,f??null,A),b2(u,l,A),f0(u,n||null,_r);const k=b==null?void 0:b.run,q=h.useCallback(()=>{var H;if(!k||!u||!u.operations||!u.hasFocus()){k==null||k();return}const V=u.indexFromPos(u.getCursor());let N;for(const M of u.operations)M.loc&&M.loc.start<=V&&M.loc.end>=V&&(N=(H=M.name)==null?void 0:H.value);N&&N!==u.operationName&&d(N),k()},[u,k,d]);return bn(u,[\"Cmd-Enter\",\"Ctrl-Enter\"],q),bn(u,[\"Shift-Ctrl-C\"],x),bn(u,[\"Shift-Ctrl-P\",\"Shift-Ctrl-F\"],C),bn(u,[\"Shift-Ctrl-M\"],w),T}F(_r,\"useQueryEditor\");function y2(e,t,n){h.useEffect(()=>{if(!e)return;const r=e.options.lint.schema!==t;e.state.lint.linterOptions.schema=t,e.options.lint.schema=t,e.options.hintOptions.schema=t,e.options.info.schema=t,e.options.jump.schema=t,r&&n.current&&n.current.signal(e,\"change\",e)},[e,t,n])}F(y2,\"useSynchronizeSchema\");function E2(e,t,n){h.useEffect(()=>{if(!e)return;const r=e.options.lint.validationRules!==t;e.state.lint.linterOptions.validationRules=t,e.options.lint.validationRules=t,r&&n.current&&n.current.signal(e,\"change\",e)},[e,t,n])}F(E2,\"useSynchronizeValidationRules\");function b2(e,t,n){const r=h.useMemo(()=>[...t.values()],[t]);h.useEffect(()=>{if(!e)return;const o=e.options.lint.externalFragments!==r;e.state.lint.linterOptions.externalFragments=r,e.options.lint.externalFragments=r,e.options.hintOptions.externalFragments=r,o&&n.current&&n.current.signal(e,\"change\",e)},[e,r,n])}F(b2,\"useSynchronizeExternalFragments\");const Pwe=/^[a-zA-Z0-9_@(]$/,x2=\"query\",$we=\"operationName\";function w2({defaultQuery:e,defaultHeaders:t,headers:n,defaultTabs:r,query:o,variables:i,storage:s,shouldPersistHeaders:a}){const l=s==null?void 0:s.get(La);try{if(!l)throw new Error(\"Storage for tabs is empty\");const c=JSON.parse(l),u=a?n:void 0;if(_2(c)){const d=Ra({query:o,variables:i,headers:u});let p=-1;for(let f=0;f<c.tabs.length;f++){const m=c.tabs[f];m.hash=Ra({query:m.query,variables:m.variables,headers:m.headers}),m.hash===d&&(p=f)}if(p>=0)c.activeTabIndex=p;else{const f=o?Tf(o):null;c.tabs.push({id:m0(),hash:d,title:f||v0,query:o,variables:i,headers:n,operationName:f,response:null}),c.activeTabIndex=c.tabs.length-1}return c}throw new Error(\"Storage for tabs is invalid\")}catch{return{activeTabIndex:0,tabs:(r||[{query:o??e,variables:i,headers:n??t}]).map(p0)}}}F(w2,\"getDefaultTabState\");function _2(e){return e&&typeof e==\"object\"&&!Array.isArray(e)&&C2(e,\"activeTabIndex\")&&\"tabs\"in e&&Array.isArray(e.tabs)&&e.tabs.every(S2)}F(_2,\"isTabsState\");function S2(e){return e&&typeof e==\"object\"&&!Array.isArray(e)&&Xh(e,\"id\")&&Xh(e,\"title\")&&ni(e,\"query\")&&ni(e,\"variables\")&&ni(e,\"headers\")&&ni(e,\"operationName\")&&ni(e,\"response\")}F(S2,\"isTabState\");function C2(e,t){return t in e&&typeof e[t]==\"number\"}F(C2,\"hasNumberKey\");function Xh(e,t){return t in e&&typeof e[t]==\"string\"}F(Xh,\"hasStringKey\");function ni(e,t){return t in e&&(typeof e[t]==\"string\"||e[t]===null)}F(ni,\"hasStringOrNullKey\");function T2({queryEditor:e,variableEditor:t,headerEditor:n,responseEditor:r}){return h.useCallback(o=>{const i=(e==null?void 0:e.getValue())??null,s=(t==null?void 0:t.getValue())??null,a=(n==null?void 0:n.getValue())??null,l=(e==null?void 0:e.operationName)??null,c=(r==null?void 0:r.getValue())??null;return h0(o,{query:i,variables:s,headers:a,response:c,operationName:l})},[e,t,n,r])}F(T2,\"useSynchronizeActiveTabValues\");function d0(e,t=!1){return JSON.stringify(e,(n,r)=>n===\"hash\"||n===\"response\"||!t&&n===\"headers\"?null:r)}F(d0,\"serializeTabState\");function k2({storage:e,shouldPersistHeaders:t}){const n=h.useMemo(()=>Fo(500,r=>{e==null||e.set(La,r)}),[e]);return h.useCallback(r=>{n(d0(r,t))},[t,n])}F(k2,\"useStoreTabs\");function N2({queryEditor:e,variableEditor:t,headerEditor:n,responseEditor:r}){return h.useCallback(({query:o,variables:i,headers:s,response:a})=>{e==null||e.setValue(o??\"\"),t==null||t.setValue(i??\"\"),n==null||n.setValue(s??\"\"),r==null||r.setValue(a??\"\")},[n,e,r,t])}F(N2,\"useSetEditorValues\");function p0({query:e=null,variables:t=null,headers:n=null}={}){return{id:m0(),hash:Ra({query:e,variables:t,headers:n}),title:e&&Tf(e)||v0,query:e,variables:t,headers:n,operationName:null,response:null}}F(p0,\"createTab\");function h0(e,t){return{...e,tabs:e.tabs.map((n,r)=>{if(r!==e.activeTabIndex)return n;const o={...n,...t};return{...o,hash:Ra(o),title:o.operationName||(o.query?Tf(o.query):void 0)||v0}})}}F(h0,\"setPropertiesInActiveTab\");function m0(){const e=F(()=>Math.floor((1+Math.random())*65536).toString(16).slice(1),\"s4\");return`${e()}${e()}-${e()}-${e()}-${e()}-${e()}${e()}${e()}`}F(m0,\"guid\");function Ra(e){return[e.query??\"\",e.variables??\"\",e.headers??\"\"].join(\"|\")}F(Ra,\"hashFromTabContents\");function Tf(e){const t=/^(?!#).*(query|subscription|mutation)\\s+([a-zA-Z0-9_]+)/m.exec(e);return(t==null?void 0:t[2])??null}F(Tf,\"fuzzyExtractOperationName\");function A2(e){const t=e==null?void 0:e.get(La);if(t){const n=JSON.parse(t);e==null||e.set(La,JSON.stringify(n,(r,o)=>r===\"headers\"?null:o))}}F(A2,\"clearHeadersFromTabs\");const v0=\"<untitled>\",La=\"tabState\";function fo({editorTheme:e=xf,keyMap:t=wf,onClickReference:n,onEdit:r,readOnly:o=!1}={},i){const{initialVariables:s,variableEditor:a,setVariableEditor:l}=et({nonNull:!0,caller:i||fo}),c=nl(),u=Mo({caller:i||fo}),d=ls({caller:i||fo}),p=h.useRef(null),f=h.useRef();return h.useEffect(()=>{let m=!0;return as([me(()=>import(\"./hint.es2-598d3bfe.js\"),[\"assets/hint.es2-598d3bfe.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/forEachState.es-b2033c2b.js\"]),me(()=>import(\"./lint.es3-bcaf3718.js\"),[\"assets/lint.es3-bcaf3718.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\"]),me(()=>import(\"./mode.es2-8a6e8f8c.js\"),[\"assets/mode.es2-8a6e8f8c.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/mode-indent.es-057a4f6a.js\"])]).then(v=>{if(!m)return;f.current=v;const b=p.current;if(!b)return;const y=v(b,{value:s,lineNumbers:!0,tabSize:2,mode:\"graphql-variables\",theme:e,autoCloseBrackets:!0,matchBrackets:!0,showCursorWhenSelecting:!0,readOnly:o?\"nocursor\":!1,foldGutter:!0,lint:{variableToType:void 0},hintOptions:{closeOnUnfocus:!1,completeSingle:!1,container:b,variableToType:void 0},gutters:[\"CodeMirror-linenumbers\",\"CodeMirror-foldgutter\"],extraKeys:_f});y.addKeyMap({\"Cmd-Space\"(){y.showHint({completeSingle:!1,container:b})},\"Ctrl-Space\"(){y.showHint({completeSingle:!1,container:b})},\"Alt-Space\"(){y.showHint({completeSingle:!1,container:b})},\"Shift-Space\"(){y.showHint({completeSingle:!1,container:b})}}),y.on(\"keyup\",(g,E)=>{const{code:x,key:w,shiftKey:C}=E,T=x.startsWith(\"Key\"),A=!C&&x.startsWith(\"Digit\");(T||A||w===\"_\"||w==='\"')&&g.execCommand(\"autocomplete\")}),l(y)}),()=>{m=!1}},[e,s,o,l]),rl(a,\"keyMap\",t),u0(a,r,D2,\"variables\",fo),f0(a,n||null,fo),bn(a,[\"Cmd-Enter\",\"Ctrl-Enter\"],c==null?void 0:c.run),bn(a,[\"Shift-Ctrl-P\"],d),bn(a,[\"Shift-Ctrl-M\"],u),p}F(fo,\"useVariableEditor\");const D2=\"variables\",I2=Kr(\"EditorContext\");function R2(e){const t=to(),[n,r]=h.useState(null),[o,i]=h.useState(null),[s,a]=h.useState(null),[l,c]=h.useState(null),[u,d]=h.useState(()=>{const I=(t==null?void 0:t.get(Bd))!==null;return e.shouldPersistHeaders!==!1&&I?(t==null?void 0:t.get(Bd))===\"true\":!!e.shouldPersistHeaders});ks(n,e.headers),ks(o,e.query),ks(s,e.response),ks(l,e.variables);const p=k2({storage:t,shouldPersistHeaders:u}),[f]=h.useState(()=>{const I=e.query??(t==null?void 0:t.get(x2))??null,D=e.variables??(t==null?void 0:t.get(D2))??null,P=e.headers??(t==null?void 0:t.get(vc))??null,U=e.response??\"\",Z=w2({query:I,variables:D,headers:P,defaultTabs:e.defaultTabs,defaultQuery:e.defaultQuery||Fwe,defaultHeaders:e.defaultHeaders,storage:t,shouldPersistHeaders:u});return p(Z),{query:I??(Z.activeTabIndex===0?Z.tabs[0].query:null)??\"\",variables:D??\"\",headers:P??e.defaultHeaders??\"\",response:U,tabState:Z}}),[m,v]=h.useState(f.tabState),b=h.useCallback(I=>{if(I){t==null||t.set(vc,(n==null?void 0:n.getValue())??\"\");const D=d0(m,!0);t==null||t.set(La,D)}else t==null||t.set(vc,\"\"),A2(t);d(I),t==null||t.set(Bd,I.toString())},[t,m,n]),y=h.useRef();h.useEffect(()=>{const I=!!e.shouldPersistHeaders;y.current!==I&&(b(I),y.current=I)},[e.shouldPersistHeaders,b]);const g=T2({queryEditor:o,variableEditor:l,headerEditor:n,responseEditor:s}),E=N2({queryEditor:o,variableEditor:l,headerEditor:n,responseEditor:s}),{onTabChange:x,defaultHeaders:w,children:C}=e,T=h.useCallback(()=>{v(I=>{const D=g(I),P={tabs:[...D.tabs,p0({headers:w})],activeTabIndex:D.tabs.length};return p(P),E(P.tabs[P.activeTabIndex]),x==null||x(P),P})},[w,x,E,p,g]),A=h.useCallback(I=>{v(D=>{const P={...D,activeTabIndex:I};return p(P),E(P.tabs[P.activeTabIndex]),x==null||x(P),P})},[x,E,p]),S=h.useCallback(I=>{v(D=>{const P=D.tabs[D.activeTabIndex],U={tabs:I,activeTabIndex:I.indexOf(P)};return p(U),E(U.tabs[U.activeTabIndex]),x==null||x(U),U})},[x,E,p]),k=h.useCallback(I=>{v(D=>{const P={tabs:D.tabs.filter((U,Z)=>I!==Z),activeTabIndex:Math.max(D.activeTabIndex-1,0)};return p(P),E(P.tabs[P.activeTabIndex]),x==null||x(P),P})},[x,E,p]),q=h.useCallback(I=>{v(D=>{const P=h0(D,I);return p(P),x==null||x(P),P})},[x,p]),{onEditOperationName:H}=e,V=h.useCallback(I=>{o&&(o.operationName=I,q({operationName:I}),H==null||H(I))},[H,o,q]),N=h.useMemo(()=>{const I=new Map;if(Array.isArray(e.externalFragments))for(const D of e.externalFragments)I.set(D.name.value,D);else if(typeof e.externalFragments==\"string\")Tn(qo(e.externalFragments,{}),{FragmentDefinition(D){I.set(D.name.value,D)}});else if(e.externalFragments)throw new Error(\"The `externalFragments` prop must either be a string that contains the fragment definitions in SDL or a list of FragmentDefinitionNode objects.\");return I},[e.externalFragments]),M=h.useMemo(()=>e.validationRules||[],[e.validationRules]),R=h.useMemo(()=>({...m,addTab:T,changeTab:A,moveTab:S,closeTab:k,updateActiveTabValues:q,headerEditor:n,queryEditor:o,responseEditor:s,variableEditor:l,setHeaderEditor:r,setQueryEditor:i,setResponseEditor:a,setVariableEditor:c,setOperationName:V,initialQuery:f.query,initialVariables:f.variables,initialHeaders:f.headers,initialResponse:f.response,externalFragments:N,validationRules:M,shouldPersistHeaders:u,setShouldPersistHeaders:b}),[m,T,A,S,k,q,n,o,s,l,V,f,N,M,u,b]);return _.jsx(I2.Provider,{value:R,children:C})}F(R2,\"EditorContextProvider\");const et=eo(I2),Bd=\"shouldPersistHeaders\",Fwe=`# Welcome to GraphiQL\n#\n# GraphiQL is an in-browser tool for writing, validating, and\n# testing GraphQL queries.\n#\n# Type queries into this side of the screen, and you will see intelligent\n# typeaheads aware of the current GraphQL type schema and live syntax and\n# validation errors highlighted within the text.\n#\n# GraphQL queries typically start with a \"{\" character. Lines that start\n# with a # are ignored.\n#\n# An example GraphQL query might look like:\n#\n#     {\n#       field(arg: \"value\") {\n#         subField\n#       }\n#     }\n#\n# Keyboard shortcuts:\n#\n#   Prettify query:  Shift-Ctrl-P (or press the prettify button)\n#\n#  Merge fragments:  Shift-Ctrl-M (or press the merge button)\n#\n#        Run Query:  Ctrl-Enter (or press the play button)\n#\n#    Auto Complete:  Ctrl-Space (or just start typing)\n#\n\n`;function Eu({isHidden:e,...t}){const{headerEditor:n}=et({nonNull:!0,caller:Eu}),r=Ei(t,Eu);return h.useEffect(()=>{e||n==null||n.refresh()},[n,e]),_.jsx(\"div\",{className:Ke(\"graphiql-editor\",e&&\"hidden\"),ref:r})}F(Eu,\"HeaderEditor\");function bu(e){var t;const[n,r]=h.useState({width:null,height:null}),[o,i]=h.useState(null),s=h.useRef(null),a=(t=g0(e.token))==null?void 0:t.href;h.useEffect(()=>{if(s.current){if(!a){r({width:null,height:null}),i(null);return}fetch(a,{method:\"HEAD\"}).then(c=>{i(c.headers.get(\"Content-Type\"))}).catch(()=>{i(null)})}},[a]);const l=n.width!==null&&n.height!==null?_.jsxs(\"div\",{children:[n.width,\"x\",n.height,o===null?null:\" \"+o]}):null;return _.jsxs(\"div\",{children:[_.jsx(\"img\",{onLoad:()=>{var c,u;r({width:((c=s.current)==null?void 0:c.naturalWidth)??null,height:((u=s.current)==null?void 0:u.naturalHeight)??null})},ref:s,src:a}),l]})}F(bu,\"ImagePreview\");bu.shouldRender=F(function(e){const t=g0(e);return t?L2(t):!1},\"shouldRender\");function g0(e){if(e.type!==\"string\")return;const t=e.string.slice(1).slice(0,-1).trim();try{const{location:n}=window;return new URL(t,n.protocol+\"//\"+n.host)}catch{return}}F(g0,\"tokenToURL\");function L2(e){return/(bmp|gif|jpeg|jpg|png|svg)$/.test(e.pathname)}F(L2,\"isImageURL\");function y0(e){const t=_r(e,y0);return _.jsx(\"div\",{className:\"graphiql-editor\",ref:t})}F(y0,\"QueryEditor\");function xu({responseTooltip:e,editorTheme:t=xf,keyMap:n=wf}={},r){const{fetchError:o,validationErrors:i}=Wn({nonNull:!0,caller:r||xu}),{initialResponse:s,responseEditor:a,setResponseEditor:l}=et({nonNull:!0,caller:r||xu}),c=h.useRef(null),u=h.useRef(e);return h.useEffect(()=>{u.current=e},[e]),h.useEffect(()=>{let d=!0;return as([me(()=>import(\"./foldgutter.es-b6cee46a.js\"),[\"assets/foldgutter.es-b6cee46a.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(p=>p.f),me(()=>import(\"./brace-fold.es-f2e3735d.js\"),[\"assets/brace-fold.es-f2e3735d.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(p=>p.b),me(()=>import(\"./dialog.es-b2776d29.js\"),[\"assets/dialog.es-b2776d29.js\",\"assets/codemirror.es2-5884f31a.js\"]).then(p=>p.d),me(()=>import(\"./search.es-2e392dd0.js\"),[\"assets/search.es-2e392dd0.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\",\"assets/dialog.es-b2776d29.js\"]).then(p=>p.s),me(()=>import(\"./searchcursor.es-b1a352a2.js\"),[\"assets/searchcursor.es-b1a352a2.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\"]).then(p=>p.s),me(()=>import(\"./jump-to-line.es-3afd5e0a.js\"),[\"assets/jump-to-line.es-3afd5e0a.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/dialog.es-b2776d29.js\"]).then(p=>p.j),me(()=>import(\"./sublime.es-e2a3eb60.js\"),[\"assets/sublime.es-e2a3eb60.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/searchcursor.es2-cbfe7cae.js\",\"assets/matchbrackets.es2-f53f57e6.js\"]).then(p=>p.s),me(()=>import(\"./mode.es3-fa110728.js\"),[\"assets/mode.es3-fa110728.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\",\"assets/mode-indent.es-057a4f6a.js\"]),me(()=>import(\"./info-addon.es-c9b2027b.js\"),[\"assets/info-addon.es-c9b2027b.js\",\"assets/codemirror.es-52e8b92d.js\",\"assets/codemirror.es2-5884f31a.js\"])],{useCommonAddons:!1}).then(p=>{if(!d)return;const f=document.createElement(\"div\");p.registerHelper(\"info\",\"graphql-results\",(b,y,g,E)=>{const x=[],w=u.current;return w&&x.push(_.jsx(w,{pos:E,token:b})),bu.shouldRender(b)&&x.push(_.jsx(bu,{token:b},\"image-preview\")),x.length?(qp.render(x,f),f):(qp.unmountComponentAtNode(f),null)});const m=c.current;if(!m)return;const v=p(m,{value:s,lineWrapping:!0,readOnly:!0,theme:t,mode:\"graphql-results\",foldGutter:!0,gutters:[\"CodeMirror-foldgutter\"],info:!0,extraKeys:_f});l(v)}),()=>{d=!1}},[t,s,l]),rl(a,\"keyMap\",n),h.useEffect(()=>{o&&(a==null||a.setValue(o)),i.length>0&&(a==null||a.setValue(ha(i)))},[a,o,i]),c}F(xu,\"useResponseEditor\");function E0(e){const t=xu(e,E0);return _.jsx(\"section\",{className:\"result-window\",\"aria-label\":\"Result Window\",\"aria-live\":\"polite\",\"aria-atomic\":\"true\",ref:t})}F(E0,\"ResponseEditor\");function wu({isHidden:e,...t}){const{variableEditor:n}=et({nonNull:!0,caller:wu}),r=fo(t,wu);return h.useEffect(()=>{n&&!e&&n.refresh()},[n,e]),_.jsx(\"div\",{className:Ke(\"graphiql-editor\",e&&\"hidden\"),ref:r})}F(wu,\"VariableEditor\");function O2({children:e,dangerouslyAssumeSchemaIsValid:t,defaultQuery:n,defaultHeaders:r,defaultTabs:o,externalFragments:i,fetcher:s,getDefaultFieldNames:a,headers:l,inputValueDeprecation:c,introspectionQueryName:u,maxHistoryLength:d,onEditOperationName:p,onSchemaChange:f,onTabChange:m,onTogglePluginVisibility:v,operationName:b,plugins:y,query:g,response:E,schema:x,schemaDescription:w,shouldPersistHeaders:C,storage:T,validationRules:A,variables:S,visiblePlugin:k}){return _.jsx(FT,{storage:T,children:_.jsx(QT,{maxHistoryLength:d,children:_.jsx(R2,{defaultQuery:n,defaultHeaders:r,defaultTabs:o,externalFragments:i,headers:l,onEditOperationName:p,onTabChange:m,query:g,response:E,shouldPersistHeaders:C,validationRules:A,variables:S,children:_.jsx(s0,{dangerouslyAssumeSchemaIsValid:t,fetcher:s,inputValueDeprecation:c,introspectionQueryName:u,onSchemaChange:f,schema:x,schemaDescription:w,children:_.jsx(hu,{getDefaultFieldNames:a,fetcher:s,operationName:b,children:_.jsx(a0,{children:_.jsx(m2,{onTogglePluginVisibility:v,plugins:y,visiblePlugin:k,children:e})})})})})})})}F(O2,\"GraphiQLProvider\");function P2(){const e=to(),[t,n]=h.useState(()=>{if(!e)return null;const o=e.get(zd);switch(o){case\"light\":return\"light\";case\"dark\":return\"dark\";default:return typeof o==\"string\"&&e.set(zd,\"\"),null}});h.useLayoutEffect(()=>{typeof window>\"u\"||(document.body.classList.remove(\"graphiql-light\",\"graphiql-dark\"),t&&document.body.classList.add(`graphiql-${t}`))},[t]);const r=h.useCallback(o=>{e==null||e.set(zd,o||\"\"),n(o)},[e]);return h.useMemo(()=>({theme:t,setTheme:r}),[t,r])}F(P2,\"useTheme\");const zd=\"theme\";function gc({defaultSizeRelation:e=Mwe,direction:t,initiallyHidden:n,onHiddenElementChange:r,sizeThresholdFirst:o=100,sizeThresholdSecond:i=100,storageKey:s}){const a=to(),l=h.useMemo(()=>Fo(500,g=>{s&&(a==null||a.set(s,g))}),[a,s]),[c,u]=h.useState(()=>{const g=s&&(a==null?void 0:a.get(s));return g===Gl||n===\"first\"?\"first\":g===Wl||n===\"second\"?\"second\":null}),d=h.useCallback(g=>{g!==c&&(u(g),r==null||r(g))},[c,r]),p=h.useRef(null),f=h.useRef(null),m=h.useRef(null),v=h.useRef(`${e}`);h.useLayoutEffect(()=>{const g=s&&(a==null?void 0:a.get(s))||v.current;p.current&&(p.current.style.display=\"flex\",p.current.style.flex=g===Gl||g===Wl?v.current:g),m.current&&(m.current.style.display=\"flex\",m.current.style.flex=\"1\"),f.current&&(f.current.style.display=\"flex\")},[t,a,s]);const b=h.useCallback(g=>{const E=g===\"first\"?p.current:m.current;if(E&&(E.style.left=\"-1000px\",E.style.position=\"absolute\",E.style.opacity=\"0\",E.style.height=\"500px\",E.style.width=\"500px\",p.current)){const x=parseFloat(p.current.style.flex);(!Number.isFinite(x)||x<1)&&(p.current.style.flex=\"1\")}},[]),y=h.useCallback(g=>{const E=g===\"first\"?p.current:m.current;if(E&&(E.style.width=\"\",E.style.height=\"\",E.style.opacity=\"\",E.style.position=\"\",E.style.left=\"\",a&&s)){const x=a.get(s);p.current&&x!==Gl&&x!==Wl&&(p.current.style.flex=x||v.current)}},[a,s]);return h.useLayoutEffect(()=>{c===\"first\"?b(\"first\"):y(\"first\"),c===\"second\"?b(\"second\"):y(\"second\")},[c,b,y]),h.useEffect(()=>{if(!f.current||!p.current||!m.current)return;const g=f.current,E=p.current,x=E.parentElement,w=t===\"horizontal\"?\"clientX\":\"clientY\",C=t===\"horizontal\"?\"left\":\"top\",T=t===\"horizontal\"?\"right\":\"bottom\",A=t===\"horizontal\"?\"clientWidth\":\"clientHeight\";function S(q){q.preventDefault();const H=q[w]-g.getBoundingClientRect()[C];function V(M){if(M.buttons===0)return N();const R=M[w]-x.getBoundingClientRect()[C]-H,I=x.getBoundingClientRect()[T]-M[w]+H-g[A];if(R<o)d(\"first\"),l(Gl);else if(I<i)d(\"second\"),l(Wl);else{d(null);const D=`${R/I}`;E.style.flex=D,l(D)}}F(V,\"handleMouseMove\");function N(){document.removeEventListener(\"mousemove\",V),document.removeEventListener(\"mouseup\",N)}F(N,\"handleMouseUp\"),document.addEventListener(\"mousemove\",V),document.addEventListener(\"mouseup\",N)}F(S,\"handleMouseDown\"),g.addEventListener(\"mousedown\",S);function k(){p.current&&(p.current.style.flex=v.current),l(v.current),d(null)}return F(k,\"reset\"),g.addEventListener(\"dblclick\",k),()=>{g.removeEventListener(\"mousedown\",S),g.removeEventListener(\"dblclick\",k)}},[t,d,o,i,l]),h.useMemo(()=>({dragBarRef:f,hiddenElement:c,firstRef:p,setHiddenElement:u,secondRef:m}),[c,u])}F(gc,\"useDragResize\");const Mwe=1,Gl=\"hide-first\",Wl=\"hide-second\",yc=h.forwardRef(({label:e,onClick:t,...n},r)=>{const[o,i]=h.useState(null),s=h.useCallback(a=>{try{t==null||t(a),i(null)}catch(l){i(l instanceof Error?l:new Error(`Toolbar button click failed: ${l}`))}},[t]);return _.jsx(pt,{label:e,children:_.jsx(Qe,{...n,ref:r,type:\"button\",className:Ke(\"graphiql-toolbar-button\",o&&\"error\",n.className),onClick:s,\"aria-label\":o?o.message:e,\"aria-invalid\":o?\"true\":n[\"aria-invalid\"]})})});yc.displayName=\"ToolbarButton\";function _u(){const{queryEditor:e,setOperationName:t}=et({nonNull:!0,caller:_u}),{isFetching:n,isSubscribed:r,operationName:o,run:i,stop:s}=nl({nonNull:!0,caller:_u}),a=(e==null?void 0:e.operations)||[],l=a.length>1&&typeof o!=\"string\",c=n||r,u=`${c?\"Stop\":\"Execute\"} query (Ctrl-Enter)`,d={type:\"button\",className:\"graphiql-execute-button\",children:c?_.jsx(Cwe,{}):_.jsx(gwe,{}),\"aria-label\":u};return l&&!c?_.jsxs(Dr,{children:[_.jsx(pt,{label:u,children:_.jsx(Dr.Button,{...d})}),_.jsx(Dr.Content,{children:a.map((p,f)=>{const m=p.name?p.name.value:`<Unnamed ${p.operation}>`;return _.jsx(Dr.Item,{onSelect:()=>{var v;const b=(v=p.name)==null?void 0:v.value;e&&b&&b!==e.operationName&&t(b),i()},children:m},`${m}-${f}`)})})]}):_.jsx(pt,{label:u,children:_.jsx(\"button\",{...d,onClick:()=>{c?s():i()}})})}F(_u,\"ExecuteButton\");const Vwe=F(({button:e,children:t,label:n,...r})=>_.jsxs(Dr,{...r,children:[_.jsx(pt,{label:n,children:_.jsx(Dr.Button,{className:Ke(\"graphiql-un-styled graphiql-toolbar-menu\",r.className),\"aria-label\":n,children:e})}),_.jsx(Dr.Content,{children:t})]}),\"ToolbarMenuRoot\");tl(Vwe,{Item:Dr.Item});var Jh=globalThis&&globalThis.__assign||function(){return Jh=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++){t=arguments[n];for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])}return e},Jh.apply(this,arguments)},jwe=globalThis&&globalThis.__rest||function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols==\"function\")for(var o=0,r=Object.getOwnPropertySymbols(e);o<r.length;o++)t.indexOf(r[o])<0&&Object.prototype.propertyIsEnumerable.call(e,r[o])&&(n[r[o]]=e[r[o]]);return n},Ec=globalThis&&globalThis.__read||function(e,t){var n=typeof Symbol==\"function\"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),o,i=[],s;try{for(;(t===void 0||t-- >0)&&!(o=r.next()).done;)i.push(o.value)}catch(a){s={error:a}}finally{try{o&&!o.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i},qwe=parseInt($.version.slice(0,2),10);if(qwe<16)throw new Error([\"GraphiQL 0.18.0 and after is not compatible with React 15 or below.\",\"If you are using a CDN source (jsdelivr, unpkg, etc), follow this example:\",\"https://github.com/graphql/graphiql/blob/master/examples/graphiql-cdn/index.html#L49\"].join(`\n`));function Ir(e){var t=e.dangerouslyAssumeSchemaIsValid,n=e.defaultQuery,r=e.defaultTabs,o=e.externalFragments,i=e.fetcher,s=e.getDefaultFieldNames,a=e.headers,l=e.inputValueDeprecation,c=e.introspectionQueryName,u=e.maxHistoryLength,d=e.onEditOperationName,p=e.onSchemaChange,f=e.onTabChange,m=e.onTogglePluginVisibility,v=e.operationName,b=e.plugins,y=e.query,g=e.response,E=e.schema,x=e.schemaDescription,w=e.shouldPersistHeaders,C=e.storage,T=e.validationRules,A=e.variables,S=e.visiblePlugin,k=e.defaultHeaders,q=jwe(e,[\"dangerouslyAssumeSchemaIsValid\",\"defaultQuery\",\"defaultTabs\",\"externalFragments\",\"fetcher\",\"getDefaultFieldNames\",\"headers\",\"inputValueDeprecation\",\"introspectionQueryName\",\"maxHistoryLength\",\"onEditOperationName\",\"onSchemaChange\",\"onTabChange\",\"onTogglePluginVisibility\",\"operationName\",\"plugins\",\"query\",\"response\",\"schema\",\"schemaDescription\",\"shouldPersistHeaders\",\"storage\",\"validationRules\",\"variables\",\"visiblePlugin\",\"defaultHeaders\"]);if(typeof i!=\"function\")throw new TypeError(\"The `GraphiQL` component requires a `fetcher` function to be passed as prop.\");return $.createElement(O2,{getDefaultFieldNames:s,dangerouslyAssumeSchemaIsValid:t,defaultQuery:n,defaultHeaders:k,defaultTabs:r,externalFragments:o,fetcher:i,headers:a,inputValueDeprecation:l,introspectionQueryName:c,maxHistoryLength:u,onEditOperationName:d,onSchemaChange:p,onTabChange:f,onTogglePluginVisibility:m,plugins:b,visiblePlugin:S,operationName:v,query:y,response:g,schema:E,schemaDescription:x,shouldPersistHeaders:w,storage:C,validationRules:T,variables:A},$.createElement(Uwe,Jh({showPersistHeadersSettings:w!==!1},q)))}Ir.Logo=$2;Ir.Toolbar=F2;Ir.Footer=M2;function Uwe(e){var t,n,r,o=(t=e.isHeadersEditorEnabled)!==null&&t!==void 0?t:!0,i=et({nonNull:!0}),s=nl({nonNull:!0}),a=Wn({nonNull:!0}),l=to(),c=Sf(),u=Cf({onCopyQuery:e.onCopyQuery}),d=Mo(),p=ls(),f=P2(),m=f.theme,v=f.setTheme,b=(n=c==null?void 0:c.visiblePlugin)===null||n===void 0?void 0:n.content,y=gc({defaultSizeRelation:1/3,direction:\"horizontal\",initiallyHidden:c!=null&&c.visiblePlugin?void 0:\"first\",onHiddenElementChange:function(fe){fe===\"first\"&&(c==null||c.setVisiblePlugin(null))},sizeThresholdSecond:200,storageKey:\"docExplorerFlex\"}),g=gc({direction:\"horizontal\",storageKey:\"editorFlex\"}),E=gc({defaultSizeRelation:3,direction:\"vertical\",initiallyHidden:function(){if(!(e.defaultEditorToolsVisibility===\"variables\"||e.defaultEditorToolsVisibility===\"headers\"))return typeof e.defaultEditorToolsVisibility==\"boolean\"?e.defaultEditorToolsVisibility?void 0:\"second\":i.initialVariables||i.initialHeaders?void 0:\"second\"}(),sizeThresholdSecond:60,storageKey:\"secondaryEditorFlex\"}),x=Ec(h.useState(function(){return e.defaultEditorToolsVisibility===\"variables\"||e.defaultEditorToolsVisibility===\"headers\"?e.defaultEditorToolsVisibility:!i.initialVariables&&i.initialHeaders&&o?\"headers\":\"variables\"}),2),w=x[0],C=x[1],T=Ec(h.useState(null),2),A=T[0],S=T[1],k=Ec(h.useState(null),2),q=k[0],H=k[1],V=$.Children.toArray(e.children),N=V.find(function(fe){return Gd(fe,Ir.Logo)})||$.createElement(Ir.Logo,null),M=V.find(function(fe){return Gd(fe,Ir.Toolbar)})||$.createElement($.Fragment,null,$.createElement(yc,{onClick:p,label:\"Prettify query (Shift-Ctrl-P)\"},$.createElement(Ewe,{className:\"graphiql-toolbar-icon\",\"aria-hidden\":\"true\"})),$.createElement(yc,{onClick:d,label:\"Merge fragments into query (Shift-Ctrl-M)\"},$.createElement(mwe,{className:\"graphiql-toolbar-icon\",\"aria-hidden\":\"true\"})),$.createElement(yc,{onClick:u,label:\"Copy query (Shift-Ctrl-C)\"},$.createElement(nwe,{className:\"graphiql-toolbar-icon\",\"aria-hidden\":\"true\"})),(r=e.toolbar)===null||r===void 0?void 0:r.additionalContent),R=V.find(function(fe){return Gd(fe,Ir.Footer)}),I=h.useCallback(function(){y.hiddenElement===\"first\"&&y.setHiddenElement(null)},[y]),D=h.useCallback(function(){try{l==null||l.clear(),H(\"success\")}catch{H(\"error\")}},[l]),P=h.useCallback(function(fe){i.setShouldPersistHeaders(fe.currentTarget.dataset.value===\"true\")},[i]),U=h.useCallback(function(fe){var ct=fe.currentTarget.dataset.theme;v(ct||null)},[v]),Z=i.addTab,ee=a.introspect,te=i.moveTab,j=h.useCallback(function(fe){S(fe.currentTarget.dataset.value)},[]),z=h.useCallback(function(fe){var ct=c,Qo=Number(fe.currentTarget.dataset.index),oo=ct.plugins.find(function(kf,Nf){return Qo===Nf}),Qn=oo===ct.visiblePlugin;Qn?(ct.setVisiblePlugin(null),y.setHiddenElement(\"first\")):(ct.setVisiblePlugin(oo),y.setHiddenElement(null))},[c,y]),Y=h.useCallback(function(fe){E.hiddenElement===\"second\"&&E.setHiddenElement(null),C(fe.currentTarget.dataset.name)},[E]),be=h.useCallback(function(){E.setHiddenElement(E.hiddenElement===\"second\"?null:\"second\")},[E]),lt=h.useCallback(function(fe){fe||S(null)},[]),ze=h.useCallback(function(fe){fe||(S(null),H(null))},[]),ro=$.createElement(pt,{label:\"Add tab\"},$.createElement(Qe,{type:\"button\",className:\"graphiql-tab-add\",onClick:Z,\"aria-label\":\"Add tab\"},$.createElement(ywe,{\"aria-hidden\":\"true\"})));return $.createElement(pt.Provider,null,$.createElement(\"div\",{\"data-testid\":\"graphiql-container\",className:\"graphiql-container\"},$.createElement(\"div\",{className:\"graphiql-sidebar\"},$.createElement(\"div\",{className:\"graphiql-sidebar-section\"},c==null?void 0:c.plugins.map(function(fe,ct){var Qo=fe===c.visiblePlugin,oo=\"\".concat(Qo?\"Hide\":\"Show\",\" \").concat(fe.title),Qn=fe.icon;return $.createElement(pt,{key:fe.title,label:oo},$.createElement(Qe,{type:\"button\",className:Qo?\"active\":\"\",onClick:z,\"data-index\":ct,\"aria-label\":oo},$.createElement(Qn,{\"aria-hidden\":\"true\"})))})),$.createElement(\"div\",{className:\"graphiql-sidebar-section\"},$.createElement(pt,{label:\"Re-fetch GraphQL schema\"},$.createElement(Qe,{type:\"button\",disabled:a.isFetching,onClick:ee,\"aria-label\":\"Re-fetch GraphQL schema\"},$.createElement(bwe,{className:a.isFetching?\"graphiql-spin\":\"\",\"aria-hidden\":\"true\"}))),$.createElement(pt,{label:\"Open short keys dialog\"},$.createElement(Qe,{type:\"button\",\"data-value\":\"short-keys\",onClick:j,\"aria-label\":\"Open short keys dialog\"},$.createElement(pwe,{\"aria-hidden\":\"true\"}))),$.createElement(pt,{label:\"Open settings dialog\"},$.createElement(Qe,{type:\"button\",\"data-value\":\"settings\",onClick:j,\"aria-label\":\"Open settings dialog\"},$.createElement(wwe,{\"aria-hidden\":\"true\"}))))),$.createElement(\"div\",{className:\"graphiql-main\"},$.createElement(\"div\",{ref:y.firstRef,style:{minWidth:\"200px\"}},$.createElement(\"div\",{className:\"graphiql-plugin\"},b?$.createElement(b,null):null)),(c==null?void 0:c.visiblePlugin)&&$.createElement(\"div\",{className:\"graphiql-horizontal-drag-bar\",ref:y.dragBarRef}),$.createElement(\"div\",{ref:y.secondRef,className:\"graphiql-sessions\"},$.createElement(\"div\",{className:\"graphiql-session-header\"},$.createElement(GT,{values:i.tabs,onReorder:te,\"aria-label\":\"Select active operation\"},i.tabs.length>1&&$.createElement($.Fragment,null,i.tabs.map(function(fe,ct){return $.createElement(Ud,{key:fe.id,value:fe,isActive:ct===i.activeTabIndex},$.createElement(Ud.Button,{\"aria-controls\":\"graphiql-session\",id:\"graphiql-session-tab-\".concat(ct),onClick:function(){s.stop(),i.changeTab(ct)}},fe.title),$.createElement(Ud.Close,{onClick:function(){i.activeTabIndex===ct&&s.stop(),i.closeTab(ct)}}))}),ro)),$.createElement(\"div\",{className:\"graphiql-session-header-right\"},i.tabs.length===1&&ro,N)),$.createElement(\"div\",{role:\"tabpanel\",id:\"graphiql-session\",className:\"graphiql-session\",\"aria-labelledby\":\"graphiql-session-tab-\".concat(i.activeTabIndex)},$.createElement(\"div\",{ref:g.firstRef},$.createElement(\"div\",{className:\"graphiql-editors\".concat(i.tabs.length===1?\" full-height\":\"\")},$.createElement(\"div\",{ref:E.firstRef},$.createElement(\"section\",{className:\"graphiql-query-editor\",\"aria-label\":\"Query Editor\"},$.createElement(y0,{editorTheme:e.editorTheme,keyMap:e.keyMap,onClickReference:I,onCopyQuery:e.onCopyQuery,onEdit:e.onEditQuery,readOnly:e.readOnly}),$.createElement(\"div\",{className:\"graphiql-toolbar\",role:\"toolbar\",\"aria-label\":\"Editor Commands\"},$.createElement(_u,null),M))),$.createElement(\"div\",{ref:E.dragBarRef},$.createElement(\"div\",{className:\"graphiql-editor-tools\"},$.createElement(Qe,{type:\"button\",className:w===\"variables\"&&E.hiddenElement!==\"second\"?\"active\":\"\",onClick:Y,\"data-name\":\"variables\"},\"Variables\"),o&&$.createElement(Qe,{type:\"button\",className:w===\"headers\"&&E.hiddenElement!==\"second\"?\"active\":\"\",onClick:Y,\"data-name\":\"headers\"},\"Headers\"),$.createElement(pt,{label:E.hiddenElement===\"second\"?\"Show editor tools\":\"Hide editor tools\"},$.createElement(Qe,{type:\"button\",onClick:be,\"aria-label\":E.hiddenElement===\"second\"?\"Show editor tools\":\"Hide editor tools\",className:\"graphiql-toggle-editor-tools\"},E.hiddenElement===\"second\"?$.createElement(twe,{className:\"graphiql-chevron-icon\",\"aria-hidden\":\"true\"}):$.createElement(Kxe,{className:\"graphiql-chevron-icon\",\"aria-hidden\":\"true\"}))))),$.createElement(\"div\",{ref:E.secondRef},$.createElement(\"section\",{className:\"graphiql-editor-tool\",\"aria-label\":w===\"variables\"?\"Variables\":\"Headers\"},$.createElement(wu,{editorTheme:e.editorTheme,isHidden:w!==\"variables\",keyMap:e.keyMap,onEdit:e.onEditVariables,onClickReference:I,readOnly:e.readOnly}),o&&$.createElement(Eu,{editorTheme:e.editorTheme,isHidden:w!==\"headers\",keyMap:e.keyMap,onEdit:e.onEditHeaders,readOnly:e.readOnly}))))),$.createElement(\"div\",{className:\"graphiql-horizontal-drag-bar\",ref:g.dragBarRef}),$.createElement(\"div\",{ref:g.secondRef},$.createElement(\"div\",{className:\"graphiql-response\"},s.isFetching?$.createElement(o0,null):null,$.createElement(E0,{editorTheme:e.editorTheme,responseTooltip:e.responseTooltip,keyMap:e.keyMap}),R))))),$.createElement(ti,{open:A===\"short-keys\",onOpenChange:lt},$.createElement(\"div\",{className:\"graphiql-dialog-header\"},$.createElement(ti.Title,{className:\"graphiql-dialog-title\"},\"Short Keys\"),$.createElement(ti.Close,null)),$.createElement(\"div\",{className:\"graphiql-dialog-section\"},$.createElement(zwe,{keyMap:e.keyMap||\"sublime\"}))),$.createElement(ti,{open:A===\"settings\",onOpenChange:ze},$.createElement(\"div\",{className:\"graphiql-dialog-header\"},$.createElement(ti.Title,{className:\"graphiql-dialog-title\"},\"Settings\"),$.createElement(ti.Close,null)),e.showPersistHeadersSettings?$.createElement(\"div\",{className:\"graphiql-dialog-section\"},$.createElement(\"div\",null,$.createElement(\"div\",{className:\"graphiql-dialog-section-title\"},\"Persist headers\"),$.createElement(\"div\",{className:\"graphiql-dialog-section-caption\"},\"Save headers upon reloading.\",\" \",$.createElement(\"span\",{className:\"graphiql-warning-text\"},\"Only enable if you trust this device.\"))),$.createElement(Gh,null,$.createElement(gn,{type:\"button\",id:\"enable-persist-headers\",className:i.shouldPersistHeaders?\"active\":\"\",\"data-value\":\"true\",onClick:P},\"On\"),$.createElement(gn,{type:\"button\",id:\"disable-persist-headers\",className:i.shouldPersistHeaders?\"\":\"active\",onClick:P},\"Off\"))):null,$.createElement(\"div\",{className:\"graphiql-dialog-section\"},$.createElement(\"div\",null,$.createElement(\"div\",{className:\"graphiql-dialog-section-title\"},\"Theme\"),$.createElement(\"div\",{className:\"graphiql-dialog-section-caption\"},\"Adjust how the interface looks like.\")),$.createElement(Gh,null,$.createElement(gn,{type:\"button\",className:m===null?\"active\":\"\",onClick:U},\"System\"),$.createElement(gn,{type:\"button\",className:m===\"light\"?\"active\":\"\",\"data-theme\":\"light\",onClick:U},\"Light\"),$.createElement(gn,{type:\"button\",className:m===\"dark\"?\"active\":\"\",\"data-theme\":\"dark\",onClick:U},\"Dark\"))),l?$.createElement(\"div\",{className:\"graphiql-dialog-section\"},$.createElement(\"div\",null,$.createElement(\"div\",{className:\"graphiql-dialog-section-title\"},\"Clear storage\"),$.createElement(\"div\",{className:\"graphiql-dialog-section-caption\"},\"Remove all locally stored data and start fresh.\")),$.createElement(gn,{type:\"button\",state:q||void 0,disabled:q===\"success\",onClick:D},{success:\"Cleared data\",error:\"Failed\"}[q]||\"Clear data\")):null)))}var Hd=typeof window<\"u\"&&window.navigator.platform.toLowerCase().indexOf(\"mac\")===0?\"Cmd\":\"Ctrl\",Bwe=Object.entries({\"Search in editor\":[Hd,\"F\"],\"Search in documentation\":[Hd,\"K\"],\"Execute query\":[Hd,\"Enter\"],\"Prettify editors\":[\"Ctrl\",\"Shift\",\"P\"],\"Merge fragments definitions into operation definition\":[\"Ctrl\",\"Shift\",\"M\"],\"Copy query\":[\"Ctrl\",\"Shift\",\"C\"],\"Re-fetch schema using introspection\":[\"Ctrl\",\"Shift\",\"R\"]});function zwe(e){var t=e.keyMap;return $.createElement(\"div\",null,$.createElement(\"table\",{className:\"graphiql-table\"},$.createElement(\"thead\",null,$.createElement(\"tr\",null,$.createElement(\"th\",null,\"Short Key\"),$.createElement(\"th\",null,\"Function\"))),$.createElement(\"tbody\",null,Bwe.map(function(n){var r=Ec(n,2),o=r[0],i=r[1];return $.createElement(\"tr\",{key:o},$.createElement(\"td\",null,i.map(function(s,a,l){return $.createElement(h.Fragment,{key:s},$.createElement(\"code\",{className:\"graphiql-key\"},s),a!==l.length-1&&\" + \")})),$.createElement(\"td\",null,o))}))),$.createElement(\"p\",null,\"The editors use\",\" \",$.createElement(\"a\",{href:\"https://codemirror.net/5/doc/manual.html#keymaps\",target:\"_blank\",rel:\"noopener noreferrer\"},\"CodeMirror Key Maps\"),\" \",\"that add more short keys. This instance of Graph\",$.createElement(\"em\",null,\"i\"),\"QL uses\",\" \",$.createElement(\"code\",null,t),\".\"))}function $2(e){return $.createElement(\"div\",{className:\"graphiql-logo\"},e.children||$.createElement(\"a\",{className:\"graphiql-logo-link\",href:\"https://github.com/graphql/graphiql\",target:\"_blank\",rel:\"noreferrer\"},\"Graph\",$.createElement(\"em\",null,\"i\"),\"QL\"))}$2.displayName=\"GraphiQLLogo\";function F2(e){return $.createElement($.Fragment,null,e.children)}F2.displayName=\"GraphiQLToolbar\";function M2(e){return $.createElement(\"div\",{className:\"graphiql-footer\"},e.children)}M2.displayName=\"GraphiQLFooter\";function Gd(e,t){var n;return!((n=e==null?void 0:e.type)===null||n===void 0)&&n.displayName&&e.type.displayName===t.displayName?!0:e.type===t}const b0=\"\",V2=`${b0}/graphql`,j2=`${b0}/api/login`,Hwe=`${b0}/ping`;function Gwe(){{const e=new URL(window.location.href);return`${e.protocol}//${e.host}/graphqlws`}}const q2=Gwe().replace(\"https\",\"wss\").replace(\"http\",\"ws\");console.log(\"USING GRAPHQL API URL\",V2);console.log(\"USING GRAPHQL SUBSCRIPTION URL\",q2);console.log(\"USING LOGIN API URL\",j2);function Wwe({onLogin:e}){const[t,n]=h.useState({username:\"\",password:\"\"});function r(a){i(\"\"),n({...t,[a.target.name]:a.target.value})}const[o,i]=h.useState(\"\");async function s(){i(\"\");const a=await fetch(j2,{method:\"POST\",headers:{\"Content-Type\":\"application/json; charset=utf-8\"},body:JSON.stringify(t)});a.ok||(localStorage.removeItem(\"petclinic.graphiql.username\"),localStorage.removeItem(\"petclinic.graphiql.token\"),i(\"Login failed!\"));const c=(await a.json()).token;if(!c){i(\"No token in response from server!\");return}localStorage.setItem(\"petclinic.graphiql.username\",t.username),localStorage.setItem(\"petclinic.graphiql.token\",c),e({token:c,username:t.username})}return _.jsxs(\"div\",{id:\"loginPage\",children:[_.jsx(\"h1\",{children:\"Login to Spring PetClinic GraphiQL\"}),_.jsxs(\"div\",{id:\"loginForm\",children:[_.jsxs(\"label\",{children:[\"Username:\",_.jsx(\"input\",{type:\"text\",name:\"username\",onChange:r})]}),_.jsxs(\"label\",{children:[\"Password:\",_.jsx(\"input\",{type:\"password\",name:\"password\",onChange:r})]}),_.jsx(\"button\",{onClick:s,children:\"Login\"}),_.jsx(\"p\",{id:\"loginFeedback\",children:o}),_.jsxs(\"div\",{style:{marginTop:\"4rem\"},children:[_.jsx(\"p\",{children:\"Choose one of the following users for login:\"}),_.jsxs(\"table\",{children:[_.jsx(\"thead\",{children:_.jsxs(\"tr\",{children:[_.jsx(\"th\",{children:\"Username\"}),_.jsx(\"th\",{children:\"Password\"}),_.jsx(\"th\",{children:\"Role\"})]})}),_.jsxs(\"tbody\",{children:[_.jsxs(\"tr\",{children:[_.jsx(\"td\",{children:\"susi\"}),_.jsx(\"td\",{children:\"susi\"}),_.jsx(\"td\",{children:\"ROLE_MANAGER\"})]}),_.jsxs(\"tr\",{children:[_.jsx(\"td\",{children:\"joe\"}),_.jsx(\"td\",{children:\"joe\"}),_.jsx(\"td\",{children:\"ROLE_USER\"})]})]})]})]})]})]})}function Ct(e){return e===null?\"null\":Array.isArray(e)?\"array\":typeof e}function uo(e){return Ct(e)===\"object\"}function Qwe(e){return Array.isArray(e)&&e.length>0&&e.every(t=>\"message\"in t)}function wb(e,t){return e.length<124?e:t}const Ywe=\"graphql-transport-ws\";var Rt;(function(e){e[e.InternalServerError=4500]=\"InternalServerError\",e[e.InternalClientError=4005]=\"InternalClientError\",e[e.BadRequest=4400]=\"BadRequest\",e[e.BadResponse=4004]=\"BadResponse\",e[e.Unauthorized=4401]=\"Unauthorized\",e[e.Forbidden=4403]=\"Forbidden\",e[e.SubprotocolNotAcceptable=4406]=\"SubprotocolNotAcceptable\",e[e.ConnectionInitialisationTimeout=4408]=\"ConnectionInitialisationTimeout\",e[e.ConnectionAcknowledgementTimeout=4504]=\"ConnectionAcknowledgementTimeout\",e[e.SubscriberAlreadyExists=4409]=\"SubscriberAlreadyExists\",e[e.TooManyInitialisationRequests=4429]=\"TooManyInitialisationRequests\"})(Rt||(Rt={}));var Ve;(function(e){e.ConnectionInit=\"connection_init\",e.ConnectionAck=\"connection_ack\",e.Ping=\"ping\",e.Pong=\"pong\",e.Subscribe=\"subscribe\",e.Next=\"next\",e.Error=\"error\",e.Complete=\"complete\"})(Ve||(Ve={}));function U2(e){if(!uo(e))throw new Error(`Message is expected to be an object, but got ${Ct(e)}`);if(!e.type)throw new Error(\"Message is missing the 'type' property\");if(typeof e.type!=\"string\")throw new Error(`Message is expects the 'type' property to be a string, but got ${Ct(e.type)}`);switch(e.type){case Ve.ConnectionInit:case Ve.ConnectionAck:case Ve.Ping:case Ve.Pong:{if(e.payload!=null&&!uo(e.payload))throw new Error(`\"${e.type}\" message expects the 'payload' property to be an object or nullish or missing, but got \"${e.payload}\"`);break}case Ve.Subscribe:{if(typeof e.id!=\"string\")throw new Error(`\"${e.type}\" message expects the 'id' property to be a string, but got ${Ct(e.id)}`);if(!e.id)throw new Error(`\"${e.type}\" message requires a non-empty 'id' property`);if(!uo(e.payload))throw new Error(`\"${e.type}\" message expects the 'payload' property to be an object, but got ${Ct(e.payload)}`);if(typeof e.payload.query!=\"string\")throw new Error(`\"${e.type}\" message payload expects the 'query' property to be a string, but got ${Ct(e.payload.query)}`);if(e.payload.variables!=null&&!uo(e.payload.variables))throw new Error(`\"${e.type}\" message payload expects the 'variables' property to be a an object or nullish or missing, but got ${Ct(e.payload.variables)}`);if(e.payload.operationName!=null&&Ct(e.payload.operationName)!==\"string\")throw new Error(`\"${e.type}\" message payload expects the 'operationName' property to be a string or nullish or missing, but got ${Ct(e.payload.operationName)}`);if(e.payload.extensions!=null&&!uo(e.payload.extensions))throw new Error(`\"${e.type}\" message payload expects the 'extensions' property to be a an object or nullish or missing, but got ${Ct(e.payload.extensions)}`);break}case Ve.Next:{if(typeof e.id!=\"string\")throw new Error(`\"${e.type}\" message expects the 'id' property to be a string, but got ${Ct(e.id)}`);if(!e.id)throw new Error(`\"${e.type}\" message requires a non-empty 'id' property`);if(!uo(e.payload))throw new Error(`\"${e.type}\" message expects the 'payload' property to be an object, but got ${Ct(e.payload)}`);break}case Ve.Error:{if(typeof e.id!=\"string\")throw new Error(`\"${e.type}\" message expects the 'id' property to be a string, but got ${Ct(e.id)}`);if(!e.id)throw new Error(`\"${e.type}\" message requires a non-empty 'id' property`);if(!Qwe(e.payload))throw new Error(`\"${e.type}\" message expects the 'payload' property to be an array of GraphQL errors, but got ${JSON.stringify(e.payload)}`);break}case Ve.Complete:{if(typeof e.id!=\"string\")throw new Error(`\"${e.type}\" message expects the 'id' property to be a string, but got ${Ct(e.id)}`);if(!e.id)throw new Error(`\"${e.type}\" message requires a non-empty 'id' property`);break}default:throw new Error(`Invalid message 'type' property \"${e.type}\"`)}return e}function Zwe(e,t){return U2(typeof e==\"string\"?JSON.parse(e,t):e)}function Es(e,t){return U2(e),JSON.stringify(e,t)}var Ri=globalThis&&globalThis.__await||function(e){return this instanceof Ri?(this.v=e,this):new Ri(e)},Xwe=globalThis&&globalThis.__asyncGenerator||function(e,t,n){if(!Symbol.asyncIterator)throw new TypeError(\"Symbol.asyncIterator is not defined.\");var r=n.apply(e,t||[]),o,i=[];return o={},s(\"next\"),s(\"throw\"),s(\"return\"),o[Symbol.asyncIterator]=function(){return this},o;function s(p){r[p]&&(o[p]=function(f){return new Promise(function(m,v){i.push([p,f,m,v])>1||a(p,f)})})}function a(p,f){try{l(r[p](f))}catch(m){d(i[0][3],m)}}function l(p){p.value instanceof Ri?Promise.resolve(p.value.v).then(c,u):d(i[0][2],p)}function c(p){a(\"next\",p)}function u(p){a(\"throw\",p)}function d(p,f){p(f),i.shift(),i.length&&a(i[0][0],i[0][1])}};function Jwe(e){const{url:t,connectionParams:n,lazy:r=!0,onNonLazyError:o=console.error,lazyCloseTimeout:i=0,keepAlive:s=0,disablePong:a,connectionAckWaitTimeout:l=0,retryAttempts:c=5,retryWait:u=async function(M){let R=1e3;for(let I=0;I<M;I++)R*=2;await new Promise(I=>setTimeout(I,R+Math.floor(Math.random()*(3e3-300)+300)))},shouldRetry:d=Ql,isFatalConnectionProblem:p,on:f,webSocketImpl:m,generateID:v=function(){return\"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx\".replace(/[xy]/g,M=>{const R=Math.random()*16|0;return(M==\"x\"?R:R&3|8).toString(16)})},jsonMessageReplacer:b,jsonMessageReviver:y}=e;let g;if(m){if(!e_e(m))throw new Error(\"Invalid WebSocket implementation provided\");g=m}else typeof WebSocket<\"u\"?g=WebSocket:typeof global<\"u\"?g=global.WebSocket||global.MozWebSocket:typeof window<\"u\"&&(g=window.WebSocket||window.MozWebSocket);if(!g)throw new Error(\"WebSocket implementation missing; on Node you can `import WebSocket from 'ws';` and pass `webSocketImpl: WebSocket` to `createClient`\");const E=g,x=(()=>{const N=(()=>{const R={};return{on(I,D){return R[I]=D,()=>{delete R[I]}},emit(I){var D;\"id\"in I&&((D=R[I.id])===null||D===void 0||D.call(R,I))}}})(),M={connecting:f!=null&&f.connecting?[f.connecting]:[],opened:f!=null&&f.opened?[f.opened]:[],connected:f!=null&&f.connected?[f.connected]:[],ping:f!=null&&f.ping?[f.ping]:[],pong:f!=null&&f.pong?[f.pong]:[],message:f!=null&&f.message?[N.emit,f.message]:[N.emit],closed:f!=null&&f.closed?[f.closed]:[],error:f!=null&&f.error?[f.error]:[]};return{onMessage:N.on,on(R,I){const D=M[R];return D.push(I),()=>{D.splice(D.indexOf(I),1)}},emit(R,...I){for(const D of[...M[R]])D(...I)}}})();function w(N){const M=[x.on(\"error\",R=>{M.forEach(I=>I()),N(R)}),x.on(\"closed\",R=>{M.forEach(I=>I()),N(R)})]}let C,T=0,A,S=!1,k=0,q=!1;async function H(){clearTimeout(A);const[N,M]=await(C??(C=new Promise((D,P)=>(async()=>{if(S){if(await u(k),!T)return C=void 0,P({code:1e3,reason:\"All Subscriptions Gone\"});k++}x.emit(\"connecting\");const U=new E(typeof t==\"function\"?await t():t,Ywe);let Z,ee;function te(){isFinite(s)&&s>0&&(clearTimeout(ee),ee=setTimeout(()=>{U.readyState===E.OPEN&&(U.send(Es({type:Ve.Ping})),x.emit(\"ping\",!1,void 0))},s))}w(z=>{C=void 0,clearTimeout(Z),clearTimeout(ee),P(z),Ql(z)&&z.code===4499&&(U.close(4499,\"Terminated\"),U.onerror=null,U.onclose=null)}),U.onerror=z=>x.emit(\"error\",z),U.onclose=z=>x.emit(\"closed\",z),U.onopen=async()=>{try{x.emit(\"opened\",U);const z=typeof n==\"function\"?await n():n;if(U.readyState!==E.OPEN)return;U.send(Es(z?{type:Ve.ConnectionInit,payload:z}:{type:Ve.ConnectionInit},b)),isFinite(l)&&l>0&&(Z=setTimeout(()=>{U.close(Rt.ConnectionAcknowledgementTimeout,\"Connection acknowledgement timeout\")},l)),te()}catch(z){x.emit(\"error\",z),U.close(Rt.InternalClientError,wb(z instanceof Error?z.message:new Error(z).message,\"Internal client error\"))}};let j=!1;U.onmessage=({data:z})=>{try{const Y=Zwe(z,y);if(x.emit(\"message\",Y),Y.type===\"ping\"||Y.type===\"pong\"){x.emit(Y.type,!0,Y.payload),Y.type===\"pong\"?te():a||(U.send(Es(Y.payload?{type:Ve.Pong,payload:Y.payload}:{type:Ve.Pong})),x.emit(\"pong\",!1,Y.payload));return}if(j)return;if(Y.type!==Ve.ConnectionAck)throw new Error(`First message cannot be of type ${Y.type}`);clearTimeout(Z),j=!0,x.emit(\"connected\",U,Y.payload),S=!1,k=0,D([U,new Promise((be,lt)=>w(lt))])}catch(Y){U.onmessage=null,x.emit(\"error\",Y),U.close(Rt.BadResponse,wb(Y instanceof Error?Y.message:new Error(Y).message,\"Bad response\"))}}})())));N.readyState===E.CLOSING&&await M;let R=()=>{};const I=new Promise(D=>R=D);return[N,R,Promise.race([I.then(()=>{if(!T){const D=()=>N.close(1e3,\"Normal Closure\");isFinite(i)&&i>0?A=setTimeout(()=>{N.readyState===E.OPEN&&D()},i):D()}}),M])]}function V(N){if(Ql(N)&&(Kwe(N.code)||[Rt.InternalServerError,Rt.InternalClientError,Rt.BadRequest,Rt.BadResponse,Rt.Unauthorized,Rt.SubprotocolNotAcceptable,Rt.SubscriberAlreadyExists,Rt.TooManyInitialisationRequests].includes(N.code)))throw N;if(q)return!1;if(Ql(N)&&N.code===1e3)return T>0;if(!c||k>=c||!d(N)||p!=null&&p(N))throw N;return S=!0}return r||(async()=>{for(T++;;)try{const[,,N]=await H();await N}catch(N){try{if(!V(N))return}catch(M){return o==null?void 0:o(M)}}})(),{on:x.on,subscribe(N,M){const R=v(N);let I=!1,D=!1,P=()=>{T--,I=!0};return(async()=>{for(T++;;)try{const[U,Z,ee]=await H();if(I)return Z();const te=x.onMessage(R,j=>{switch(j.type){case Ve.Next:{M.next(j.payload);return}case Ve.Error:{D=!0,I=!0,M.error(j.payload),P();return}case Ve.Complete:{I=!0,P();return}}});U.send(Es({id:R,type:Ve.Subscribe,payload:N},b)),P=()=>{!I&&U.readyState===E.OPEN&&U.send(Es({id:R,type:Ve.Complete},b)),T--,I=!0,Z()},await ee.finally(te);return}catch(U){if(!V(U))return}})().then(()=>{D||M.complete()}).catch(U=>{M.error(U)}),()=>{I||P()}},iterate(N){const M=[],R={done:!1,error:null,resolve:()=>{}},I=this.subscribe(N,{next(P){M.push(P),R.resolve()},error(P){R.done=!0,R.error=P,R.resolve()},complete(){R.done=!0,R.resolve()}}),D=function(){return Xwe(this,arguments,function*(){for(;;){for(M.length||(yield Ri(new Promise(Z=>R.resolve=Z)));M.length;)yield yield Ri(M.shift());if(R.error)throw R.error;if(R.done)return yield Ri(void 0)}})}();return D.throw=async P=>(R.done||(R.done=!0,R.error=P,R.resolve()),{done:!0,value:void 0}),D.return=async()=>(I(),{done:!0,value:void 0}),D},async dispose(){if(q=!0,C){const[N]=await C;N.close(1e3,\"Normal Closure\")}},terminate(){C&&x.emit(\"closed\",{code:4499,reason:\"Terminated\",wasClean:!1})}}}function Ql(e){return uo(e)&&\"code\"in e&&\"reason\"in e}function Kwe(e){return[1e3,1001,1006,1005,1012,1013,1013].includes(e)?!1:e>=1e3&&e<=1999}function e_e(e){return typeof e==\"function\"&&\"constructor\"in e&&\"CLOSED\"in e&&\"CLOSING\"in e&&\"CONNECTING\"in e&&\"OPEN\"in e}function t_e(){const[e,t]=h.useState({state:\"pending\"});return h.useEffect(()=>{const n=localStorage.getItem(\"petclinic.graphiql.token\"),r=localStorage.getItem(\"petclinic.graphiql.username\");if(!r||!n){localStorage.removeItem(\"petclinic.graphiql.token\"),localStorage.removeItem(\"petclinic.graphiql.username\"),t({state:\"verified\",initialLogin:null});return}fetch(Hwe,{headers:{Authorization:`Bearer ${n}`}}).then(o=>{if(o.ok){t({state:\"verified\",initialLogin:{token:n,username:r}});return}console.log(\"Token not valid anymore? Status from ping\",o.status),t({state:\"verified\",initialLogin:null})})},[]),e.state===\"pending\"?_.jsx(\"h1\",{children:\"Verify login...\"}):_.jsx(n_e,{initialLogin:e.initialLogin})}function n_e({initialLogin:e}){const[t,n]=h.useState(e);console.log(\"initialLogin\",e);const[r,o]=h.useState(!1),i=h.useMemo(()=>{if(!t)return null;const s=Jwe({url:`${q2}?access_token=${t.token}`,connectionParams:{}});return KD({url:V2,wsClient:s,headers:{Authorization:`Bearer ${t.token}`}})},[t]);return i?_.jsxs(_.Fragment,{children:[_.jsxs(\"div\",{className:\"loginInfo\",children:[_.jsxs(\"span\",{children:[\"Logged in as \",_.jsx(\"b\",{children:t==null?void 0:t.username})]}),_.jsx(\"button\",{onClick:()=>o(!0),children:\"Show token\"}),_.jsx(\"button\",{onClick:()=>n(null),children:\"Logout\"})]}),r&&_.jsxs(\"div\",{className:\"tokenInfo\",children:[_.jsx(\"b\",{children:\"Token\"}),_.jsx(\"textarea\",{value:t==null?void 0:t.token}),_.jsxs(\"div\",{className:\"tokenInfo--buttons\",children:[_.jsx(\"button\",{onClick:()=>o(!1),children:\"Hide\"}),_.jsx(\"button\",{onClick:()=>navigator.clipboard.writeText(`Authorization: \"Bearer ${t==null?void 0:t.token}\"`),children:\"Copy Auth Header\"})]})]}),_.jsx(Ir,{fetcher:i,defaultQuery:`\n#    _____                 _      ____  _        _____     _    _____ _ _       _      \n#   / ____|               | |    / __ \\\\| |      |  __ \\\\   | |  / ____| (_)     (_)     \n#  | |  __ _ __ __ _ _ __ | |__ | |  | | |      | |__) |__| |_| |    | |_ _ __  _  ___ \n#  | | |_ | '__/ _\\` | '_ \\\\| '_ \\\\| |  | | |      |  ___/ _ \\\\ __| |    | | | '_ \\\\| |/ __|\n#  | |__| | | | (_| | |_) | | | | |__| | |____  | |  |  __/ |_| |____| | | | | | | (__ \n#   \\\\_____|_|  \\\\__,_| .__/|_| |_|\\\\___\\\\_\\\\______| |_|   \\\\___|\\\\__|\\\\_____|_|_|_| |_|_|\\\\___|\n#                   | |                                                                \n#                   |_|                                                                          \n          \n          \n# Some sample queries:\n\n# Username of currently logged in user:\nquery Me { me { username } }\n\n# Find first to owners whose name starts with \"d\"\nquery TwoOwners {\n  owners(\n    first: 2\n    filter: { lastName: \"d\" }\n    order: [{ field: lastName }, { field: firstName, direction: DESC }]\n  ) {\n    edges {\n      cursor\n      node {\n        id\n        firstName\n        lastName\n        pets {\n          id\n          name\n        }\n      }\n    }\n    pageInfo {\n      hasNextPage\n      endCursor\n    }\n  }\n}\n\n# Sample Mutation: add a new visit \n#  (hint: run the onNewVisit subscription in second GraphiQL instance,\n#  before running the mutation)\nmutation AddVisit {\n    addVisit(input:{\n        petId:3,\n        description:\"Check teeth\",\n        date:\"2024/03/30\",\n        vetId:1\n    }) {\n        newVisit:visit {\n            id\n            pet {\n                id \n                name \n                birthDate\n            }\n        }\n    }\n}    \n\n# Subscription for new visits\n# When running this subscription, the operation runs until\n#   you close it. While the operation is running, new visits\n#   are received\nsubscription NewVisit {\n    newVisit: onNewVisit {\n        description\n        treatingVet {\n            id\n            firstName\n            lastName\n        }\n        pet {\n            id\n            name\n        }\n    }\n}\n        `})]}):_.jsx(Wwe,{onLogin:s=>n(s)})}Qd.createRoot(document.getElementById(\"root\")).render(_.jsx($.StrictMode,{children:_.jsx(t_e,{})}));export{da as $,Qm as A,Cs as B,yD as C,ne as D,gD as E,Jw as F,ve as G,pD as H,Yt as I,lc as J,L as K,Tn as L,$D as M,ge as N,Xt as O,s_e as P,i_e as Q,qo as R,Qy as S,E_ as T,S3 as U,ce as V,kt as W,Jm as X,Ji as Y,ua as Z,fa as _,De as a,b3 as a0,x3 as a1,w3 as a2,ot as a3,Uo as a4,ie as a5,de as a6,Me as a7,sd as a8,Ae as b,Jt as c,QA as d,xD as e,ju as f,a_e as g,J as h,jr as i,vD as j,v_ as k,Ft as l,wt as m,YA as n,qe as o,Ut as p,zu as q,hD as r,XA as s,pa as t,Zr as u,nn as v,Bt as w,vt as x,Xm as y,Zw as z};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/index-928ba5be.css",
    "content": "/*!*********************************************************************************************!*\\\n  !*** css ../../../node_modules/css-loader/dist/cjs.js!../../graphiql-react/font/roboto.css ***!\n  \\*********************************************************************************************/@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAAAMwAA4AAAAABZgAAALdAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGiYbIBw2BmAANBEMCoI4ghsLEAABNgIkAxwEIAWDCgcgG3YEyI7DdHsjE9IUV+CFDh74vPL9/MmgO0un0soqjWt7En2kQoCMtXsRxyxkMqP9iO6NfSiUaLJuoRIKnhI0+ImbcWOB5XOAFVmCgxZQQmuBJRhZtsUCXm/492Dyuk2YZJdkdApZeOzyEQgKOwDgRjASBEEBVmAlgACtOHEhpjLyyrACMAB0vaLa6cAw5bc5bvhA2uwO7zXAyKPmkYNnAJgBxLEMDxFLqVBPI6EQ/daTr/QOAgfCngRoZc4UZiL623qCkf/oHVsfRCOuAIbJyF4ajQQKQLmQhNBAA4aygH9b19Xw4iAC8DkKM6WrYw/ABMAOWEAamA7sgBWACgAUSlc3SCmlc95o45idYD92Qt/+5gF19v3FALtB9+7dq/h6/Ljyu/zzYfnngwdlHxO+k39nOcO/e7nPf2vCoo3HVlmNTdnWwW3JZffuVU6cQX14kb3qUGOOJ+mjP9iMeb1Nivq5gXpJUWm+cmVK56e6PjI2uce23hHlG48vyDvym5/5q+wbkjq90rN+z53D6zXqmVUPVshZoVtrZgc4vleS1NNrni6VR8I/vTrpzpPwu1+1Pel4xBIzK16W3KcLNnVGl2RGZHbPXBAvhw4M02Ci/t0BBfw/p79XS9V7CKAMF0++DK9rtI/7MXvGATjz0TEA4K4oef476t9dS555BAoLBYCA6ei/FSzVgvg/cIR45gpTaLWeLiB+oa4xJuTks7r7/xwCmCzlpoJKALCDQmkyEsCsN0mELUADghGsGgAF6c9IXkabDYyqg6WMkZd9z7BT5gaphhhqnOH66aOvkTQhggQLpsk0xBB9DNSLJttgPQTQJBtoIE0JEY2wb+1lhF6GG62XngKUGKLFECMNkW2kZgP10+M31GZUwfojwkU0uAcQkISKFNtqGMlau3vIjjRUjMANjYkDNKeouYh7CRBmuD4CHQgHG6GXET8oT7ZU6QqUStddiABBJPSv6P315AAA) format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:italic;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAAANUAA4AAAAABbwAAAMBAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGiYbIBw2BmAANBEMCoI0ghgLEAABNgIkAxwEIAWDMgcgG5sECK4GbGM62A+KOMNGmZWUwcdhKI9l4Sh/WwYP/3af9w0W4ERa2bOg405uoSptTooGKkF8HniO5b+Iojvye4dReBbNtVHwcLQTG2gBzQfYOqjJ/XYU/jItwgxa4I3czM4Fj9LAAnlHz+dzgSO71Jqn2QML8H66dROj0qAFLYnRhtm0b89/erW/v8l/LA6we9gCizDBtQzSf4EtkcwDT6RtmgYEQXnDKGQslZyX/CkQSFgBAE4ERggEAgmwACwQgADMsONAJKVkFWEBgAJgwMz1NlLWec3G+jtZu+rXO1i7rx/sZi0AEwB5WVY28FUE1CORQAjvtSPftAwCQQjGAbTUfm4qwrvbNmDEf5pjR4JoxElAiYiMWjQyIAEy4EBGAA4UNKCgIMC7a5Cej2sCAA+SMEEyYA2AMQBWgCmQAObACrAAQAUAJCSDMEDmo7CztfXoRGu7SUeVdbvosOq6N6PHnZ2yf9l3eXPj/q2qXdkjBL+qrix1cYsqzItOvXfRPaMXkUvPeFWoxr7tZB8gfxIhMauBapmSUhO8d3O8wUt0MoI7UAxLzt0/zhCwJnVHrsPYXenm8suPeLYORWqn/3wwK6Qp+frDiYGvxHSXFzoXfpihfmlODl9oFbOqKa8nXbZgd6axNivh4JS8xEZKChij/nuDBPx/MrxQA/WBACCtK44947xa66g/k0YcALjxaesDuBuQP/7x/3bTwmQACVMkAAQYd/7HYBqK1H97hriqWIzlN7cD8Qu1mY6Ql7eR9v8qAcCY/apKqAgArEBCCmOEAExoJiOUENTgBAI3NSBhwSjIbLboV0Blo3PIiN06hxVFfmrr0WtMvzYtWg3SBPDjz58mVY8eLTrpNOm6NfKhidepk6ZAbgbym+oG6PoN0zXxUaBHgx6Demiy6Zq0GdIl3aB6ndo04r7WvSV0/Qa0Nd2+yKcNFCrSvh/6dNKO3xV33aBeEXxNZKTyQUaverfOR49+LZno1XUboBt4oSzpEiXLUSjZDgF8+JHBMIY0KQAA) format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:italic;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAAALsAA4AAAAABWAAAAKbAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGiYbIBw2BmAANBEMCoIYgXsLEAABNgIkAxwEIAWCdAcgG0AEAB6HcYyyEjO2Dy0eKLv4XvfsrGs+wIhEBOHOERRRTI2158fc/aln0WYmSJq8uTRSIgUyIVMqpfa/7uYHCqzWDuHREj0f5UuuL+ZAokTaYgiIs5sF5aUutjO7QhBlgMaYvCAIIqqoCggoq0+HjRlX70MGclDLyR3Z8fb0q/ectzCv30obmLesvO5hBhRhcp7kToaLpaRXpL0htKmb5C3rIgzUIwA1fnqrhHSbqXhA3v+sK1wRtcWuhdyg9E5tGXERkaAhroCGeNqCnJxAm6m1Sb58SICvFhXFWnVAAWQoYRjYADJUQQqIYm0uSZKkfpYv1sv21dm9b7kWbV6i3BQ2Z/sOf/hl+ezXH88LRz75pnLuq4/MO/Zx+eyHc3x9VDn3yfx9n1ILyusq3ps75y90fVZ657PJ2iXgF+odHbvzv7Lrm+uTsPR0WJqYcelN7180rHDDnbeWbrx0QHht49uXjCzffOsd5RsvGvHe4yF5o+Ej97/ZMP62+Z+3Wz/08CtZ/FezhpdvG/nb6PMhC9vNvHFx3Du9X47etewROuONg4L0v2eI+L9X7dt0evq+gNihfvWttiuWK4f8VmxWBM/+WK8b8F6Y9evfLf57r9SjuA2URBAobPm/Smni3y3+n1TqgQEACsl5awAI/5AetjNp65A+/38vDAUXaayPL4CMKHYkEFC0DlfIlbAMegyqlmGU2eSTO58TTHX2xLyWvlczc/wY7eDo5WxlYenKyMvNg9Go5MAatqis2Jty2oytLaPupFxOlsgFObsjM05dBxMHVwcMbeFma4xFh8jZxUr2e62Th09I7Bd96I2RI3gzYzqKcsHjqZzGjsamlojTwdmCy9bKFNm7IBcudRU5BU09BQ5eTm5coMaMAw==) format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAAB44AA4AAAAAQKAAAB3hAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGkAbjgwcgTAGYACDFBEMCts8zA4Lg3oAATYCJAOHcAQgBYJ0ByAbBzazETFsHAB5cO4TRclghIL/MhHmoW/sii3JkCwIpmm2o8EQIDh8squu9JqOff+iQjf1biM+8RcrvTvece45JKlkeYjs6P9P9XT17F44fIAcwUEi6lMpFJE7/QM/t95fEYcIjIqRJjGQGgZRKYMR5URGpCKegjKkN0A2mNCCDHoYMKLNwKrDoCz0CH8K3PbrMABNLZi8I53ljHbl084I7Aei8kMtYPer3WN+IMvTyAlb90UTgh6oaMK1IYR1ivIDcHO5B9xTY1F62qQ9HEIjhNkz61vW+HudZavvL020NBMd6YD+zjgKcU/T8/TARaV9smT4+xfkBdsXj3TH3j2yfeQ9lg+03qBvQ9wBwB37GMoQVkRFd6mSKiXg9FinbYGrFHUTCLeqqGT3nsNGZAhuEBGRzNzvNV2uwkxa9CB7bxEPBPBXjjr+TggoogBsBgXLmAkEiTmEJTuICAyIahsQCBSwAFgAAQKYR8NumL32cfYGrTMzkhJA69ykyHjQuigsmQpakAvPTqKCGIQoSYAAClBI2A5uRIss/4QB2tCGlT7mCjUsgAHDt3LvJ0jCj14kSvTam+zU+y+Pv3Xvs/qjhVs3rWUVmnzdV8ecFzzauuRZvVwQvh3vqs7nLOxrfnPeVW/lOV12b9eqk+Az827t88kw5jsvffR2bnP20BoZ8VoqomU/ct6gJfWdrimvJhU8+eSwvFEuy+boVmyo2m10E1ZpqUNBlxlcaNg77hmfm/F2Ae143UrY0nAXzy0JG8mkuz3jZ5n7PxO34COVLwnYdbzneR5KWCRZ04BjJ0acBFRfYD3oqz5taBmtovX/F4+w7l8gQpiLECVGrDjxEhxCdViiI5LQJEuRKk26TFmy5TjqmFzH5TmBrshZJcpUYKh2DksdjgZNmrVo1abdBR06XdSFq1uvfoPGTJgyY86C62667a77HnjokceeeGrRM6+99d5Hnyz57Iuvvlm2YtWadQhzAxAAiwv20gVOjr6V+JlFgCSQjXZUKs4S58m1TGSqgoFAy2BJVtwLODKzaLk0n6AsaosBW45u1ruKoeCKfoUbebwPahazPbl0I6BHR0GODBweasY4TpaqHlDQUDDTcdmLiCALg2Ofha0WmzraagDkKks1OOEAR8B4JAr6WAfrY/0kI6iLLqXUtIyYQNGrJmnB4eBDnQnMD7HwJTA5ws0lp09SIkJIXkYrVQP0TT7AAqLvtk0SCoo0jJ9++W0DAuWyKxCY2wbcGJaPrrdHCSzI+9MAxKo6aPihqLu0kfR9FKykbJ7Had9D3ezAPEB1OQ7+B+eMNQUIkEcAdYfkIiBA/xVo+QpoyFsKJm4E9mEOCxeLY2loxrbQC+NwCo8Ijeg4GseiOMqCE9z4FptFoRiXgFVCeVflk8qryv8hrEZoJLQTLhC6CcOEK6r4zU0CsiQkQiu2h36YhHN4Bzli/KT66Or4u8gekPIuyrnKK8p/79hAaO7AI1yea78A9BjQo3rk2YHcD67eNPp/d9f5yg0ApsV///hqs2MXX1Fe/nj554UB+PkrL5yetz0//5zz3BkQYK/Pfuwh+CwBlA9LzW7VXsdQ5M7EwlanHsd5DRqZ2XvT/vbeZ79RfBMmTZkWJVqMWM+98NIrV40YM+4HbwgUQajeLQb4PyD+DTwGZrcFC78DxrdBvRfcPPTLN9umLdRpAWXkfrLYdejNrDbOng5Ojrvp62g4XHBUQRsmpHTc95NTokBwHxx+zu6jj/fToaiqf3GROhhTTEdiXY9rGW1LM3M62r7dkNaH6VCdd0X7eJs2CSX60LZ6nJ7e1UjqZIzWWV3tMeY8R7sis4d3aJ2k8Y79yZ7o8J50d7J/X7ozMiYxxI09WsecmfjcAa2VOmKOaK3DMEzTfWEY7j+8Z7fZQ0brODb1dF/90G51iQ6cio4eaaSSNWV5NVobz1ZxLZV0mIQLupNMSvdP2vopbKd/uPrm1BfqGEDBlXqWpHr+lENpf9pWxFVCbEcnqc6gLg1Ig0xSTQX4Y7Gm84Ki+Py/W5Wan13gh+0rKkbMpNAkiXUWchLPUzgqiTqCXHLI2F0bKKXc5VsFzYWJsRSpJoVTTWpNfDBAqBUlP8KwlBZSu0x6/gTu+Thhm5L83VjTozrvn+wK0J2k0gxx8d1+H9udNveA8ionCEr+6w6VTo2I1AZb4oLsMnC71Lof+2jn54a49toCh5ZyL1w8kya1nI3w3bVcQU1hi+casA2ljg0oOFVokRuvuUIhdB3jw2pRWwdccR6UCLOVeqSt7OGu9vfcpS4YiKbou0Rk81Q7bU0YckF2YxHzqMygngMbnTw2FwGkvYouIO+2OmQz7IsF5isedr6UELpy+ZuJZMD3OppCv1thaySckOHR9rk6lofOSaLnXKeFH9oImmol39KloaXX/BLPr1Bf7XzAldWt4jb8oMY21MhATsHCZir5gV+A/H3ZVWqz6uQLY8SRqia10N8d5NTxhiMknl6KBAyknZl1+Hc6hoSspAF2yLrktDDEEUkP4S5QZIJL2zx/pMsOH6vU+xbjb1yUFBsgbaia+6GinJ4Jz1NyJIKQi3qinfNSH02HqTDpSAbpRNZKJmGa5i35vnqEUbSwvZFmidKHa1PR9s3e/aBiy3eRsotyDm600fJQFB5Rr12vIA2EkqXPqA3/rYWgQTM1301jJa79AJEBbb/8fW3jQhGAKOLivlWMCTJwEwsDGSjiachUryUHmeJmhikioksURIEgbsHLKyRzMC0CmaFFH7J4+Gv9t1AxlEjLf77WlZCwMHzIyVVTAID4ekxNCTX2C41l0YYQmQ3kckt40p0e8L1vMHsCbjV9PfM6imxpaIRYq9FJPgBZADAOQ36u22ubThyoapr+X+rjiD/9NgT/pwIRq7vjre0EMKWEbw4Hq1oYjLWWKJlgO+DwGGIGexvcoABMn2a0cUDOEo6xeIZhGkWWkrYmUCMK5jSEN7e14mkFLcrJk2e7UFardo4c6pUjq/4XrvKAnvCy13lAa9MoD1P+L50tGb7cVv1oj0ZiLTewTP3/WNaue9+2uEZDMSaKg0TivITMbkP+Uj06Qv48PRftPIGYiTAQdA1oMSaKkLFryCvJipqJow3GeJZdgSQsFfKBXbI0r03OoXcWN/lpLiQ8xsMMZG3HYRr1RRId5REk0WRPGxKcrqUM76ad+dXnlFXe5axIrElK9DNqZIqQdcIVXj1G2DVNQ3GamHnfQqCjBxio65aOpZDZFJKql/XzWKiHbI8QLSIZjgfqU59tzb4h0OU4YD+Ido+KAw8WPiI9SAql918AhP3oNIVds0D4y98j36xRKFug9vWwMSSL4kYnrZtjFcI1IAFgdo3z5AChfSF3Ax+AySdHl7ZkuzzoyNX4NiZ5138FFAq9TrOOR6comDy+InOZQsFkhjRrGQBaa1eSinE7xANVwaCnnbFGVtehpCB40iCLN72ZTMpbi6CTfrVfE7VdhqP1qnSvkc+yQhv9hZCt3kWk1k04GLU+we1cDZdOLP87E535CsKPJmphHMKhxnOP3fmf7/7zbgUnXilNKOiL2XsrO7wga0ptktuqdo872SP39UcruBy/Lv9O+fcXlNERI/p8iYFQY9cHGZT0G75sZ/M5xtDNrRtFnydleurbSxR6oQ2w3HNX1VvYhjATcp1tqNU0jmwxlEiZe/Ydv5l/HyTuIbAfxUnDLLJYgOWWs+/cTYO9YycoJ0YByz3FnlqhgMvoiEOsYAy3B9/MMEDmjjnox0q/kfqgfG/UkKDGnxIFSFt/ThhJ4Oja23nUioF7LvA5zziW0keTniXxIe2nbQS9fi5f4Nbv/249Wl6cGc0pKMxLK6uEUyDf2D209L8Fb5668WFvnlaD9juIre1h0WoZfJCX4ipNNL5Dv67mbSxOUXpzrlzpbpUE2Vhb89ukfTc8nG/0zGqvRUePgHtZ2/3i/QIt3A6h1jIT5Frs7VIL4faOLuHWYvN7VxH0DclLAzclUevxG7eVecPzoqg/cNXZ18XRy/zVd8Hn9wvKZvOIPrEi10s/bituLc/Ory9mghb4FHy3fXG9qkPixVPGJ1rufAb/3xZG9Vl29uEARmZc5EJmeMPhbvzd9wx0En36GP/fsaqGKk7W/cpkcEiRuAtYiRH78rzDjgLHJu4zuAbYJ1tVvyogyMsXVx+zOy9yGjo62U/g1ZzCyPYOCfTP8+LlP7d1KY+Lqr/hS0txuyQmNKWp0lR8smaXNJY7ChF3sx4/VqGUqoyqLP9ZPAWTWguWRgnxTZ44+0cRmOYyK5gVoNT4uA7RfA7bN41H7sne+oW+wjYY/tjnE0ZLOkI5SbEb9khiTPilXrozjG5YqdT0E1uj+50LULN7Vuo97UcLg315lPI0gYAuTHBKywSFuojRAhU2bf1hfsXAt0cCnV0CMWdPxRbVzI2qX6qehYOav/7TGblKPb6HBzhoF6RR86cuLxn8HMINMW+c4rqzlj2rOgqYt8AZ/xRPWFHjZP55evb4nY9SaJdFdF3PxJnwfDd9i0S//JsStLlE5nnxMmVRAXp+DYRq/v24kz9FLRRMayPc/rl8SnlOIfmGUlPLOvIZzDMh1GOjVz8ReSuDlTfzuzzYX7xr2vOZt0DSazCTMemHypvnLUByzOHDgfmhmi5oHuCABz48Em9aWftQQk5gVkI8SPaRBk0U9hErfuzZb27pdUlCeTfV0EglPQh4a7T0bOMFc8JT3SkvG8fvpTwCH3dfBPhGEiYttXDutUenoUtHaGoENv0eby45NiknOj9TOPr68OTS+wHLGmkeCfB9JGx+1rmZxP7ukSBQqy7777PTxYtixP+3sNN/vygseypG/MMT7Gt+RC9qejrd0/qUfrrlEeygVTCIA+Y1wCP1obIDS1qMroCeqopToqesWaOXK8395IvBrqE3VyqGnXMPhUce8bOzirWS3HfBxzPdr/T9RV7edFBiI5mHCT6TkBR71BtkU8xxc8VzdRaG5haELIY93iY7p/JM3WTxJA70c+Pjj97q7JuBiVHepe8zd21YeB6JC9b1mwnajIfvIzHEaHvE0HsY+EbS0BavnVvHd1bCZ9Gt47umFPa8jNjyVM1ahIE/GOOkGrH9kKyGzhyYMjKYQQWaXnLO1XtOAM4nSDshIXsQjZ07R/JtoP9Wur64HvBT8OIfzUpQ6q2SLwurSyzGxbn5Guju/hUmqHISUhKBJkres0B+ZYzlDlb14u+7Mu2lJPg+4ukzyk+nwQIv5HmQa84Wv7syEuM1Edb5fnl2VGMR+/+CYURznzllLYyublUQSW2eDgskum8ZMM5T8zoSeCBDJF7hri8ksfm95j4vQ4paLnUwWa86F5/7xB/KjIktPOQxKFG83HeJ1uVJ9Nzv2ukbe/s9fKQ9xHV1Xq2sSHf6ciCflX4gkWHPcpD6/CYZKTzk5RIbbIjeQ6toFzsjr/LvyTIAfNoy/7w4U0wN2WFfnh25MFZtzs76+7ygJMZHzaEimzK3UDFkNEam+vY/tz/T8iiyb8CX6tUVY1nY/JgHjhO3Lt8iHBPl4fuFFWQKVvGqLpta+THQdtc4e8okA5+zyOFDxlbjqy1eBU1fJS2OLYLPMGkYri7EX4uXPBdEn30+LvJ+90eQLnfCeeXs+yP2sGilJ3fk7P88H6THI1l7s3b3abih2ChrG14Ng5sUF3Do1nZe7T6PLdUu+wpu2u2+Gxcn8mpizWJiAJ9MEqmmdc73Dt5A5kQamwfPdby9a3dbnh77UUg9ltPl/u/uYRLUX4TWrivnzbwkpYsyDQYX62EIr7Tf3yZlTQC1qrDYdMZ0VudsMMvvgw4l3c178py5VH8zq20RI/qYqPb49mvQQl+YR7W0DNTsE99S9tTKwjY6GHOh+EI60nzxEsfMS1KqLGDvBfRY5jy45WHlkyDUUrEPrkfcLjUXvtDxraYmFBec92+LC24v+QKsX0GjrktdWTuGjszJIf1b7o3807YCByi5DPXr+van26RH2PRMVH9jiMKhon4lxPpbHxUKLAEfjntJwuSC8rrb3Jv8f/JgahV9W8oevR58IO5rJX1lZXVoGy46jorrcsIKsVJTtEsAaW9SeXtbd5UZMWfO7h1SDiprbk+37PqlUZn14wE9A25++Psx+RqupX66YDgz3j678KTY6/lwRoNkwRb5nIJK0Iv4Ilxd2VbRVi2yvjURFKV8Ktvqhf+KH/ktLswC7ZMPMhrLRJrK05m2Tq4Otq4udiB4z4+yf4RqKbl+WclBwZkpHZkZQ5kZjj66llZEPSuLcEtror6FDRytTQz0tXfVMxVJt9kVGBAV7RtwsjrTGAzePk3IPBm8o5e8r0NxB5uYhYtPLwxRp4WaqqrsMrHSBs17m/uh05agM/lIhwE5y7YUsqNdWKidbWiwg3NYiK+1+gHbTfW1ltU18bB94hFUOWJslFwDtZxwsZXVUT77XNychcEWptdSfvlZWnEqOMOckuqS1OHUCiB63HdDWdXsC1yEWkGWSzoxDwkVRFm35zSj88/nsLAD02ufZ64u3ukeiT+adTj2eHUOdiA4xw+d7wU+tI7nVc8r7Fw/jO1/z/4w+uFR1aMK2n7MqDu6GDNiuqpnRi5/jC9fqNjdy0xL7ddBy9XFQOjrC/PWVjeDygnbPtXF+IF3l6eQWUMeYLkZc0sj+P5i3DBuzuEldbTwDJ1ZdaroBDIPJNrdT35P+BFP8qtat/NvVS1HvhzyefnWLxoW9XKpaqEUaajKa1qt0cAnyz5PehVOGCWq8YcS+Qnq/N73y+yiKj/mHkXOGCt9K+IW1lBafu7AuD5OpkOGC7saSV0to+irITznYxFpVLDi8EiyFaRFns3+I1HJkNPF60H4jeMdCDSakkb1pphTB6dXx5pc96cThoeXmOOqCmPMt3HryVYDBuUHK/czfAMCOjBvHL182P6wt0li6YC7WPKsNqtKvHu998mSmchr8RjI/pUN5+Ikg6y0WXjdK+sCcjosFlg0oCOQW8Umgk1d7vHigavUHqbVj6MFjCK/k3qYVl/+4qtdQWa2CvmD7uqRdwRMktYgbwZ5xsKUqSzw5s4S2MLIgyneJEoRl/BMdZYHGxJu+BH8DfaN0zdYNx7JfRL/PH8P924ZQk67uWoGnuOU0o+11J4FMsxLjt36+F+YApV75KCaBnTXTp5MZ3SUa/KvJbbHhdfE0RMfh/t7R61lbfPUddKKRt2EifoYO7sE5Ghwt3OQaw/o9RRmM7NBQTrpypPBpOP3bSlke+vwEAc7cpCtPSVki/S2Vl9dQ/2bxjq43Ukl3jaL8ySdgaLeyctz8eqA6ftHmaPHtux9t9/35+/sQHE/T7598C9++Qc0f3N7Q2FzE/nRDNNsJI+5AaQnjN8bf2J8n3nf+g47in3X+v1afwPDH5kfXdf7ZtfHzMfDa/4d103uGve4WrQdUdIafyrpQBITNrj7MHIP0N9N4G2z3li2sbrlC+Z/3WvqJ5HcDhpDztTENBxP1PvMH3bF9lCSYTwUCWEBj9DCq/1JdVd5/n2PbihBiN/jcyi/62UeqeYI2d71hLl6ustx7tt+b6y4KRYdsTlaIsA6JIDRjuoDiqIixpDwCAw1XmGozc0/WLx6pmP/qEbvIsEPr6O1MAaRqiEYS4gxFX6ComUARLZ3M9Bw7ayyU3QCljzQUQ7ehn+15HAEwnDalR1WqBKEPNxNPBYgesrCsVJ5CM9JgkBgBFBd8Gkm0IF1JCwtilOYgbiDtnqtH8+VTGg8PMOrNB4NBq+j1fCH4vlyVctO0QRY+mCvkOPxxCSU2MWfCTely70ygkpKYYH/Ia59b9gKppYalEXR6/vDUdHrGnCKY48PK69j9wCJxuV3QlqpWmr8JuzGcaIYlvZEpGwMsGpCLZYBYxFiH9lhiG2JfTfoD/EWQo6K6RdTRxKf3mFRQqQVREHDkg2GRSFHwtTej9w3MOhzr47pE76JV5zi8twkcQqTuQEmFlppPYyYllhBQPqR42YjQStkILp4HUIyjAON892A2Lt1ckphcaLnY5jjbZbeOYKGcseQDlOfDFUO2StuER8mxM0HwCR6pbmd89sbDQiAKfz2kv6DlyhRx2/3/IzhnWlRU7ajaHkAi2yPGWi4Ttx59aMOAFZI/6kKOVKmephgNZNyBx1h6sNzGS8Zjqhqfqdpsqiroh8lQNH3FezLASeMEXJU5hkslXA1GiRGu7jWeBJmp+gZi/2y3imCXkdfwxiwCiGqOIdTWCjO3vtHcQvrMCJuXgAs3dE+JtluqAa8TIkypM0119ofHXWNMdkF0XwVdCxVoLJTUAG3IOUOmsNYayM57IZgA0Iss2HJDMXMJGyPSB8jlxmJ23ioo8qX3ZeUj0KVieUSiFseWTfWAbf3NGR5LPwCKF2xLXHYtPeIbfWm1RVMU2knGBNzR45RCgrnh+lGiifmEsAoT6zi5pzF64EZRGxB4o4gBkQJn+W161Uxj6FC2yAM4aDsQADkoG5zHqSCdaPCNk8c6+yoLkh2RxeYYAIWiQTCvPIlERwkh0IA/mw60ItuWJ1vWjdZfGlGLLkUQa48VjhU7jl8aqGl7XVpdpaNopGH0vKk+nD0E8zHZakBL5c/x2z7fw7Ur42WQgfmroai7z7tq5Cew2p2lo3ywkMBI4zxlnYDuEEXU5+OfsiT77ACr1uWDwU5bkyc+16aE2Yr9y3KmcJ0MPx8tOiDoNww6nSWkNPyU18gF7WvvYcckRf6EtlzlO+312b9fEB28o/05PaNyS1icoLVjFtHjMG+lL+Sq2hyGhxzgqHuruaNhr3PLKbjqfXhxNqSbapIA4/J3FYaicpB2WpksCSEWYn4TULI0Z7numW3WvbS/AAo00eBcfhtQMRJSMxXxUkob3WV8OblfPkYqX0phdpvBfWluic7pWxcIjwUth1z07OgftNPLD9SESchO7m8dCjqnupqQxT03eBh2jdpNBE6x+GSipOLmBPiZCNW19K5zdK57051wc11GDO5hHIb5ZvmWjq5qJilGhGIo9EE/fdlqWWgs7vaPqopGDQ8zSXK2mvWaRNE2UP40rIW5DHcgiqS3c6g/WE0sgvkjxvAYlA/oN2kJ6eBm9E2+IJ6Q534g+ENjdL2M2+O6cd+cwWMx46WXPtSy26I1N6QSmOuoJ5Z9zRon11UfOTNyf60+HkO9AftCCaFoF034UpTfCol16HcHj5V13pxerwouRy2vpL8hGH2b5lXy8glodM1TAeTZaBuGlec3HyxG2mbAqptMETQ6lOPAGXNZd9zDn8VunXvPwTlZgDw5Z/FNwHgp+H5998Kc/eE9GZowCwUQIDxokkEYHZ/kzg5gk6f7OP/A12ENYj/gdyOYhpKywPaKn3jEtYgaTKzT1vRNljjGCamzrl2b3+0/W3KXKn1s9Y6wr1OIaYe+ihnX71ua/0W36EWplzPtAY6VPUE1xNC6z4hNQe5xqDHsqL42EeqqKJYVjuiFdY49FoiqPSjV4LQwiJUz1fQ0HYNs6SHH/wHf5FDu7MlT1ZsSB4z+0rmSm18rrVAUJ0WmjWU4rdzlaamulErO6hlofO1QGn8UZ/5Qgqvv8mjImuZoCxBr6sKCrq/WY2FDxPahiJFQ5zj/X5nVTpllJ30hylZ5Y+DJdBRMHcKmNuuxrKtzYKaD5VWomUmVWv+R6XtQs/HVKqanTUZIe2FpBuV4bqYghY8MBSXfuz4qy5DCNTb+6s6hVhYfS1NKNZAh3JYGcx2hgTWOTDlhK70Su0TIrByWM8MCawdVpdRtPtg/O4sQQuoBy1xt/dANpb7Rsu2xjQ4PFYUHZgrxAdWnVFdcWJZeYzaPH49Sr5a7prWiotzRN2a/fKaIR6OCjGEyOgieFFKNK8cQSja3C9ICG4SIg3xmyUC8YeowiUAcTUuBYitYw5AZGEUEMPDyB09YZZw6cFlYsTAsDjn43KE1gQSdkOfBwjwf8WkecNCABaBArUWHASYEQUNqbPAKaDkRYg46EURFedGn3Zj8GJpSffiKGKni/I2zOrfESijUKxoMZIR6NNDNITAzmFVpQSRe3RARaETtKighGrPakorRiPRbGaSVJEi6Gj0sHBGyWBKjpYiQRiIfEkSmlhKbY10RhkwZtZJa2OfXNqf0FzdkEQkujgtoSNM4pJMESOSjgSTZqQbjUWZERV6nbsuZw6s2HDlFVHtPgbqQUtOqseJAAA=) format(\"woff2\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAACsUAA4AAAAAVCgAACq8AAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGmQbmWQchV4GYACDIBEMCvFc2nILhAoAATYCJAOIEAQgBYJ0ByAbwUVFRu7K4K3wKGrW3tQT/F8ncHL9WA+iQ7QIGY3GJUkUrj3IFSM3ZkP06sjHedMv9NTQeo+XL8dkXEi5mtV3TvoRkswS1PvHfz0HFx/cDSFHRgih8nVOR2BOZIAi8s0Bze1+xYgaYRSgYBIplRJS0iE1alRIjsGAkWlAy6A3VCpULDBpSTv97/drdv6+K7ZiUqElpjOECsXjxTtJXu4LVKFU0JqVsai3DQ7w9TQAjnRaM7JkmNFKD0Q1t3fVA612ZfvuEjbogAXTSEknJUXzBEV7339HpWwH/vn+57TgkghdV1mju01/GJHwqPb8nJpRBHc8Cvv/r7NsdYe9QYdwFHaZot2zZbhOUaWopCdptP9/eYwL9iyRRkvyzJysPYtywAvYBYgqHHuB0F2QK+SSoUuZk6JJ22XLEMM/tXSWzctS+qfbUuUJiXDr5OWSvtk0VCuqF4cKwiExEhsJjkEBMcoZw0pFCaWE6vdk2S/fBtHu1o3yLALSFKLEmx0fP/sRJaBwAXAYFDai1CH0uEDEiIFIlgyRKhWCjAyRKROCKgeiQTOUMT8gEChgCbACAgREDARY5JgzMPvsZ2wFYqfEkIggdgbJOwDEznUPDwIxyDmnkYKAB4ILP0AABSgI2kD+hwCiv4IBDngSZ/JMHtKGkpl/FpmVZ6mhanQZvWbl0X8MH7PGqvHWeH/WHNfHnTl2QonkRk3alDtVzUlTH9V3ZvK0pbKz8sxPfoNSUKksNL14ApJKyC8MavoEA+bzF/U5aC+5xSr75cs2HNKVts/XeudmC5odX7XbtmKzFbC/gvziCALnet+lLgeXGIFyyYMgm0OFPmqCH0BEh58gOkfOMvF8q8R6r16HW8AahDeurRj3m3Y5Xz2YJI/rRzHmzz1j/mRoes3uUSxvUOwJ4/8q0uZbrbXbZrtiXJ9aiGFhD/Wyp27pnnW5/t5UhxchJ1vvA05DexdvimfsTsUNWd1Gha1hfZ3RGliNg3gyu/GZtrtxp1jm7I0H3A3lULJ7vm4r+RYnR49v3GLbTryGNls7Ncvyoadxfxkm541y/OPIfWt91E8RSlZMKdN5wT7PAyP7iluLasu2YgtPVuWKx5+5WyGGFP88viuLa/Z9m7xQtfB4kwwFeaHhE1H4Gtue0hxBCT0LQwmrgdh520IrovXL/DJ9XMaRn9JmM73BHVXMU2Q/bKNeNy5ffV2nR0C+0DlS2th8BwMYOOw48BF13AknnSJJiiw58hQoUqZCjToNhowYM3OBBUs27Dhw5MxVqTIVKo0ZN2HSlGkzZt12x11z5i147Imnlmzasm3HW++898FHn3z3w0+//IZQzKcwlPFTQaBG0BJBCL4UIoUnBRF2iyeaNiQWfoAifnot0+81A4EhzsMS1vlt2mLfKw7tcBaWk7HyhipWo/J42pjAJKYwjRl5OZetYBVrWMdLeSNf28QWtrGDd3iPD/iIT/LnfOULvuKb/D13/HAQjo3cV/cqFDtckrMWlmIuUM4NKvmGWi5ZgmFS0NnbBPeLex8eJp+yqZdjUwLfAfGdkJwmyJkrM+thcOKnhbfsrHPHB+AGB14LLhTpm3Ak8h0li2d4jhdYDNwDhwe77tNNoN8OA2CI87CmECzH26V4lCkqUClv5I5NbGEbO/JPPH7hdyA7/d4wgCHOwxo52MAmtrCNndmjGeFmR4YjXjiWGXsH3uMDPuJTIBZPpiGgHFWooVjxBm/wBm/wRiGQnTEhZjDPb1kS2/I4YvcuYu/BB3zEp8VHO5pj7HrPsRVonLlFqy/cExvFqHe5/QoiueRwYct1Auu48h6JzKhi2/SUnSfy3IFdF9/dp9amDjlHZOaw6nwEUZZ0CCOcEEw2Cj+caRRYLASPUAj/QRN1EsYZclgpUkegR98+hqKDjKOHXGDlMBuJcIge5cTFMVnR40pVOaHmrxLG7JD01ifWvvvNEYoCBvawhwPmQIxQxLTPcfE6IcRJYUmIjaTYSUmQrBBy4qcoTkpio6z9VLSXqnioiYO6uOkJ55xY6FcEYhyAN5hjCxiWCM2qwhLvAD7DGiMCZ7FyEZcsz7JjbexRTuXAzpWJVKUqIcMciFsUMW4GyuzveN02B2veU4hnFrFZkiiHZS/hbEQFbNqB9/Y2xjufoPc1sfpZ30MnvPBu8OPViiCpA/g9TmygnFaPItLvIW8DRV6FcrbCReEANlgRgA9u2OFJxLEhxHn1CG2gwWygWSOErTjYV7AUOvDAb3BKRSjZQsm5jShWQpBUeOGHF/4NfqN4QQDnUXSCghV2w5LskAmRoGOd/+wbLPg675861oMgggj6moTt1PODA4H8f+u8guxz/XzcoUShqnPTuUERgUA/N9iTCH23Dklw48Ke1uil4vtpbPKUqdOEbsAw1+97ahbQgWXPo/WEEMG9Lazk6X4WWkLw5tAZc4Ay3dMGWRxuMmp11PnVgkDA365wWLB+Myjf1JwuD5kJFoAVdGJlYLYHBtS7xFrETtvl8Q24sK4Pb+D8H8j/JrexWOCx9jC+x9yZDLodd+8e34YelAkzEW0QSJzRqBPHbp8WKE04Ag3D/vjrn/8IwDOBICjY7yCUChxuuuUAAYL22GufQeYh/FDKYFxrPQ0RJXKhKwV/A7g/gglKETbXtWvTga5Tl249eqHEYtMnVphw/QYwMA26AYEogOKFCIUoHAoKv0MAlcMGwRF8tKEIqOEIEoExIUEeBZ8Xf736Tg/rnXPDq7j/PLNNNEA50az1m2uUzSGQeaMbOfJgQb+ty4JYR82ob7i4AfxcSrqsahM4GOsWw/7fZvqgCfLvA//A6Z+KAkKQuwFt904nNINoV6hiDRJJ9WMi+9vVATRh4YGlEtVp027IpHu2vPcfkQ7LcqNMludlcV2U0Cy0WGgNof1Ch4VEhMSEZIWUhXSFwoXahA8ihH/////tP8BSQurUa3fdsCn3bfsQ0mHhcd/VQnuFDh61jJBSsSK/tUE4RwnkCFBB/gXpkPKr8Xf6/97/ez6nrWaat0jK6iWJ4kSbWr3ImcTK95UrlguRVtchZNXuqvZxWJ5v1BL3wsnGPCpv3/wUqZ557oVFS9KkW7Zi1Zp1L5FllL0PCYpMn33x1TffZfkBgYKHyv+wHBANgDIB+Ass/Q6seSRA2x6UrwG6SpT6mCOw0JBclApUdzRUqtlDlYXWZoNyVJsiQI2kjIbYHS8vBF6IBApjOcZbBLOjAZAapRSdi0RlVEgdDPsQojfJMC2tHsyLNu+O5oPz+n1O4bMCZxOAu26FV7gFtmzdYJDGEES02VWxGbvvKDKbmzmgzfnb6TOJ1yYmO0NZL2UQyhNPvtKwDY2FQA3YSuqmdEKThQ7ALo7NoKy0NK6TfnMrmWM+Ax8Oq5wCX8W8ylxJL2vCMDVMrxiqZPOYS33ajDn4+VTaBEQmxKWY2d6IRSuMd6veGk5OmGB6wx1zANMWclWsRtZGKkMtTkU//jP7//2j5CfnWIBJMKGCs+qr+Sjf60+JacwbPcE3fGxCNfZnK463Z6AIXUhnLRWZJWHFFhkWCBS7qQYo8d+tqwQNhOvasubhhqVibhDuO1QTRp/CiA+qvWde8aFB7oHUPPZbNxKNS9yORm7IeULvrOYcQkSmBaqbjSbvvhm6UVFGu2IH2rvc/muVn9qolVjv7SyiXqaTi1KOtFn5GCs7MXahx7JpN0Ycb0XrQz2KjSjwHer4qDo8NO+XKCG9zW2SONSzjkhY9oRqG+G+c6N1beyYdiKYoQ1psI5X+N67MEHVE6hqW/t8OxROxb40I9OSFj9oEka2i2tIGMihToDCmfJeW1sLIYifk7SpUE2GF0NmQnV4T4Ba0EYzGhD3x61zNWhwHJZs9LwL75ZRjakYOb08mw7NRhTTqHj1USJZe5JGWJADe906Ia94s2GL852aXIICBVruhhniOuaQ4WS1D1kKtljxoKDbSZxrTitUp0BJu/Ink9G5lsQ8p4Nf/x/pVv8Nkx9Gv8/01E7Gp/4/N/Vx1hKdfHD869fHH8QknNNtdYFFJbQ7zV217bVfbSqiCvjS/tPB0MHKXb8+oiVd6gWgVK/kZDXr4whK+UcXfW4csTIjgRvCXXI3BE4YWdSoLyRc1Qb3R6UQPql6WZzxacfHUMizcbEbeqy8srH6lFvMkWSqHSNXyjdz2vqOWuR5LC5vLaPi/Bt6CBX96AYMWEoJqaF31cdg9m2U6oTb5KmmYVND+U/xSkZ59lLpDb3Z2suHblNfUkRanxnQ7ZanM64+572Y6WWMb5QdHf2c7DzwXum2nT5TD6bHXa51610RHmkFTyIrnC9IGzX6o5Yl4emM5lNK5pweC2UueQVv3Q33IH8yQShn8EUl5KCich9ZUmNKeEY5txrRLt/9WcrdLi1zK6raiZwyQm5G6GAblVJwneyeqzt1VqjSSfIrU85b5lFGaD50ABTCtcq5iR7nNKJlu1E0dxp26X9lLgYRLL+52qi9rkGHuCTuEfJiqtvUd5z2YqDuPWhZEDd2a6MAOVY2k1V5uOOS9zIz0V0SVjTg0VJJ7e9V9Rb+6IINUotrMcmlhl074e0Zca1btCobazgtreiB0ruHLg1KHsFig7WYevYAZVKMjVeXehrhkvOaryWu8W6UtSMTVeLF5U5IbXB4KT3037btwSl9Y9G3sBRxGMh1Fl1Df0P0CLkjtHXz2C1plHvcpy12CfmVPkt5NBnzqtUorppIwaPidYNnG7a24NW1BCgB3g3XloRYFdhMcTVzU5lBGRYTOI4779l9D6u8suB+sguMoCyhnqwNIZXOD6FjSV2cfb5hXMtSmgeaJoNT2jHnGGLlx+AovHoDk6gMob4H+Se2aAh5REtyqCDibkkbS7jKTptLBa73SwWnKHHRHCJU83Yd9VXgwxnF0E5/zsMed3vksZRhwYbJjFIr8ICmEMb6zqklQXhxuWa1D8VbI9ZK/tVuPdAJGQNOqAVBCl4u9d/D9hQr+4+27aaV/39YH8PW1Sn9arFqS5ikZZype7VLr9Ir8JtTbgp3r7mI2vIAGCmAs+FQT50iNFnTWAF9dbt/mQyfsANIAgzLC03WRhk9WYknOm0n3dMAJ6uCn3uIODyZBmkl3PSa57Lh1QSSTbZJ3AWyk5tJ7OeQhJ7nDc1dVb52UYipp/xw42Eqr8Ym5Gnc4tfNftlJ6LS9iuvH+uLcUkgHKR+75TiCI3eNgvgwWrJhCMH5sFAXxpNduzOJtnf07vahQXklEZ+39E3i+p2sjHLmpei8Stni+OgljmpY09h3SIauarooGpBA2WG0O7ydf9FySk/xhWf5QWqnOYdqEW2WZeDL7yjvsD6d9CjKvkl8O8vxDMoCIxaXq0HZssU2mT3zs1+DbXRKhK6nN9TV0E5mRCpmrZYAe6+Mya9751KVpr+4MTe11rq04UblLjT1J6ZTea2d88NB4IZZkwdlnRbQeMMKFNFelWUTNd91KCCjCce8kpSpdLH+vC7pw0aPyztF/Z6++MMCtYj2FSURcv3sCi2UoeaDisijpF6pZId2ccKyA9s02bVGIvERR4fRQaXa8Omo0ail0JvKkBLTyCGPhyRd2r10JglV6s2jjYaZwMPUqbd1KcgUq1M4yeksHLNycz2p53fvpQHbGO60IOag4STPiry6Vymld9H8/Zf0kR5agIiAz51ZYcchXOCWWn7WjZPYwkzl5nSMQKkTYLL+l+8GAwGhbxLe5s5L47ECXw/TruOmJJn7zzPKfpeKbVz2ktKbp1NKfAzTcjx+8CP4rpTiIJXfhUb1O5QfzVf1OQEDfz/YOz6DOolp7lTYSwHn4zPHK2QTa+SMEqsGd6RHx4lxwNLH0d5OgGXhTdGLfM8e9bIejThTEGc0OFQ0wrzAKEexpTiRGO8QS/QHXuvoQ97B8DabM6MZHP6U483Kadctvc9k1XVHUQ9dqKWJhJfyOt6hbt/ruJb5e1W3vGoR/HiU4kE+OcopKaFMZl5z9H791VsPGvheFC82CjJf3x3ISb9GikqIDbqYFi3l0RJpXu3fPHu3jzBUNMTgebg1yaDmF5NTixMAV1SW2tCcmn61haKf1tCQnNLcQM3Emdp6GenbuFsbmlp7F1l7WxztlkxtaMI1NlL1PceY+rBmP4IMrD2sjcxsPA317Tysfnzy1ToTTvLVAi+yX3jH1XC3CC2afsPYYFPJ2PV0O7uioAv+pjopOsm1jf+Lxns/lt1IhlqTuj4LyNpjo8KYYI8mlobYlMiyHNTRTbcIWoSFjqS0jbqOp52xhWsQcC/k8wcnw3IxpJmuR9e+t0zSE43JD2bexh8Eq5TsA1bN4a6iIWmG0e2vLUFBdyW87IN9qoFYSHkE8wMiIfTQ1rfqkLuZWEiqwTvryErgv/JE3F68RDwYb1vO6nQiULxUxmGCK86ZcaR7b7wDnHzJWdJRcod5x/0P3cyEdGFffecUdFZjb763xwxwHN4p3QGamxSN1CEl0U7KAXp8rRhOvAY0LwfqLam82V2RQ8t811o6+/b10hmU0gDH69THtNzkBWTpxBvKKjUz7RHqJTxjPginNPFOHgJZZvp3yeBEqxprUmZ+WFZZVTZjBvX92e3X851PeE+kN7yAvZ4y1BSkOJ0E/7NcSiij/c/G2Nzus1HX2E6/01GiKR2Xxv/3FbDUxwwrzkwk51BTL1VmFCBUUHTfnS2dtWBalAaeGPs4cfzz1MSsLdx9ZrjwqtXkdLa/OmVqF7e69gn1fOTzAs+NDp54WmJkckFHZUENPS1GV44F5L52Vos8Qf//PlwlpU7dWmefX/vCOfcArflXv8CmyQLzgOZaG3rYWren/kVMQm5/cUneAGhbG4j2GoyKFu/lL3sK6uNygaRmd8lQqbTBqJv/Vu4//LN6IzLpZqiUm2RwM3Hg9ZOR4TdPWMNcYyvKf5WU/ijISU0pzOX12h9IJocHp1GW0yjLmVSQXU9S0q2zdEtkxnmvUgqCdm/HUZ7+0N6j0GxGtsAcqzq+gf66xfvTuSr0qKVRX/XLmNhCZnlx7jCwpIb+GZcVjiuQFY4dB7UrEtr12praddog3ZVVhLol7x5bIO8eNwxe5UikdKaxZQrZ0iXQLzDS72JcgCMDqV+f7Lv5cLazo76ZGGBgXjasuo5/9hDrv7F/fLKnd1CuUd4qy8IoN3+bcIfrajTqVqHfhUunzNRlTxK2CkOpK9huQtq5UtOZs5PdUWxf2b/TiGLDDxx6TncdIz2+I+33y2e1q4F9PzthqS/u3fufnivt1zTXQjhzzEvtVIO8j7rgxb/Fa0aUvQXVB/EelLhJkQl6k8gCfaJr3/vvTdAMWPri23djwxfDqjxPRQhRBpLG/67sKDZxqJErsmJZDmuUiySWJBCjqUTaQTBJntu/dfjXO5RCqEL27TxZ1qsdO3tQghsje9sbKksG7nP/znk7saerriXvQPcYLVTeOtpYIw/TznP6WBK7NoZwyhMiZpe/8f23/rFDWEBAHVUfhVmqrgYsvbDm0XwUqI6meqYOA5ZOrpn85Akmw0OGfnhfehdfQ4ksMnvJUMZPcENg5/DCsLyQyMgkF0DU1xWhIWK9pIH+hSoeME+CkfrlekcNh0nLpBGIerSWINVLH2F58Ov1g2cfl6aHEyjUlKiCYiDD/qudA2+ene198r0d1RSxK+Jb4FfVVR2WpY3AfgH6ofGr1/ynKHyW1/PQRmXhofkygtvZwdq49eLzHh4jVrep+BcfnyEwL2h+TFNnaaS3sTYVKCJ3/R7ma7G1tHWwNdE0F24h6Hv8g333+VFfA34/PMxg3uZC/QFfJWWvHxn73nN9npnHb3y3qbKvuJKXmXKlMhflBeaE5kfpUtHW6Nsp0TKf9XnNR+hIZ2tuzRaGALkjeKsXev66fyRc9rhlbGOC8MfM+jf8ymNKwUyKtLUfx1z+7nFaU2F8Rh2tFMTAmvLt3OpcWRthdbHkVVjS7ZiRtMaS8tya+GD7klh/7zuxHleCO/nmt0vQpOypSyNpo2VXyurjHheHg2EEYR6whCHAEh7VXASja/RluAvYF9zC7w8gyNrqrec17dfrr7S117yArH/7MZ0PhSfoLcK99AewPntg6EQbAf3jMm/hj+Mdh8e4jm6MCArQOwjjooJBgkF84aIdglj6MJzQSXESX7/94PHShvdZn7MvnyzdebAGXvNxz58f8cw/MnzEFXURFKu0qo/lSW+k8NZ8zwGh3p0hwFGGymKAZSAGUOl0uhhOnA5QkhSbJGLLRkp/YY3A/quDN9faTj2+dPJxKygllRaVFsGhq89rEdEVOPGf9cik9O66Oz3UZmDu9li7h5FCPdM99ZkXSCXjtpGDj5joK5+KRW15vmTbVtqL6C/nW03ZhrmDNor3x8szw3eD8/DxLYADhlpwVtbqSfQA5mb+3cx+s+Z5q+ae9MK7oJbiWRjFYt+BcYpoHPcMWsKIwZGasK9PM4r6Pjxjae9g8c0l++VUzA4fHSyfARfRn68lhm4FJcsxAAct+LCgjMkbb2R/DOAGSu+R6ebVHy3K2iilD8CYb5FP6JNIfeyfxdzkR7sCaJMldG3XeJZHhpmMVohtxn1C2GxI6WXegsNcLNkZFbDd2kprDb7OuNmiucpavCPv4O7rQdqmbbeCq+jf3VMjk0FUfFSz0MMfHx9GrHgq27gGRRa0ZZSUZjkHXRq+9Uqa8am/+H5Gx4Wad1YVLRmlD4Dfsj+2ZMIWlXKbcQfCfYODHTJcRU3QDMABA6wZyoypw+KBxASHOGIA8Pco9yseUJMu+i6nrqltOUg4fCZIXqFp6AiML2HR8dZTr/eINPdcuzq2EPEMrKuvBeC7qoyJiqTOvrzQLm/S5hrphY1eYMyG+5ESfDJi2XzmmBNvtvu0KwQZysDXo4zNiKucRvY/rDI4iNXG/13OpC3xSP/jrIn+tUotWOSR/sPA9zQ8y865tjjV1bSYndn4DLTWeb+viY9MhMSzMgD7vBkfFUKdGVsXxQ2g+ysfUZosi7AWha3pVQ/BRfT/7omJ4aAkFmILYJ8zMMFRzPEdqT8DLMyqR+nXbPIJtrmXydXzcDKsqES6T7MCGMo9qHiHvEaFmyAlfOR8iMVelauWpmHm6av9HQMbN4uYxkmBHt6htvo6fjr8aq3WFtG2+dvXGSlTjiFX3RgYpywiyS/RCvZGaOJmabO1WvKaWkJxJQZ8evEJxVm1E7QJHMgkBQQkPmjvmYbxYcbgt+l5vWo+hjIdPvziGdO4uVdXOWdvmvJN0K37r6oKg69HuYQnTI4HLVfCd1V5gNPyFPfYqWL4dv191lN3QaLI459FP4ueEEXcBR/DWy7usdOTB+TWvDgXRXQ5SvhcfM8Le50I3HtMYhaUSmJKHSmilvuMy+VSISqQLt21cWPq83z+/Kf7SN/11S4ZUdJ97f2zLxvsGuw351CEu1qgw1kMuFvFQPg1q4ljXdzusey5sHt7/31tURJdunMVBh6+n8+f/zx7o2ftujSYfmatYT7NNLgk11RoePSUqaW/Sx1S13+XakzV6Kj7OWLsEuYKza1NMM8/ylFsnIEfDsMUr8JoFrsObMLENG3fLuNVl/DUgcWj8zMH6ULrjJViwaFH2OKlKFU82oYDWV5UqDksQRW+2iRaOgVxxbMsXquuw6OnvrydvrX0qHMoIDEu2C+5PAGP1qgG3Q8hNakP7tUkp2ckk7OyfSpn54IvF5QkZxQUV0eNjddEF5WmUkrKAy/fHveuyaWlZiij4uJIj8Zi1sdiQx7G2cHGo0NCx6LurQIId++TLVkIuodN0L2mG6+rPaKtHq9+TT2BRR7jT6GAcw9zzzTzGxP08ztuMqx0pfQzvJrQkxsh02f1FLNC7jKQlO6SKsq1cDf7HN/7ar2SQ0FOFcHMXlstqXMZXg1sU8s76LW7jITGCmpuHclD76wZWfOwWZN+iJtS0uEW+z1G+80IRl565+TN0rQOXKCb8Fl66dllEQFn7XilocR2aD+V4lXV+2Rd3lZXU33jYV8Q/dbDyrrWK8UFni5Wji4BmXGh0YtZuTg5WXr/S22rPUa4psl7bfOdQFtLtTChob6O72rNUVLzLNPeaDLJcJJpPzvRbWt0f3LCaK7XFvyGO63PWydFJcf5BDdEtRHlMuL1TOVl69h9WpMz08tzyaru+8wdY0/bHmfmhliAnbqsC6isRTHx6fUaYP/Ue4w0iWZ6dfV8TVXCba1VQnz1T6ChLxY5F/jLm1IS4i5pxkhDuZoNlif/EUOI25WE7rhUpY/YaikYmqh6ZYHMpmAdrQ7wx4Z9iyr9fQsq/PwLin39iov/CSgYnlNSNjRSOGtkSjQyhBOFNsRSYk1jTXJpcnUjP/9nnTIdaKmwJZ7eR/TWk/6jev7ceaVqUkMhvjwxyNff39K0I48GPEUXrYz0VaXEd88pGcmcrPa4HBufWRnte1bPQWtv0Qmaf3M8Je1aQkCNuKmKzjkDFdnQSsQO+CZhlV20GATklGPg8sXK8Cm1UiGmciOe5ERuKTQ3WNjOlgbIeKst/N/HC6z/tjgBS4eCp3+aPFYlr5Ny4VB32f4C99oQGs7fzEZW8sxPd/yRdHhXUW3/RDHJI5wALFc9awZHKyoHhxuMapkjcjdHrl3GermFWlm6kLxNPd1CLS+4BiJucL4R/E4kukb0D7N58AeGkQK94kMcGUjd6u3+8YXp7vba68QQLZOCYdVcioqfqYsYEQJhXG5yd9zWz2Lp/WXdfI9NSw0ECCPWvNHThxfBzsDQTN80MtbA1MApgRIqGjYyNyMVYNNsTbngVpFL27o55Gt5WVrqx4XxF6/m1PyjMBFRNU3PL+7ZR3Uo3kENBdk0pc05+86miFiGOmjEXMx+aQpi6aJ7Cl/4Ro4kjrJsvSQoMQFLZ9wQEcitLYmOqy3JANBl2N6fe8XsGe+qTbg0qydr5DJIs84wrp3t7LvQc9rxVAU3+bR8QIizhZyh640Cm8wL9llzVi4+/nbPRcF0lR+b0a1pveac0zjYVlq93r60Yh0QGOvrRw280E+gfewZDOuwkLZQN2238Xu4DbthT3Ed7beKi6LPv9PIqI7WCCkxqDYUeLsRjlADLU38nOTRcmFFLTxZ+4+kpReArJ7AD5Zy55rwP09o5IwXSdEr5MLgnbnk5CvRoZKj2dnPCg08hlJSHfqkFGveyV/PupFk4IlL5dzDkWXglF9/qzG7YSwpoWxtALQf2m0NbLkq5UfPdlIOSsMkfih0iH6hY/+sZtGCnE8aFMZ73xkt16yJ+7tCyfO1FjEsivecvVM0oDDqFmTTu2KQ1fjMu6fPJsiyw1eb2vCcAdqkg/Was9QxFEJSR+UaWjOVmRCSB+ad/KTLf4upXNAi35bF87fkcnwz37nfHH7NVUdhlvQ1D4R6c+YSuYjtIxvInNKj0VfgJlYX/fc5JTdzOlzVU9N7jBRyb/fv6/A5XPOVcfKNqADDBErq14w7weqeah6TIeRFFsl/A/j+2ifUzNrHc311T7My6he07z/2LL4skMm1P4FSDFJe79jKi5uLmss5vnKHgEhEkm1cuKNTbERbbMxAbIyRtaS2jrSUjpaHtq60jJYeyG4uEmPTnU52u6m1HTxZIx2HC4imOh8Nc1USPnJaUUcceLb4/PSdElEFlIHwi25TwFok6KvvlIyi5fWngKfbJGTv9zVwSETlRzK8vD1mIPuMr74DBVXGYFwlejxc1NBuQubVALf7gL+CsQ0KdnIMJTqL2gYGujgHBdnBIVEkO0cslU8sLQe4wnqX6i4zF8lBcuFyoM+/XSSf+7A84VASerT7wbVwb2G+2qhD0T8OHsOyd8V3ZXYldLFiDx7+7E8+zFdPFAm6Sp/FDl5KSMpMArVNYWqmHJWS6bAvhJZLyw3Z5/BlqnDacbroQgqod1F1SnVgtsRcUqfeuZmbIS2qhyvjpUOjfP0DXJZoS62G05spi/WM4zOefhhQdnLGoKdHJLQN9Xd6n1IF7FNGiTpanmOJ5PIjuizTll9zqfJaCxjKgz1GGDm85iAVtMgWKp/vdTft2D3NDx+Vn501FHMkGyU1lBTn1WYhibcJhaeVLsm5Oqk4aEo4Gs84zLbMGnVjZhJO1bTj07qZh97vnp9NV+leLm3PoVa2Qm3ulYp2ak5pK1JVhRvOSkd3d49S09A9gJ/d+H8IzE4FpAQ0VzdHYb2jsfVxuyvC7BCcIp2/nOYs0Kx50CgplxITX5tHjmlIwHpVsnoka+kb6aqbGBsZtoBI6uFUXnZE8Lm+MSmSnBcVXlOeRm24Vip7f+nlHUxCvqzxaW4RKwsrDTUT0/hz5+Eq04nZ4FQwkRIAWdqRkQpZyqn+tdE81y37axu6/YpUiPQpiUhIHLOgTMiZKKlrGCnJyZ9XSuSbJfX92Q0pie2Qbadv8FVDV9M7MjszMeZybXJm5VVUoVpVNp/bpZJU99hql5PnVC1NQ4uZqsp5Sx0tQxNQ28jgmKgBc8Nu70dlpVO3DZcOX/r3QvWJW//8nenJCz+Oqxdr9Ys/ABsj/AEwIuT3E+a4x0oPHJ4lJv7af/7ZtaGb/0J/3VKw68IfPGG354td1uz62Auf++nlsRr7vCEzPA6KdaKtHh6I0ll6lQE/dZAulc659gEY/2umObnq4q9meJVOMFsaOqC/bMlRWWjA3WqAdysY8HesdqCMQAfldm+um1ss3XbaLttte1K91+Ds/wdm/0EzAo8AqpfX1sZEg13qLqlQ0LoRa8jNNbOcZyKUP/r7aTJLC/PQ4vhszHqY3zl5qet3aIMbsbLcXEXj/sYRd3VrdCPIu7mpOe5fSJDBy+8gG6csQtHKtq8JN9frxTzboZphfR0wCUre9k6HQuVGLKaba3zc35egZgGlqieOLACRg7oXfBrknt+M552Nyfltr7GdpfmKPejTjYY19BMiGELNSpsEaTveYNxfLtQ93b/UDUR85YleF0vkwdtoqxY4UycFy+Dcs5a4pC3DmbrEllPzSCgL9p6YsvbYpO39iVXemrzgbM4BnHv9fw4HYKeAowxB9rC3a1+yNlgjC/2HaDD+yE/VO9NuuMGw/bqAXngsb74P8l+TX1dg03VyYTmsfeBFpdWrds+urEbXXtagX9vbmQteQ3DL3/dBVwq15VQR+eLrM8XyHekyOPBRbYKFPADckF9nzgMKpbIMdjrznVOq+0CMMn87R9YIbOzW3kc5xzWYsdq6bbjzS7EePLE3I9g7hbyTcGHH2YJyTe8nWo4UTlSfg6CvNSrcykQ6Db/Byydf1KuLp31cM2j7jdrgZvm/CuLyuB8dlCPx5S72w0Ly+JGletr0iUVEZG8uK4silB3bBfdX9tGYllEhbfiNG7QnmhR4Ls6rAWCr/iY4UeVz5PTqfr5pppwFn7OD8twschLEGf0/3ATKLvj+38OWGGx5nz4uG9TP+huOnIuRGwBqzHbpEyi+s5gdVGTBhfOfdA3UuN5nhP0V3RuhHFV52yYY+unHgbZDH+fyPPsJk4+rj+h0FZERB2WyVO+UxkRqtlf/0T9gGbDD3PIIUDZYxb3wuum5VX/H75sA8OJPvBIAvBMWv/068HdhlprCgBkKIMB47gIHwHzgseqf0UkhOseKhs7mpbX+bW/VshzqCg2lvRU1iYLuIr/5yXt589k3pJdpYpXkYMtkugocKvJEywF51RjhORYGWuAMF8ijAmkwQUixvdYH5Oh0svEyGC9lTQK5Tjn/keR/FR1svzV3eVFXQ3PLFkaMq8PE3p48RVx/8yffMblkusvwR7OqTpLIy6EWN3DeampDzGeSdJeS3fc4OO6j1jGg1OZwt1k2+4iCauCE5GOtdjRPFUyJqRXPQeAkyG5SnCaV66hx3lNUWwK38ZUdH+XEbg4NF+kfVY1ooDb/5+ryONrb2Vx3r0JocauxNj+Uukp4QMPp+t3JOkNQmF3V1lyfdWDz9VCpUT5qc+M3DRxvD6svizteK2w7HI4d78eQ4ylUWEdcnCCXHqN8di1yy18p7Rz3/Z62XTz1kiJuKCrqLp0tqDB+CycRe66wJsMu3kXWjzzzR0nwmaH7ic1Po8uexltxmBraKOowwnToEief/lA4TpXi+KVyrOf70eV+xjWXdjFnUtzwg7gPCeTte7g8aMiLcm4yO6kodazM890vqJaRKF+XrO6gqFxEZF3tzxUq5T2Flsj1IuAzBZpakCONSnWYvw0DmHbiFCuLBeZQhwIcYQNlmMFwnMxNus8liWSGjBCVGsOW+8TlHt0ZCwezVsRJjY+mIAjnKlXovtytXeCiNxxJSjbxkLiWVRD3iHejiF3Wr5ysUuLLe7WDnPOGI/mhEN8IaP3SuqY58V6f7gJlrUGah9edkQEB0YBGkBUsBGAZKFAbwkGAyUVoSGMFcDzQ7Y/g4LI/Chf/XHR/Lgb2xxITvT/OQTWry8UKk447wSExJD8f33AhGSlpUy2kH6yqn+gdaBjkKcG0EhBDFtYiTMu8ve1NipwJL4kkEexhEU5Gbp8IonsRNjIpzE8EhYbEINmzKkhGP+tnTOJ3Cu4OD1GWNKVRTKLAQqzb09dbojHShGTCz3MiiLDmlzQ21NEztXRCHEetVJlzSc29OgAA) format(\"woff2\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,d09GMgABAAAAAAMAAA4AAAAABWwAAAKuAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGiYbIBw2BmAANBEMCoIYgXkLEAABNgIkAxwEIAWDAAcgG0oEAB6D426JQgSiDJGrY+EepR5ejwf4/fWd+/C1EBKYZDS7sRFxHTf9uCJn/m9Of4qsOwRQBbqEex0QSbKziM9Pj42dA85/tYTLU84Cj+f+PIAlq3AtV5GCrQWUqr11TNFedSEUjKs7rSju46fX7RWCSHFAeYQcQRBEKIqiAgIKlGZBdO5a3w4akEBWj6orkgSzThrq5iF0WjfiKGe7e/0dAHkwOR8nW+GblHR72hyEGmzEl02NcDPu9oBKt35NVVBcoyEuIJNhau72SE3EHkhapkdqCiZGhBhliQWUJVETSCQCNfr8o/boWoBjI3miLHqQC4ojH22AaUBxFAUpIBJlJeIVGIvLFI6PlFi4hGYVs0brZ4ZZlT0rbz1SLT+50xlW3X269vh2x+CpO/n7bw02ebvIys0wMkpteMHUIq4PGfxCRBdKjxXGaDRIc42rK+a/qgeebsfBvjGMiQ14cnJjW8fSe6fHlr2NIrgbeH2jS+k9X+md9WJP/5IvZ8LRg1cQ3gz+dJMePnr2/6ZSiy3c9rHc87Zj4tqOx0WLe1U0VR2OOEt9kq4gV/r/NBEyVbPvpL70poCoTunu3LVVZ4nW3xWV8gAKP5VqBMD10Pruq+7/52x5c4B8EQjkzs5oyJ/1JzxT0mgEACA3XjUZACFDut7UuAEqPZepikCuTcprJBVAcSJREzIBeaYSC4kSGAs2BJU5IFLcQjt+sxNAqr55kwOx947iBrvVCRYwpBuDQusVLFWyFCmCVcEwCg8JVsPPK1GwEjxesNZJv6dyHtID6dYP8UnUCvPAemHBGiA+jD6CVgilD8+tWyfSPRiYXwVJDNNkydPUzvrRmeBZvFdArqSTDSCJ3ALcvDp0JBHWjTK8pb0Qvx7N35CkXo0yFRq1qZAgVaJkYiA7H3AA) format(\"woff2\");unicode-range:U+1F00-1FFF}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0370-03FF}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0102-0103,U+0110-0111,U+0128-0129,U+0168-0169,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EF9,U+20AB}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Roboto;font-style:normal;font-weight:500;font-display:swap;src:url(data:font/woff2;base64,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) format(\"woff2\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}/*!************************************************************************************************!*\\\n  !*** css ../../../node_modules/css-loader/dist/cjs.js!../../graphiql-react/font/fira-code.css ***!\n  \\************************************************************************************************/@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,d09GRgABAAAAADhUAA8AAAAAVfwAAQABAAAAAAAAAAAAAAAAAAAAAAAAAABHREVGAAABWAAAAHIAAACmCwIKakdQT1MAAAHMAAAAIAAAACBEdkx1R1NVQgAAAewAAABAAAAAQodMa01PUy8yAAACLAAAAFQAAABgc+SqD1NUQVQAAAKAAAAAKgAAAC55kWzdY21hcAAAAqwAAAFAAAABxDJPUwdnYXNwAAAD7AAAAAgAAAAIAAAAEGdseWYAAAP0AAAvawAASRaIk5X9aGVhZAAAM2AAAAA2AAAANhL1JvtoaGVhAAAzmAAAAB8AAAAkAzn+dWhtdHgAADO4AAABdwAAA7RA9GIebG9jYQAANTAAAAHhAAAB5vJU4EVtYXhwAAA3FAAAABwAAAAgAWACg25hbWUAADcwAAABCwAAAkgzWFNlcG9zdAAAODwAAAAWAAAAIP+fADN42h3DsTFFUQAFwD0vhQwyKQCQAgARNAENKEAMAHQAEEEPQANK+Xf+7KyoNAPOVFq1F9GhS/QYFCNFjJkQU+bEQhFLRaxYExu2xI5dsedAHDkWp87FVRE37sRDEU9FvHgTH77ETxF//qWo0FgfaprNFW0AAAABAAAACgAcAB4AAURGTFQACAAEAAAAAP//AAAAAAAAeNpjYGRgYOBisGNwYGBzcfMJYVBLrizKYTBIL0rNZjDISSzJYzCoyszLAJKVlZUMBgwsDEDw/z8DHAAAwqUNgnjaY2Bh2ck4gYGVgYHlC8skBgaGSRCaaTWDEVMFkObm4GQFUgwsIAIZOIe4ODEcYElg1Wff87eGgYGjhPlFAgPD/PvXgWbJsiYClSgwsAIA3zcQA3jaY2AEQg4gZmAQAZMyDEzl6RklICYDEwMziGRkYpwApPYwMAAAOVADUwAAeNpiYGBgAmJmIBYBkoxgmoVxA5DmYuAAyjGxVLL0s6xn1f//n4GBJYGli2USyyYgGwYYgeoABcEDchgAAACwPGOn2TY7b51t27Zt2zZq27btnzQJEOgqurqlm9u6u6OHu3q6p5f7enugj4f6eqSfx/p7YoCnBnqmiytOaXZai0GeG+yFIV4a6pVhXhvujRHeGumdUd4b7YMxPhnns/G+mOCrib6Z5LsAP0z20xS/TPXbdH/N8M9MswSZLVigEHOEmivMPOHmi/DfApEWirJItMViLBFrqTjLxFsuwQqJVkqySrLVUqyRaq0066RbL8MGmTbKskm2zXJskWurPNvk267ADoV2KrJLsd1K7FFqrzL7lNuvwgGVDqpySLXDahxR66g6x9Q7rsEJjU5qMtZH0/xxRquz2pzT7ryOTicvZ3UAAQAB//8AD3jahVsHXBPJ98/MbhKxoAECCoLGCIgNJYRYAOkg0pEmioIgiiBNxa5I71KsKBZaQEDOw16venrdcnpe88rPcr3rCRn+bydF4PB/HwkmQ/a977x5/e3yWF5Q7z52Gf9tHsMT8ibx7Hm8UIlIYimSiJCRQDrBSi53cJDbW0knCIT0o72Dg8zO2FhsJBAy9txbMf1aEDuq+1emoecGUo43MByX7Gu7YJyt6chhxqZO4dbhsdZRCRsmWVhM4l78t/+5uZIf8/wYZo1NTY2VAs/AuYHDhgnMDM2ko1xXOa5aO5L8zX113JQpPMyz4fHYAn4soBvK47lKGCmSISmSMMxy1VdrjqOrX6Krp1V16No3aCk5yo99fhj9gh/wcO9juO4KXDeSZ6C5TiKUGErE9AXX42qyavkrqAb/KiY2K9Ba0pyIIog58UcLqtWkysi0MjKmDP2GH/EQrxvomQG9YUBNBCTULyFqQYRgnNHzgNE3Ym+RGRXEpIQfWw5XRPc+YeX8LJ6Ux/OcYIXl9gZUdiZCKxCnPhYbGRvL7BwUIom1RCQQ4Mz633KX1n+YWnAyeNW8kvAFpamuofUbfLKdyG9i9NGSmyZ1yPHnk2joyUh/35S5s+bk3Dty7fm6CeNRwy5Vmp0XDzh+wOMx32gwqhHK4bec+YZ8gOx6fkR25AN+bEn3qZISdkEJyHYJIAwFhCN5ZnCFERZINTgBpoFwFJZOwKJRBjI7AzY0/Rtl87fp6d82K79JP723o2PvwZaOvfjER+TKqVeQ852PkduZk+TqJ8gQTST3yU/w72sk4QGPaNLEHgUeo3kTOR4CgdACmwin45ezctiaFFu0dMIZm1WHsuo+S8v8BnhmdO0/0XHgcEvHAXyi6s/zcwz9chJ8kqoWnECOL3gbISn5jPyo5Y14enBmzSCP4cCZkTLwIzM0hB+2+eZ3dYefvN5R3XjnUCOnNOzI7t/4sd0xLO4m7DHuWme4NkMty1AZQvAj5X6WX0PTke1FshGdvkZaSOMF1MmPVf2CRap81Ri8RlWFv+SutoWrs+HqIZy2SEWIo4A7O4ntVZSC0ruwoeonLGKCVAH4JMioCM5BxMp443iTebwEI6oi1gKNvclkGvuzpuojRpzOwGfQH+bC5Kk2HitMZrcm1p0mv9bmrbcvDZka2+r/1lvEP6B8+r6OioSH8+bor9fz9Jq/4GR1fUdkxtIx5tsnWpw5pCoO9EIjNyTEJYDS9P4JCC4Bgmm8OTxXwGxnIDYSStQKakKRvAyPiYMDomjod62sEPxFYmXFJHQ1sKqH+klJc6PsAhxzw5OqFfNy4kua7t9atDRCvsh1unuJS+Ym83F55NnCXWuC3d2XzxymjxKiokegTUwgKyM//qqwflVpY5VpOycmblXEyeqGE+GpsYB+3MSlQcExqvvrYuNXLl0sX4s+3XuxqZ3TtcLeJ8wj/n2w+PGwBxORVA0aUGssD3BqrQ4gzlNWj5q7P6LoZHjcuZ3RxfKfc8vnpIcs2j55yib+ffHzuSULA4qf1tf9UzHPadgHHxeeXbzCBeu7eHOcDoG8xCAvU54EOFngF3Lq5yI1wkD+/IXFwcE5noG+l5bvv5ee8UFp3tVEjMmidYeGYUumHN3aVDt/hm3qHDdgeORZ+dZHR8xsDdAnTR0tx0GbNsC+fuG/xRNx2mTU51DkYN14eaz/jPAp06ZsDyrtIJf4b3XPC3A1Em0WS2qLWFkeh7Ya0JqzMo2dq7HpsJpoDw+OFS/afT1h5fWamhuJK9+tKSwpKiwsKmRlBX83H31WVvi0sf5ZSdH12x/duHHz5nWOLolkHgFdtbxBwAqZyFo0kLRW3nji0koH/Qrl7P3hZcf9orvacnIdVodE7pxis5WVeblnPp8rxqODFwAbEHkBCPz0oji1wBHnQ9ky1pyz5Ng+hixj7vxcWPP4alu+8trh/AaG39PNmvcsYGx7PmZOcXa4mUSxcrhuJOBD+lho7YwVXARBrJyUW6afKjFN2TZ/7CyyqwvMejJr3v356pPr9PMNfNcGA6HlzKHeXq3nFwggRnI0R8PnfWDbYqApZaSGgEUmgn+AxhA+i6R42JYPlX/daz616cCmM433/mp7f9MBXKbKxJ/iQtV57EVfG1TW3BrQ84LTmQ0e0lZ7NtRHao7IWmGsORsrqVQB7+hbjfnhmdW3MwOyA8L3xmz/oaHqn0Wrgy+mHn0lrHLxn0Y3/QvDAvPDMtv841b8j5+16FhS2Ob5w4TBlas3v5m+ImaZl9/e7CWZDtW28YG+cTO8nVeGhQGWZtibHuxtFI+XCXvioCAZODB7AwVqbhPo66E/v2ozHEb0wen5bOra7c++8/wwPleHhsR0u4N8msl99pKQ5fF5xjwr8GUgHqmCP5CSIeiHZmMKE33MXqot8LBEPT/2ZXDDb0fokHXG4V7eS4wzhyzcWUyCkFVx8WB8BXr28b5jXBUK1zG+8fZwYpq4BicmoCcmh8+FdFecFjB9tKCQRE8MTTuYYrpyZ7i1J5nThYrRCn5sjzA8Z8lc/ZKRs1ZFMA97ipn1oO0JGtmIeOI+dqjPRTLOEDk3b1iWveGovdhjw/bgjafimYZ2gNtdnBM6q8jBY3zC6c3Y6PlhoMDoostQsB1jiDAimkmxUki7pCLuvEchoPfztu6/CfkBordrZXXZXvQ+xBrCu//eg8+A7hZVR1EjmohzKUnY5UJNvmHO6RFPZIT76I8hZAJYpzam/6AJhf+0Fj4IWOVdu+zU68NVx3CM/uWGtbXzlgV8ws8iStLwKznfEBsY7+L+DOlVIf69IFmiRwJwkfR+z1YCQzvgYmwMYQLrosN0GtAVMoFAm9zIuZOHN87wF2xlzeIxHnYhu5YtW28xPi1+7tqY2TKPMcopLtIZCx1kfq0LZ0udZ5hZukzix3p+Su688R35NWt1QnzyvIqfT7yBpnzqmfaY/FV/+uaimM3oBpmVFW+ZcGlvIxrxJBVOxwgkmga4jDkfFwt8NbYilcplWo+H5BKJGNm3ly6tCe+o7uo88HB78W+HVBfRePQAov9U++y1B7cWR58tPfhGNGuZnc35ziCQaiNIFbJjek5iKXfQAl2qpMvoQMEh4VKHgt6vvjrBhskLkvc92LT9f/uWbpwdNjXIMbIkSh9dJ3Z6YWXRfkut4Qw796jyIP14YjOrATk9eowcj9lMyjAzXfxRZ9Wpr1fajOYxuvxXALqiD1ZJ018kgQ0ihcTEhibA50kBKUBWDWTnVMxMo/nMte7ZOFVViT2qq4EAzxd+naBZtL5a41y5bYCQGDU9mYYeuvXl8eP3qpDf58ivjfxMfr5eRYqnYTwNPNYF/jJVmsqWkv+s2xInq2qwV0kJYFwA1BNormTEecdMQwl1hPCPQUjO5T5ihKwl4gUPcNJHx+ozWjKakIC8nYVskV0aOU/m8fHn+C/VMC5/oq8inJAJ1JMzVbV40bZt3A4s4dcjugND3lgu3mQBZImJRGTSh5thX26Wx7FUoLqruIddr9XvX9y+5MBj8n0WGopGpJMvyXI+3o1gRzUFqmo0gHn8Wo75WtVBHLV9O/BuJGHsMKEI9jYBMrSZID11fFOAXiuMIKzQbN4ECe2pk3YwtpQjMDiAYcKXWipM0JVtO3yqM1ZWBZxyXbsvIj5l8gIvrH/qwN7be5Z+9VDlhZpUHYyUDEPLfMkf6eQ3v+ckTJ4X5rZk1tBhrllRKKYmyVlvqKm1hbW3FB9CVZt24ruhO9C3lbtU99kVYXfvhh0Frwd6z+6mceobHq+fF4ygXnAW/L2en0XrIXUIQZwTNFTnRuxq0Tgjq2ki8t5lkngBze22SFsy1WMc+51ATz67ezOYx0rmTkaioQgoU0rCdwVWnE3AiTzsLUAeoAcGEG0bNPXEZF3Vw5GnfsLazkCkzfSRNYhPHcYZfYzmZxY6OhZmZnC/M6Lmzo1a5OiKro2OSBR7N+3ZlH6g0TA810SJHB98jlzbW8hrD74mrzfnISM0DeK2MXlMbsK/X1Q/7DDNL1AH7u7PNzQngv3mAtZtoDd8TVUkAQ0Rcs6akZO3SdF1ZqahqqKdicvLQ737uhXwTZbXCvtYQP20IWQe1nCdUGKNXgRjuQzcCQMeG8ioc2GFgwPD0TxurHq9GC8OSJ3oOtFNNte1/fD3r37SvnXLhnof5HP2R4gHu3Y9e2Zrlik2ne+ft3nfHv7kb68TG3Qnf1dsxLHQaPSl2ptj3miIpG9Q3HCuCaDbUgUaNNtg39hpZqNH+P/OOSrJfGRViXoGzzzgHL2IlMs84BzBI4CH+eUPjvMl4LyHcjbQcdZ4C1oGsXuKzacMJ3MOd3QcQ00XyQz0900Nq+eqdeDVLmIPjgmnc5dA+nuBlhEXMTVEdISAKroe19oat9oehZ4mO1DT66RKBkcaoyaDwkmrmhQuIcd4mHqxXfSEROCL5TKJmOkLzHcfqvA4wqHafpFEog9usuNyckjyQEwmGl+or/GCUrlEQwC7F7/yGzpWigoukWB05zYuUa1jr+9TXcLu9GLMawXZ5FHZiLSyEdLQD74IXmxesfnUEctUz9rb8ZB2tVAqOWEDAhD988OcfAuA/zmqXVxWCl0Jpg8FxgtlGpA/jhOvjg50ntOXbltcrsrQEWB4CtDOY9QTmnC6GctdDS/DAfpoOEBfsR75vAPveDf/QLufm1uWl1C+g9NTd6krp6dN7NvdczjXzuS3lau6cGCI3/yQcr9Fz2/Zmq3llDU3a/9+QE8zvFwqgRH9JAAvNpdTjDjYPROn2Tt7o9sBqNJ9e/casqXgHcbw5vw/HRE0nXlRQUFypeCSX1pgQt8AZzZ3F0ftey1pc0PwYrdcX/ftiXNjWtOQfcC+Tb6h1TGrdvl6FlzPHXL81Qo/P6ekXE/jeuT8qAOaJtHurmvlM2fn3Dv8zrN0UrXiQlfXsvgjMZG18bFX62L2fnj2ekbcsqO7Dy/lkG4nE9hUQGrI+foEDkj/VNzaUBf0AVefKnkit6eJODu3oSDTI2b81NEustlzFi1eXXA6JNa1MjD96rrUy+vW7lYsmnejupn8VncUjZg59WBS3ObxBiuGj3G2d8+R8bM83NIVtquf3nr/2RqvaRlOUdrUgGYjIP2l/aVvyMleLhEy1pzu+baTEHakgVr87Nxue/a93bshGmg7EgIuj+AoOQOlbf01GfXpc7DbOGo9x//d7tCQ/mhA0wNqI6CYqPG0hpzPlEolckQp8zXajbsMf32ll8cmlptP0VfFnkSHT0KvrLx7hlpb+Jbdq9mPQVuAWoJOz0z6eMBBsm6N2qnCBubeWqCDZ+DabJ4F32eq9k4iZjDyeOu6vwaSZuU951Ec+g5NHYQ4tRKg7sN1H6kkBokU+ErXnfYtNC54Q1xgcgYJA5p66hUNnTGDU1JLGLdcvt2xozhlvxNy7vi0nR3KyaQv1Ta/SDVVjbA5GSPIENbws2D/UprPG0EK27eXoYveiGa30zGyp38SG8lkYvg7uwYzqiAmJC9oSYZtqOJoVvm99RkfFG45n0hiA7J89LCB0HV1zxO7sRmi0Yk1ufmF+IZIbtb12fLZkpW2wfuR/PG3yOvEPvIhck768sSZz+NJrNuKSfaW7lYrygpAZxGRAz4uPrnS+PTDItBkbZcTNJlP8xxajwtZ+JaYfus3Ho9KLoqdSissI67zmEmjBA39Ek5+Ck6SA0N6c/tbaNE5kmJLvsfWZR2iZ1+RL/25UE5dZB0/lquTVMuCVBUotKq06sEH5DiJ6hPMuZO3hhMrAr4GgItqlYQRYNp5YBSGiNbDzJ02cn2myUyF50IHP4nTLLlZADP9QKGnJaK59Xtk5RXS3ZKywDJ7rEf2r9dwTLcNLX6p942iWqvu5AyA3zeO4Efg292k6hxEXxOQ+oFFzf0CE+ZVAvJsmsWLaFTR0VKoUY8n5m1t6Nv2rloOat+gpK7NNVarq5HNXlIlMzIT0Nh/18olb4+Yal48WMUMOgvgOOlaAv1ztMobC9QhAYJowUgZI669AChlhmoRy5nbAc2TWT5G73bcRQw7sSHg9zfOoXsHSz0tORnjD+fvK14h7nFjLpskl+524aqanmDmhFbQoFW07qJahTRapVsVfKJb/RHBqnbWABqJeTxtx4hea6S+djKHPQqsLZB2wsdB9gKW9KIil+nqdYy4Yt3AOIphGGe9rtqEKs+owGu5PUhv83d1td9uRj2VypGqhOFNeK+BgynS/5+bLNE9nDSS5v+Rcx370Uzy5q8Ik9+/43BQjhRtoBrtHzp7oaviF3tQd6HoqrF6VcVhLoNqX8qPhWvG05itUzha6WgLa6SudoTYfvmeLEXk/Op1Bw7vzvu9IKHlgyUbvyR70UXVMWaS6q/NxlJ32+SZzgfzsrOK405kZr+RwkxD5yp3EezMYaDdJ8EZwGBCMfyMdKsUmUkfvLS6oatjtKs8ps9Ew5hn/u+ZBrIzUEiMDQzVbdn+Uw3Cb9rLV20UHKyv2zcc7xy251/TjZ6/kfCfZ+QZu/rpL7887Ychog8y2ocR3IVVc/XqDwhWaQ+K7s1UvTcxT7f6iW71xxerwvW61Z9SudUEnRzM1N/9EU4IjQKLcNVEXW2UpPUNtudCAL5loCrXhUJa4HC0aP+J0hqrkx4LeU8UW66pe8ZwWpoAbp4Z4GXU1JG6knr9ypXlGg/p6NJeh49z3NAT8hYpfqeysp+/EQ6h3AnKy+NOyhx4ZWt4AadYoD3QHffNR5i7rZwvttS4tLqepVxmMuNCv8xkIMP+KYpu32CpVtxsiOfN+1+vH68xVOaYDLoeC7D+oP5PDHhoC3uijKtWLGWaeYsxXlr5KB+Z/vxFO0l5+PWBzvDq6PPlH3yHhz8/XIady2pXbpRzezPo/Y6tBkpc5iJT2w3NaUGalI4mwhoCbS5Lh//oGk0tZRqTguw7YvnbuzOzNlfFefksnjpnRvXWjjXr947smDPLxmsKn9/BCqL2jI0+VVhzO72g4UTVhuWxa9IzmN9RCVnXM7JuFyNQjV0W76Gsmb9h3pzN3uefpMAe7UCztlFk6vrcGoKS8b94y7UWDm9YWBEKmTHZja5tp3ZPj3KTh9rx+W0sf/HRnp8qahoOd3ad6UXCO/fMTYrKULIB6UyI8G474A5Mt7pf+iEFryjcVJ67tvitSx2XJCxPE2fCAAONEKESyoH2IsCJqPlK1DlNJYoAylH7lqL9H5EC8gWyq2nYf4TsZt4sgtyUH/vGlcQD8SaqQziwcGNFXmb3earlwGFo7//Y3X12KR9MwpY0Ikto30ifZRZkNXbM1kqWH7mn550E08nS8aNm4OEdlyYOH2c5Y66Z8gT+YqBQ+RvHeuX/cQNHqeZgB2LY8nh/vA+3yzjAUMtpE517yrXRlJ744IDwbHIHAuyUtpTAHb5tsxWTvSbz+e2AZTeeG0qD7WXs1nNf1eq7f+2/cYB2ayfOEIdYmuOPg8+pXKVIp1S0SpBQ/tS++vPXxyiX1DLHDcmmA5F7FnWE+TulevH5rXz+gi01eD7esW+faofqSEj9hj/u5W/w7Kh1WT9vzia38vd2OEEszAJOSZoZxoDaSCakb7Vaz2qHQ4rpmPsPby/8ZkWcf2vmwsKghQWBj42+ia4Ke6V+zaXQxCjSW33k8baYfWH+Of4b7/CzwsJWOnvPjFsQsNy22mFtzI49fl7LYlakXN2UXBM6dPj8DUFrGqK5fVvosqQJ/86SDAfkZP0ypcPtpGzG6BmzPMIc/CY4znIwDRjgUgbNzzieehApX+POm2YmXF8LIW5ShZBEyCkYZYaOdt7+sJn8iOacfPpjC3IgJiiBf1UK2jVz7sR4qm9wzH/i4SDqcTgBup8PcPYBYk61aqJa04BXCnixA1S/LWhmq62VpXJd01skQbSeS/m98OoKt/UHF62OX7DFtyIrEF8np22QbRs5iuL4sasvb0uoXzuvTJGTUVnWPRlXJOGVqjiVE+fFRgGXNq5PAnykwAdpvZi61ap1ioYi0CrNHRGjIE3ZmPnpgT9Plj0hG8Kzq/O/w/5isgkpyHXUjoMdru7YemYF5F82qrv4DB5XlF+Wo5rPj60gMyvgVgvQYe39AqDDQppLaWb48HkI1emT8BmSRDU+V4h1/L4tIHTNDwf4qX440qc3xb6SRnakNfVrAzG9f4COVNA8Xcr56Ih+3mBgJBIY6mouOoMXRXCHNY46h4sTR1hYzZiLfwlIl3rQZkqnf65k3lynNW5C+bqobRXGWg8BuvOxxkOQBdBWMQKtyslaUeiBmnX9lqatqkOwNzmgq6caPI43Bfb5H70d1LeDtDO/tuPfHZ6OJqJPPgH/Mrnt/2vxAJRyra+hVYEjjZiauUrmy+Yq0Irrbr+2dHd4R80vP9Q+3Fb0W53qmyuo619TFSuum8/wHgHVRfQUR9C6Vga2QkecHHkFR5M7VYgN2KkObakzC6ta8tblpsaLhb8e6uxAy/5G5sxliOnL12xXqLryGiveiCdQPH3Iw70hJOJFhRT6/8jJjstbNNkEbtJWSBFg7cZjfPzzt+zdg1r6VUiC3kcQua5pcq2RgHsCpznuIvBwjISRWoPsrWViiUKtSZYSTpUYJO/frhWNuSm0tUDPLGzZW3uM7qrMsMHECRYjJKicRCKTVCO9MRNt0aqCKkVO5YHXm/bbV5H7qDkbflllkyj4lZ09c82R319FPc8PZ7OLSE7TD03r0Se7sK/qNLzWqqbgAtVGXAAYkwBtAr0HRQRaZMnpUSbojoEOnABDrJdRJy0R87nkXlOa0ej7Cp62PHq8DE9VeWL9ry1MnLz9ya9dDjmZSE5eq/soEY18a8QUiyKmu8hiyogq2zdRgApVPj9cyTqSnvfJkzNr2WaSXORSjqLePNpjD0EfndHGZyEg835pjUy5M++1k1cH1MjDOU4vK5E1XQ3wGJp7M8Bj6NO5hzXoWhFrTrM60WAtdDwi7aOmPx+0nk3bk3ap8cGfxz9MRj8RQyxHj8lC1EZfo1XvcmscvWSgP5SVUbukiZKuiqP2MOjwXipF2y8nbdq5IbDdJyjo8zXrLqVtXOyzxW/r3eLaz3yDfLuyKisLc2/j1ZFeC4NmTE+Y6zFv+7KoVDOh40q/1L1+EY7J8nlJURELOf7XwYAe0XsaqOygkEScTgNjxDxSDh9KXN5TDtdDF+Buhm/RT4lXfHoaWXNitOKaMxPB2d55kH6cYAhvFJ3RD6ABRNRNCtR/Rs9cqx8uJAHv1guHC9EZtDK32NNbQL7rP6TPUbMsvWPfs41jGXJo+0RmW08iCUdWuWzRgCk9vSuFntMo6uk192rAZ0N6bq0A9ibs01CNkUpUlzgpRMxNpWPb8v0HlVExfo0zKOfLDq711egIWbsq2mUWugd73QJnbw80IKenfkY9Z6fuxVCqdWUIqKOx3h//knq94PEvgf4LN7hkY5djsIPW+jM7jvrBm2lktk3C4g0J6Fb3t0AO0J0B9HqgBRZ976jRSQxSrRd3aUw9dmtl6r0jcVfnh7gW++crhxN99OvIuuwF5a5BPq+zsvw/Ghu7S12cUmfMaLmQd7x+mt2auU7aOnAzlch3NPatg90o+BY8I8pVDImFWOeDwaDlMjl6sakbaKj4r7Lqu+u3fVpC3m9vRz5HDgdtX7Cbb/FL/jfe+7cVHHZnWvLvq+YQD2nc4g3Lgf5e4LcL9iSkeqGZdVtq8zk634bt9b/VCbleudKK7y4sdQubGeectVGESkimoDzZOWbqIudan5wribGvgQDdS8lU1tx41uxV1jYnDuada548aYWzc95fzXXdu+CcfGBnSay5dsrtqi76oMiUm0CegS+gE6+SI+RQG3oFLSZ6HRUV3Hkz1T0pQBrn508iepxmrwQqDUCFgfM2AGvXeHqATdMDIIjPFqomNeLfVCMXIscP0Ox6QogK/UFGAB1hCUmkZPf1ACGGs282F6j9x1RbOOVz3PDpgZY9TTXNSEbeX8VVMgnkBskZidNZHKY6jj4mtvT1B/pgMZmF3llM7FDrjh2QpXsBj2vAQ8gbBVzGAxcNXo6DoaGGA+rD2qsReZCL6AL5NaXn7xXkd/KqEJvpqSZ9jP65cbh6/sH5NbCVWSXEoR+39q1be5ZRLDeIA/eC0z4KU+3hgilQn0zRTrRhoE3rL834WmMsmvG2dpj9Su5O5fm0au+YINKMjqo6mZlkXk39m8lXt6ZkTg3xRW5+5E8YYgc9I2GzCsMSUgyGW/m5RS/YgRZV7CT7yvYnFvjqDzObZG7jYyVcsfCnnxae5nQ9lESy6VTXv+Xx+nmHy9QbZICkWtjN9Fx1U2utYiL0Nak8gyz+mbB06QQPqcOo8aMmWI0i4D16tjHD05cbGqQJBZNn9CRylCklQQH0ACpo7+PhQe4OyF7wPhdYmS7jsnbGfebT/e/rE1hr3T7IBZuPTixcaLzg8sn8nW3nR2++RkpTC52ci9esyXdyKUgOVigCg+fOJlFbxe7rlmhm07/mn1uJctQ31Klvriu4ceeTGzfu3bpBJ7CAMAK0guUNpXYOqiDlsmzGTHXsolKJvxSrvsKL8/JUoOxl8K33SRTzNXx/FNXUSZzm9w9K1AxEoEkDmznM7CV+S3NnTZCf3BheFNjzIxDPNd7mT8fXdo7eyqMofXVUnOeK4PW+pfFkOzWPvfn5z1+3NUsxGuMVVLR5zz4O8QyIKa/SGGv2sihrSeM6xNp3Gn+419YBsbar6d73rW8n41GbzL35L4u4RSQYWRVx55ZMpFzchXPbSs/te8RxvsVNq4Fzn2k1v++Emd1TYuHFV1krb6EZl0gd2v8uafhITRSSAohMrZTTD0TMadktLtsFakaaXBeEpKUklsqloluti2JmIYtOch5tPUtenRWzCGhEPnyIlMRM9Q56/PQpGc2h8gc6y+FO1OGAinozzngVHCpLCdc5w9fRgfdIg1KpbANYPVfQTfIJOY/laiT8t8Q9+1Hrvfx8jtZIboZO730cxclW8WJvDIyu0VDlFWR3mRxAB98jxy4ou1E9q2fUd19M7U6g0gZyAm/50sl1SgkcQiyxUyrRB0qNfNAdMgX254Yud3+rrb1OAQ315BrUqV/dsVuJ3hGR+SQFSFQrmeri4p6UgRQuAoqtQGGw6fFWOCiKgLHQ8Fc7eLgSOM4C+1TClZqpd6bmKjRQoftpvlg0C1d2kBu4NhDqoImuM+d5Hz+m5zYvKFkxRJa/OqOSKnRVzxquyk8FhQ7J27gXaiC0f0FgoFdKSMx+SEo43Jkwu/and2g7QEeJdi6Avm5C/cIbgJu00r6VCfvce8zsrewM8syNyT04v/BKlnDTfu95c+e5uu7LIfctg+22V3vkLBHuupmefKPEc4Pip9onlyODixYezYtq3OlXHF4d5Ru+2C/g8I0KdrSh+L2PS7siinf83qrsKTYdD+jOkAk0FzHkzRh8Xq3oH7N1npPCxMk5jTCuXjqOjqtnRy2OCiyaE+L5+pJDX6xd90Vdwiu+Ie4FXoWdwWUDZ9Wb7CetmetR8FcjBHEnpzRbW0D2SignL9gVO7v/OSMhPTE5E1hq7sVHt41IgZJsV580U1Pak8pUloIFZkIccIIr6Z3z6g6wCAtIykmun9FBUqBKus709DQwi3tY4sfxSuXy2f6azZcipGnBIDaO02zVmasojxy/9ufTq6QN5X5AHmh0DE9Fv5ENqJAYq95Hb/I0c+wwDXY6x56C5RJNJsGn5HGjwc+t3YysVWXRisrRhFJzb8ya5+ZyuSHsgxLmkO0BSrGU0hjdtH6QTJaN5RB6901ntWIZJKnlYV1mzPBMNM8XDEIVx6WgL/rSZPRU7TgUGQ1O812g+Zh/h06a+8cPGj4g33aJDYnLdZjgcGLzrpaeb5V4adbSlQtXxG1sr1EV8N8weD4F8LzGzRCBCp/m21oLH4Qam039TWxwXJ5cqgCSSiCpOZJBKYshHwij8dmG0/JQ7STaWD2K5g9yD75Bn1vwxTPNkw1G28v2bissRJ1M4I4Av5WzQuY0La14L2Xl5ZzLNzEi61aXDEO/MFm4yzl2KjeFtnPYvmX7hgO+Uyck2brDnfmHnlXCYwncnfn3lB0t7RCTxETOoYKYpFRPqMMgUmnv1xcIAC33mVaggiHwrS30W78STs8+gah9hzX/14SaM5KXTag/URYgs1Okc8Zd1Bq/bkLTOfKFf5q6ewnBGjytI3pT1buA2D7fGFNcryS/kqgBkToUTmgRcBVpdUcCTYp+0+krSnJytL61c4ynj+Xc6dIR4xkbWu1RX1lJvu/8ojDMOtlkdvLrh1GrprjjKF8nUbQu/e/Z9JsvMB8Zogk5/YCi5n6BA/PeA9TLgPbLZtPmJAKotChr84o8vfl9L87V4YN7tzT15JhBK0rNYBrqyrkdcVqjKfue721eQqvL9x1cwGh2kdykaBcFutGTXKSeSa8CbK1AV93NgFzHygpQMcb9JtLWzF2/YzZClu1qfpfP8i2O+H55sRW9mlfg6Ys56pgJO7tRNQnfi78RpnrOmqtm4g+1sgUNok8IUQ0aptagn3Sr/Ee61Ue/wqr2WR7QvuE8XT+EXrtZfS3tYnD5tRnY08S+9SvmagBIUIyMxPTsrOUvqlifxvdj0z7a9d6PmME/qbpQxc7SSsSW7wrM8wjwPglV7NPm43/nIYM/TKeJs/lD+PCA2KcWty9OmZU5xw1QUH4U62k11l6dZdDVLepViph2WPiPdZneoz8QyHkziYT8z1w9i3b9z1n09Pi6rfYrPfcmlx6qP9SR51V1O3PTXdKOTqnqGClBWSTSJsgx2nPegZryjdlRJ3Nz3kxmXNHf5TmqC46AgXZZ+O8Ahm0UwxMeT7f6SLf66EWtQld3aFd5jLaC0c6iBz53g9S1NEP9U/8nb9Bh1cPh+Zs35/duLdLDpkMK+j+Cozp2trUVlyqbmpT9uV9Wc8fcKu1P0NVc9epfuh4L3ZVhn13RVfrdbA1+3aqgQLf6OJBbpbGHfnen+rsPuSm0I9jAGNa87xTahJYsOJ/z8z5K/IWR6itd2k07/bQ3Qynl6KTG8iqAK9Q+mhm0xeAzaHU5ZMhVRujBq6+mwWBY60+mq8uj51ApFRUNcCrAmLyXlwe0o4GLv4bLy+bcfXIIZunPPzv0cVqq1H9lEwN5DcwrIE+B7blSHwZRIbYPdUtOYW0pxXd+f6ah+JDMZ1ZSIgmolhK5NyEzE+SmfcoN7HsE1TMDOmn8DOzCQXNn5eAjZctBsz9Nf89QZCJiAgO2Bw5pcZ81Y74NnfyF7VE1J1X6Bu1NjE6aZGAZ5ha23MrHziVl7rSpsfFHWsy89m/En6ts4lM8W/Z4ZcE40OPS9yls4d/Hjj6viJ6XP2fx+x+WnFqUVrg4PdseDWUfG3f7gecRA95skMMksIkXjTNrad+pM+2jmryYTLNZfH5868q8Zp9lt99evTk75+9/Pn6QtW6FXYKTItqBz8e/qZnn5pzYGZm0PGrnsUNrdlmeiXL0bN0LyEBK+0FDp9G4p54762bN8IZyM0QKpKCa+z80bfWWnTtJA4r5+Ot3ThPy+VHk6sXpMdqfq6FeWTuGJKJ3xWS8pkDFvGHcOVAOkwfMkxg+nfma/PtMQrzHT59gOnw81j9+zWSklUMQPuuXE3R8juN0v+kwiObzl9Qap5o6p712CNWRIWg1+efkNyWR0zwr05HvUNLmGddX8oAhGjDUA4bBp87yQRDgKeR+ayuyalvvlxfcNsd5qp8tn22H8X4tKvKjYdQFXVUlk8XAUzWU/DOAJY0kPzDf0NpowOyXBlWptYQGWizihr2bNzQsiHXaGBRQFrU3zzHJ7oYB2un9xvq7Twu+ZGXuc5Ntp4V0ln932cQETconfBsXZIIMW37P4WYGsDMv2NkYbpbtObg89THSDLlxy7L9UcpYf8cUD5Zpw3zvrGoSRzqZICNy0Sz0UCq2Hqr6OTPFU1m9IGPurKyAwje3OmIBaiotJYu4PTWB9/TQ9PiF/W7a0I2vBzEmGeM67P3cwl1Va89AT/+b/UV3Nodtc1q8MfXS2tQvgoJ82oOydm5KwquLFkZEJc2TJ8+N9N+TEpQymxm7JmLJDnePuQnTZwQt9IrkvMVCyKZ6aDYledkMW5u34U/7uKYjSrJ+9Ahr56Ve3pZzbKXDJf38Ev/NQXI44DYBptdtnN7Q/g1S9724+TVfrcdiOso6g0yfnmg7efQfZH7yw4+IvrfZVEuL4eNQ8U8m+laKoP4ujzgap5rMTnmrAdUVkD84tQUrjIQYrgS5CnhjqP1zPOSGln0a6CKhSGZCHx0VinT2b8WW/Y5GnPv0BhmRmjcnvCIqINb6xF79yemznWKnTomU2YbIxoNyEKT6Bn26A71pXPR3Y8vTfGc5EUEzZbtbaGGIl+pHF5+Arr01p0IgygzjnuqiFbMJVBMKQKI5QQgE1pqTlSBDEwZRDC+vK/Du75LXpyQnnEyKXZVwaj1q6ul4WHMbvS/ctsw/0c1Pdjxlc+fi6JZ1bccxJp2LkoeifCaKORa/Ojpm55hJFavja0IgtfzMmvihWxeUU6bF2SyseFZ35Gm5ptC4r+xs7QCvr33WFry+iEZnzROx8NmAzgbgrlja39HNxVG/5yx6fdCXPj2/9euCMZnJ5Ppq1RsD2mBM70+aXosIdG/mQF/2Xx0Xe2/TaRPHgUuzbP/cGNQimDEISJO6S91mOvtA88XdOXi1YohdQVJGlU4/QCd3qT0b8X55H6ZPF4jq6ZT+lYDhf+DC5uTt48fRnLYzL+kFoTtad9f97X/1g0pA2ta0Tzim79OG2tilmYkL0WzlNr9tvs/Pnr95P/3OPuLWgVqNoUeQNGFx+NWctr0ZtQGMSTG9c/Z9sIwJoJEMxKeJmom4zixeYhXoL244/l5ps29UV1F7knKX/pyjioi8qZO3+izPnGm/Ep1WVbE/QNJ4+J/yTWQomEJ1cGTBKhfV307ePq8eKT7D3S3Tm0wiaN32nxNz/4BUXamJ07R1W0TftKelX93G7/2Be4pJnRfSqZUtnZeb0Hm5QiZCMNwRghuTqxWMGTgrF3/NuI9FH5t6sF+qvv1nxSg9sblNu4l0rLGeKarKuHXQrnZf1/3mrhkHYbp8qoIbkleQBegUJt9VnVnj2V5h4pzUVYbKwcKelCIliYQXp+VPiAl6ApgSuQk57TWJtRPyBAlF1OcmKcjN4NYWDiHqizwR3fh9lJ6l3DWu4HiQcl0qSiIu2KXnprmb47Sh5Jvvh/iMxd+Yewt+LGWYh9u6toagyKCjm06258WUYaj3Sg2c086W9CxAJ0s52KUkALRqPuBZPXhtrpmKX1eSutEjrZ2gNgfvPmGEhPHg8pLBS/NkdWaCtE8G8kZzujodq0teE/jt4EDfY6EI85rvregs6uhoLen88SnaMSL7/R1YQNiajlFMQE/XqLYa1KN6/hpRick2HtJOa+gcUkSf7oUIzPlF0E9hHxa4ZePmKaZmx0ebLb1+pK729Whl1n7Q/1j9OGXWGjSqKoeoDtY8yNcnm8Sodnh6RzyuVa3dmidiDkMU1s4/edOBC0cda580BoYGChkdS6mNQa4Adjq7sGaNLV0O7EvcOtJkS9z+akfr3dKJw8a4Ozq6jD46xsXR0c1U38qSNY8nDy4+Jn+uW5u6CTG/XUSS5RmXO5clNSyOq1vUY0x+SjgYubghaekrV9IByzVswzzBF3gMzR3F15gJ2KaqCjwxMmT/ZA4JClhv3mO2k8e7ynPhKiIzvoip5j8CvTeh8RtCh9o1SPq8R0UznJ1nTJs3D6VOd3aebjtvHl/kON3Wycl2uqP2fx7WcgDeQqAFUUkBL2RYu/v1+51V9/hTUbQXOStD0f7kPA8hX74PE89/h0PqCtkQE696iE35PlCaIrSWSJnZvPH0CWCuxyQTDxxd45YlwQaZy8M9Ul0d11g7jPWVyN3JI4fx31YNWe7oFjHF1CR2pMiSo1VN5IyU58QTg9VABaFJkYQcMRooGT3TxNVWds7jFZYGFrOtM3YGNDo5TQvwlk6TCYX5giEZoV5Zy0B+pgIeUyX4hBXyHkFc+wVWDPjfMgeF62HlsWZlvkDBLBecgZUnmhXNTgQwB+JxaGz5I5gcwRA6meh/6wIO98sOGbLWONzbK0a8dkjYTv6I/ncioKkCPWaHkAXqv/YSXs//AaUcDTsAAAEAAAAFAIMbFkmEXw889QADB9AAAAAA2wktdwAAAADdVa6+8iv8GAlQCWAAAAAGAAIAAAAAAAB42mNgZGBg3/O3hoGBM+GT9rcNnAFAEVTwAgCTpQasAHjaXdMzYOhQGIbhnGvbtm1v17Zt27Ztq7bNpbb2qe7UTvU7fOXwxPl1kmYe1hqMbuZRlcu+DNuRhJ06bo0FmIinPFfC/gl+4grey1BcV4xeWAR72YnpOKhYGzAY3WryYxmWYzhs0VfvzZIueACnevFDZRl66t5jzFTexbitHBOV28JBsRcjSYptj5Hav9WzwzG60ay2Sk09Lxv0LOp3umgOppPquY3+Ot6rPqcobxvsw3YMxGUMQGucRKd6a+RFXcWKPw85nK8De+sYWuKn+jqBWAThPa5rdjfgrxgX8RlLcARj1eNfrNd754CqKq1DIiYpfrqsREe4wAshmIXzynVfx6dh4ZNqiUckussV1Z6l/LFI0LNH8bTe9/kT76Wm3+uIlff1+OO6aA5mnmbxWvM9jSfoolq+oq3uvdds7bABQ7BF92v+iyTqKlLfz5HI+QkUcHwYS9FXfU1HtGWZrtTR13Q1y8wF8970MV3MUo4mmnHV0dcStgB42gXBAwDjQAAAsNq2t/X6tm3btm3btm3btm3bto0EgqDyUGtoMrQGegr9hdPDbeHR8Cr4IIIiTZFZyEXkIxqgldB26AR0BnoAI7FkWEusIzYF24U9wS28MT4eP49/IkKiMjGReEK8Ib6QDpmUbE+OJE+TfymaSkdVpXpQ06gd1A3aorPQI+lr9Gf6N5OEKc30ZlYx55i/bFm2BtuAbc0uZ69xOJeMq8aN5qZxC7mV3BbuLfeDx3iRL8pX4Gvzzfi5/Ap+M7+PP8lf4e/zvwRCyC10E4YIK4VvYg6xpbhafCq+lYDUUlos3ZR5ubhcXq4u95ZPKZKSS2muTFXeqDnVFmoHdYZ6Q/2h5dGKaGW0dtps7ax2VSf0QnpTfYy+T/9jFDZKG5WNHsZg46Tx0ARmFbO+OcxcZV4wP1uGlc2qbE2yHtqp7OJ2A3uEvda+6WBOMqeyM89Z6Wx09jjf3SRuJbeLu8C95N51X7gf3N9eZi+fV9Kr4o32pnkLvTXeA++1981HfN63fODn8Yv7vfwt/g3/QZAj6BwsCZ7FErHKsVGx03E0ni3eK345fjv+OMEkqiVmJQ6HcJgu7BseDT8CF5QFk8ECsBpcBC/At8iPCkQlo0pR7ahxNDAa9R/zOY7nAAAAeNpjYGRgYPjExMaQwFDBwAXmIQAzAwsALeMB5njalJDFWYQxEEAf7lxxyA13d+eC63Xd5XccCqCWrYECqIBukHyD60ZfMj5AJdcUUVBcAeRAuIBWcsKF1HInXMQC98LF9BXUC5fQWLAmXEpXgV+4lpGCGzQXQHXBrbD2yTIGJmfYJIgRx0UxxACDjNDLE+mtOCBOBMUaCWwCKG0Z1n872Bgknzik7RfxcIljYOOg6NB+XUwcpuinnxgJreERpI8QBhn6cTHI4pDijH4k0muczm9jb7zmvUfkiTzSBLAZpY8Bnf00yxywwtITffb5Zt37yf73WOqT9hERbBwSugL1Fj2PiNIj6ZBDCJsEJi4Ofdp3mj4MbGL0s80aGzwunCEVZh4AkbdX7QB42mNgZgCD/3MYjIAUIwMaAAAqlAHSAAA=) format(\"woff\");unicode-range:U+0460-052F,U+1C80-1C88,U+20B4,U+2DE0-2DFF,U+A640-A69F,U+FE2E-FE2F}@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,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) format(\"woff\");unicode-range:U+0400-045F,U+0490-0491,U+04B0-04B1,U+2116}@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,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) format(\"woff\");unicode-range:U+1F00-1FFF}@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,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) format(\"woff\");unicode-range:U+0370-03FF}@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,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) format(\"woff\");unicode-range:U+0100-024F,U+0259,U+1E00-1EFF,U+2020,U+20A0-20AB,U+20AD-20CF,U+2113,U+2C60-2C7F,U+A720-A7FF}@font-face{font-family:Fira Code;font-style:normal;font-weight:400;font-display:swap;src:url(data:font/woff;base64,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) format(\"woff\");unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+2000-206F,U+2074,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD}/*!********************************************************************************************!*\\\n  !*** css ../../../node_modules/css-loader/dist/cjs.js!../../graphiql-react/dist/style.css ***!\n  \\********************************************************************************************/.graphiql-container *{box-sizing:border-box;font-variant-ligatures:none}.graphiql-container,.CodeMirror-info,.CodeMirror-lint-tooltip,.graphiql-dialog,.graphiql-dialog-overlay,.graphiql-tooltip,[data-radix-popper-content-wrapper]{--color-primary: 320, 95%, 43%;--color-secondary: 242, 51%, 61%;--color-tertiary: 188, 100%, 36%;--color-info: 208, 100%, 46%;--color-success: 158, 60%, 42%;--color-warning: 36, 100%, 41%;--color-error: 13, 93%, 58%;--color-neutral: 219, 28%, 32%;--color-base: 219, 28%, 100%;--alpha-secondary: .76;--alpha-tertiary: .5;--alpha-background-heavy: .15;--alpha-background-medium: .1;--alpha-background-light: .07;--font-family: \"Roboto\", sans-serif;--font-family-mono: \"Fira Code\", monospace;--font-size-hint:.75rem;--font-size-inline-code:.8125rem;--font-size-body:.9375rem;--font-size-h4:1.125rem;--font-size-h3:1.375rem;--font-size-h2:1.8125rem;--font-weight-regular: 400;--font-weight-medium: 500;--line-height: 1.5;--px-2: 2px;--px-4: 4px;--px-6: 6px;--px-8: 8px;--px-10: 10px;--px-12: 12px;--px-16: 16px;--px-20: 20px;--px-24: 24px;--border-radius-2: 2px;--border-radius-4: 4px;--border-radius-8: 8px;--border-radius-12: 12px;--popover-box-shadow: 0px 6px 20px rgba(59, 76, 106, .13), 0px 1.34018px 4.46726px rgba(59, 76, 106, .0774939), 0px .399006px 1.33002px rgba(59, 76, 106, .0525061);--popover-border: none;--sidebar-width: 60px;--toolbar-width: 40px;--session-header-height: 51px}@media (prefers-color-scheme: dark){body:not(.graphiql-light) .graphiql-container,body:not(.graphiql-light) .CodeMirror-info,body:not(.graphiql-light) .CodeMirror-lint-tooltip,body:not(.graphiql-light) .graphiql-dialog,body:not(.graphiql-light) .graphiql-dialog-overlay,body:not(.graphiql-light) .graphiql-tooltip,body:not(.graphiql-light) [data-radix-popper-content-wrapper]{--color-primary: 338, 100%, 67%;--color-secondary: 243, 100%, 77%;--color-tertiary: 188, 100%, 44%;--color-info: 208, 100%, 72%;--color-success: 158, 100%, 42%;--color-warning: 30, 100%, 80%;--color-error: 13, 100%, 58%;--color-neutral: 219, 29%, 78%;--color-base: 219, 29%, 18%;--popover-box-shadow: none;--popover-border: 1px solid hsl(var(--color-neutral))}}body.graphiql-dark .graphiql-container,body.graphiql-dark .CodeMirror-info,body.graphiql-dark .CodeMirror-lint-tooltip,body.graphiql-dark .graphiql-dialog,body.graphiql-dark .graphiql-dialog-overlay,body.graphiql-dark .graphiql-tooltip,body.graphiql-dark [data-radix-popper-content-wrapper]{--color-primary: 338, 100%, 67%;--color-secondary: 243, 100%, 77%;--color-tertiary: 188, 100%, 44%;--color-info: 208, 100%, 72%;--color-success: 158, 100%, 42%;--color-warning: 30, 100%, 80%;--color-error: 13, 100%, 58%;--color-neutral: 219, 29%, 78%;--color-base: 219, 29%, 18%;--popover-box-shadow: none;--popover-border: 1px solid hsl(var(--color-neutral))}.graphiql-container,.CodeMirror-info,.CodeMirror-lint-tooltip,.graphiql-dialog,.graphiql-container:is(button),.CodeMirror-info:is(button),.CodeMirror-lint-tooltip:is(button),.graphiql-dialog:is(button){color:hsla(var(--color-neutral),1);font-family:var(--font-family);font-size:var(--font-size-body);font-weight:var(----font-weight-regular);line-height:var(--line-height)}.graphiql-container input,.CodeMirror-info input,.CodeMirror-lint-tooltip input,.graphiql-dialog input{color:hsla(var(--color-neutral),1);font-family:var(--font-family);font-size:var(--font-size-caption)}.graphiql-container input::placeholder,.CodeMirror-info input::placeholder,.CodeMirror-lint-tooltip input::placeholder,.graphiql-dialog input::placeholder{color:hsla(var(--color-neutral),var(--alpha-secondary))}.graphiql-container a,.CodeMirror-info a,.CodeMirror-lint-tooltip a,.graphiql-dialog a{color:hsl(var(--color-primary))}.graphiql-container a:focus,.CodeMirror-info a:focus,.CodeMirror-lint-tooltip a:focus,.graphiql-dialog a:focus{outline:hsl(var(--color-primary)) auto 1px}.graphiql-un-styled,button.graphiql-un-styled{all:unset;border-radius:var(--border-radius-4);cursor:pointer}:is(.graphiql-un-styled,button.graphiql-un-styled):hover{background-color:hsla(var(--color-neutral),var(--alpha-background-light))}:is(.graphiql-un-styled,button.graphiql-un-styled):active{background-color:hsla(var(--color-neutral),var(--alpha-background-medium))}:is(.graphiql-un-styled,button.graphiql-un-styled):focus{outline:hsla(var(--color-neutral),var(--alpha-background-heavy)) auto 1px}.graphiql-button,button.graphiql-button{background-color:hsla(var(--color-neutral),var(--alpha-background-light));border:none;border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),1);cursor:pointer;font-size:var(--font-size-body);padding:var(--px-8) var(--px-12)}:is(.graphiql-button,button.graphiql-button):hover,:is(.graphiql-button,button.graphiql-button):active{background-color:hsla(var(--color-neutral),var(--alpha-background-medium))}:is(.graphiql-button,button.graphiql-button):focus{outline:hsla(var(--color-neutral),var(--alpha-background-heavy)) auto 1px}.graphiql-button-success:is(.graphiql-button,button.graphiql-button){background-color:hsla(var(--color-success),var(--alpha-background-heavy))}.graphiql-button-error:is(.graphiql-button,button.graphiql-button){background-color:hsla(var(--color-error),var(--alpha-background-heavy))}.graphiql-button-group{background-color:hsla(var(--color-neutral),var(--alpha-background-light));border-radius:calc(var(--border-radius-4) + var(--px-4));display:flex;padding:var(--px-4)}.graphiql-button-group>button.graphiql-button{background-color:transparent}.graphiql-button-group>button.graphiql-button:hover{background-color:hsla(var(--color-neutral),var(--alpha-background-light))}.graphiql-button-group>button.graphiql-button.active{background-color:hsl(var(--color-base));cursor:default}.graphiql-button-group>*+*{margin-left:var(--px-8)}.graphiql-dialog-overlay{position:fixed;top:0;right:0;bottom:0;left:0;background-color:hsla(var(--color-neutral),var(--alpha-background-heavy));z-index:10}.graphiql-dialog{background-color:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-12);box-shadow:var(--popover-box-shadow);margin:0;max-height:80vh;max-width:80vw;overflow:auto;padding:0;width:unset;transform:translate(-50%,-50%);top:50%;left:50%;position:fixed;z-index:10}.graphiql-dialog-close>svg{color:hsla(var(--color-neutral),var(--alpha-secondary));display:block;height:var(--px-12);padding:var(--px-12);width:var(--px-12)}.graphiql-dropdown-content{background-color:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-8);box-shadow:var(--popover-box-shadow);font-size:inherit;max-width:250px;padding:var(--px-4);font-family:var(--font-family);color:hsl(var(--color-neutral));max-height:min(calc(var(--radix-dropdown-menu-content-available-height) - 10px),400px);overflow-y:scroll}.graphiql-dropdown-item{border-radius:var(--border-radius-4);font-size:inherit;margin:var(--px-4);overflow:hidden;padding:var(--px-6) var(--px-8);text-overflow:ellipsis;white-space:nowrap;outline:none;cursor:pointer;line-height:var(--line-height)}.graphiql-dropdown-item[data-selected],.graphiql-dropdown-item[data-current-nav],.graphiql-dropdown-item:hover{background-color:hsla(var(--color-neutral),var(--alpha-background-light));color:inherit}.graphiql-dropdown-item:not(:first-child){margin-top:0}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) blockquote{margin-left:0;margin-right:0;padding-left:var(--px-8)}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) code,:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) pre{border-radius:var(--border-radius-4);font-family:var(--font-family-mono);font-size:var(--font-size-inline-code)}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) code{padding:var(--px-2)}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) pre{overflow:auto;padding:var(--px-6) var(--px-8)}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) pre code{background-color:initial;border-radius:0;padding:0}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) ol,:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) ul{padding-left:var(--px-16)}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) ol{list-style-type:decimal}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) ul{list-style-type:disc}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation) img{border-radius:var(--border-radius-4);max-height:120px;max-width:100%}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation)>:first-child{margin-top:0}:is(.graphiql-markdown-description,.graphiql-markdown-deprecation,.CodeMirror-hint-information-description,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-description,.CodeMirror-info .info-deprecation)>:last-child{margin-bottom:0}:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description) a{color:hsl(var(--color-primary));text-decoration:none}:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description) a:hover{text-decoration:underline}:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description) blockquote{border-left:1.5px solid hsla(var(--color-neutral),var(--alpha-tertiary))}:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description) code,:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description) pre{background-color:hsla(var(--color-neutral),var(--alpha-background-light));color:hsla(var(--color-neutral),1)}:is(.graphiql-markdown-description,.CodeMirror-hint-information-description,.CodeMirror-info .info-description)>*{margin:var(--px-12) 0}:is(.graphiql-markdown-deprecation,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation) a{color:hsl(var(--color-warning));text-decoration:underline}:is(.graphiql-markdown-deprecation,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation) blockquote{border-left:1.5px solid hsl(var(--color-warning))}:is(.graphiql-markdown-deprecation,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation) code,:is(.graphiql-markdown-deprecation,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation) pre{background-color:hsla(var(--color-warning),var(--alpha-background-heavy))}:is(.graphiql-markdown-deprecation,.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation)>*{margin:var(--px-8) 0}.graphiql-markdown-preview>:not(:first-child){display:none}.CodeMirror-hint-information-deprecation,.CodeMirror-info .info-deprecation{background-color:hsla(var(--color-warning),var(--alpha-background-light));border:1px solid hsl(var(--color-warning));border-radius:var(--border-radius-4);color:hsl(var(--color-warning));margin-top:var(--px-12);padding:var(--px-6) var(--px-8)}.CodeMirror-hint-information-deprecation-label,.CodeMirror-info .info-deprecation-label{font-size:var(--font-size-hint);font-weight:var(--font-weight-medium)}.CodeMirror-hint-information-deprecation-reason,.CodeMirror-info .info-deprecation-reason{margin-top:var(--px-6)}.graphiql-spinner{height:56px;margin:auto;margin-top:var(--px-16);width:56px}.graphiql-spinner:after{animation:rotation .8s linear 0s infinite;border:4px solid transparent;border-radius:100%;border-top:4px solid hsla(var(--color-neutral),var(--alpha-tertiary));content:\"\";display:inline-block;height:46px;vertical-align:middle;width:46px}@keyframes rotation{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.graphiql-tooltip{background:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-4);box-shadow:var(--popover-box-shadow);color:hsl(var(--color-neutral));font-size:inherit;padding:var(--px-4) var(--px-6);font-family:var(--font-family)}.graphiql-tabs{display:flex;align-items:center;overflow-x:auto;padding:var(--px-12)}.graphiql-tabs>:not(:first-child){margin-left:var(--px-12)}.graphiql-tab{align-items:stretch;border-radius:var(--border-radius-8);color:hsla(var(--color-neutral),var(--alpha-secondary));display:flex}.graphiql-tab>button.graphiql-tab-close{visibility:hidden}.graphiql-tab.graphiql-tab-active>button.graphiql-tab-close,.graphiql-tab:hover>button.graphiql-tab-close,.graphiql-tab:focus-within>button.graphiql-tab-close{visibility:unset}.graphiql-tab.graphiql-tab-active{background-color:hsla(var(--color-neutral),var(--alpha-background-heavy));color:hsla(var(--color-neutral),1)}button.graphiql-tab-button{padding:var(--px-4) 0 var(--px-4) var(--px-8)}button.graphiql-tab-close{align-items:center;display:flex;padding:var(--px-4) var(--px-8)}button.graphiql-tab-close>svg{height:var(--px-8);width:var(--px-8)}.graphiql-history-header{font-size:var(--font-size-h2);font-weight:var(--font-weight-medium);display:flex;justify-content:space-between;align-items:center}.graphiql-history-header button{font-size:var(--font-size-inline-code);padding:var(--px-6) var(--px-10)}.graphiql-history-items{margin:var(--px-16) 0 0;list-style:none;padding:0}.graphiql-history-item{border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),var(--alpha-secondary));display:flex;font-size:var(--font-size-inline-code);font-family:var(--font-family-mono);height:34px}.graphiql-history-item:hover{color:hsla(var(--color-neutral),1);background-color:hsla(var(--color-neutral),var(--alpha-background-light))}.graphiql-history-item:not(:first-child){margin-top:var(--px-4)}.graphiql-history-item.editable{background-color:hsla(var(--color-primary),var(--alpha-background-medium))}.graphiql-history-item.editable>input{background:transparent;border:none;flex:1;margin:0;outline:none;padding:0 var(--px-10);width:100%}.graphiql-history-item.editable>input::placeholder{color:hsla(var(--color-neutral),var(--alpha-secondary))}.graphiql-history-item.editable>button{color:hsl(var(--color-primary));padding:0 var(--px-10)}.graphiql-history-item.editable>button:active{background-color:hsla(var(--color-primary),var(--alpha-background-heavy))}.graphiql-history-item.editable>button:focus{outline:hsl(var(--color-primary)) auto 1px}.graphiql-history-item.editable>button>svg{display:block}button.graphiql-history-item-label{flex:1;padding:var(--px-8) var(--px-10);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}button.graphiql-history-item-action{align-items:center;color:hsla(var(--color-neutral),var(--alpha-secondary));display:flex;padding:var(--px-8) var(--px-6)}button.graphiql-history-item-action:hover{color:hsla(var(--color-neutral),1)}button.graphiql-history-item-action>svg{height:14px;width:14px}.graphiql-history-item-spacer{height:var(--px-16)}.graphiql-doc-explorer-default-value{color:hsl(var(--color-success))}a.graphiql-doc-explorer-type-name{color:hsl(var(--color-warning));text-decoration:none}a.graphiql-doc-explorer-type-name:hover{text-decoration:underline}a.graphiql-doc-explorer-type-name:focus{outline:hsl(var(--color-warning)) auto 1px}.graphiql-doc-explorer-argument>*+*{margin-top:var(--px-12)}.graphiql-doc-explorer-argument-name{color:hsl(var(--color-secondary))}.graphiql-doc-explorer-argument-deprecation{background-color:hsla(var(--color-warning),var(--alpha-background-light));border:1px solid hsl(var(--color-warning));border-radius:var(--border-radius-4);color:hsl(var(--color-warning));padding:var(--px-8)}.graphiql-doc-explorer-argument-deprecation-label{font-size:var(--font-size-hint);font-weight:var(--font-weight-medium)}.graphiql-doc-explorer-deprecation{background-color:hsla(var(--color-warning),var(--alpha-background-light));border:1px solid hsl(var(--color-warning));border-radius:var(--px-4);color:hsl(var(--color-warning));padding:var(--px-8)}.graphiql-doc-explorer-deprecation-label{font-size:var(--font-size-hint);font-weight:var(--font-weight-medium)}.graphiql-doc-explorer-directive{color:hsl(var(--color-secondary))}.graphiql-doc-explorer-section-title{align-items:center;display:flex;font-size:var(--font-size-hint);font-weight:var(--font-weight-medium);line-height:1}.graphiql-doc-explorer-section-title>svg{height:var(--px-16);margin-right:var(--px-8);width:var(--px-16)}.graphiql-doc-explorer-section-content{margin-left:var(--px-8);margin-top:var(--px-16)}.graphiql-doc-explorer-section-content>*+*{margin-top:var(--px-16)}.graphiql-doc-explorer-root-type{color:hsl(var(--color-info))}.graphiql-doc-explorer-search{color:hsla(var(--color-neutral),var(--alpha-secondary))}.graphiql-doc-explorer-search:not([data-state=idle]){border:var(--popover-border);border-radius:var(--border-radius-4);box-shadow:var(--popover-box-shadow);color:hsla(var(--color-neutral),1)}.graphiql-doc-explorer-search:not([data-state=idle]) .graphiql-doc-explorer-search-input{background:hsl(var(--color-base))}.graphiql-doc-explorer-search-input{align-items:center;background-color:hsla(var(--color-neutral),var(--alpha-background-light));border-radius:var(--border-radius-4);display:flex;padding:var(--px-8) var(--px-12)}.graphiql-doc-explorer-search [role=combobox]{border:none;background-color:transparent;margin-left:var(--px-4);width:100%}.graphiql-doc-explorer-search [role=combobox]:focus{outline:none}.graphiql-doc-explorer-search [role=listbox]{background-color:hsl(var(--color-base));border:none;border-bottom-left-radius:var(--border-radius-4);border-bottom-right-radius:var(--border-radius-4);border-top:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));max-height:400px;overflow-y:auto;margin:0;font-size:var(--font-size-body);padding:var(--px-4);position:relative}.graphiql-doc-explorer-search [role=option]{border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),var(--alpha-secondary));overflow-x:hidden;padding:var(--px-8) var(--px-12);text-overflow:ellipsis;white-space:nowrap;cursor:pointer}.graphiql-doc-explorer-search [role=option][data-headlessui-state=active]{background-color:hsla(var(--color-neutral),var(--alpha-background-light))}.graphiql-doc-explorer-search [role=option]:hover{background-color:hsla(var(--color-neutral),var(--alpha-background-medium))}.graphiql-doc-explorer-search [role=option][data-headlessui-state=active]:hover{background-color:hsla(var(--color-neutral),var(--alpha-background-heavy))}:is(.graphiql-doc-explorer-search [role=option])+:is(.graphiql-doc-explorer-search [role=option]){margin-top:var(--px-4)}.graphiql-doc-explorer-search-type{color:hsl(var(--color-info))}.graphiql-doc-explorer-search-field{color:hsl(var(--color-warning))}.graphiql-doc-explorer-search-argument{color:hsl(var(--color-secondary))}.graphiql-doc-explorer-search-divider{color:hsla(var(--color-neutral),var(--alpha-secondary));font-size:var(--font-size-hint);font-weight:var(--font-weight-medium);margin-top:var(--px-8);padding:var(--px-8) var(--px-12)}.graphiql-doc-explorer-search-empty{color:hsla(var(--color-neutral),var(--alpha-secondary));padding:var(--px-8) var(--px-12)}a.graphiql-doc-explorer-field-name{color:hsl(var(--color-info));text-decoration:none}a.graphiql-doc-explorer-field-name:hover{text-decoration:underline}a.graphiql-doc-explorer-field-name:focus{outline:hsl(var(--color-info)) auto 1px}.graphiql-doc-explorer-item>:not(:first-child){margin-top:var(--px-12)}.graphiql-doc-explorer-argument-multiple{margin-left:var(--px-8)}.graphiql-doc-explorer-enum-value{color:hsl(var(--color-info))}.graphiql-doc-explorer-header{display:flex;justify-content:space-between;position:relative}.graphiql-doc-explorer-header:focus-within .graphiql-doc-explorer-title{visibility:hidden}.graphiql-doc-explorer-header:focus-within .graphiql-doc-explorer-back:not(:focus){color:transparent}.graphiql-doc-explorer-header-content{display:flex;flex-direction:column;min-width:0}.graphiql-doc-explorer-search{position:absolute;right:0;top:0}.graphiql-doc-explorer-search:focus-within{left:0}.graphiql-doc-explorer-search [role=combobox]{height:24px;width:4ch}.graphiql-doc-explorer-search [role=combobox]:focus{width:100%}a.graphiql-doc-explorer-back{align-items:center;color:hsla(var(--color-neutral),var(--alpha-secondary));display:flex;text-decoration:none}a.graphiql-doc-explorer-back:hover{text-decoration:underline}a.graphiql-doc-explorer-back:focus{outline:hsla(var(--color-neutral),var(--alpha-secondary)) auto 1px}a.graphiql-doc-explorer-back:focus+.graphiql-doc-explorer-title{visibility:unset}a.graphiql-doc-explorer-back>svg{height:var(--px-8);margin-right:var(--px-8);width:var(--px-8)}.graphiql-doc-explorer-title{font-weight:var(--font-weight-medium);font-size:var(--font-size-h2);overflow-x:hidden;text-overflow:ellipsis;white-space:nowrap}.graphiql-doc-explorer-title:not(:first-child){font-size:var(--font-size-h3);margin-top:var(--px-8)}.graphiql-doc-explorer-content>*{color:hsla(var(--color-neutral),var(--alpha-secondary));margin-top:var(--px-20)}.graphiql-doc-explorer-error{background-color:hsla(var(--color-error),var(--alpha-background-heavy));border:1px solid hsl(var(--color-error));border-radius:var(--border-radius-8);color:hsl(var(--color-error));padding:var(--px-8) var(--px-12)}.CodeMirror{font-family:monospace;height:300px;color:#000;direction:ltr}.CodeMirror-lines{padding:4px 0}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{padding:0 4px}.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{background-color:#fff}.CodeMirror-gutters{border-right:1px solid #ddd;background-color:#f7f7f7;white-space:nowrap}.CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:#999;white-space:nowrap}.CodeMirror-guttermarker{color:#000}.CodeMirror-guttermarker-subtle{color:#999}.CodeMirror-cursor{border-left:1px solid black;border-right:none;width:0}.CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.cm-fat-cursor div.CodeMirror-cursors{z-index:1}.cm-fat-cursor .CodeMirror-line::selection,.cm-fat-cursor .CodeMirror-line>span::selection,.cm-fat-cursor .CodeMirror-line>span>span::selection{background:transparent}.cm-fat-cursor .CodeMirror-line::-moz-selection,.cm-fat-cursor .CodeMirror-line>span::-moz-selection,.cm-fat-cursor .CodeMirror-line>span>span::-moz-selection{background:transparent}.cm-fat-cursor{caret-color:transparent}@-moz-keyframes blink{50%{background-color:transparent}}@-webkit-keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}.cm-tab{display:inline-block;text-decoration:inherit}.CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:0;overflow:hidden}.CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.cm-s-default .cm-header{color:#00f}.cm-s-default .cm-quote{color:#090}.cm-negative{color:#d44}.cm-positive{color:#292}.cm-header,.cm-strong{font-weight:700}.cm-em{font-style:italic}.cm-link{text-decoration:underline}.cm-strikethrough{text-decoration:line-through}.cm-s-default .cm-keyword{color:#708}.cm-s-default .cm-atom{color:#219}.cm-s-default .cm-number{color:#164}.cm-s-default .cm-def{color:#00f}.cm-s-default .cm-variable-2{color:#05a}.cm-s-default .cm-variable-3,.cm-s-default .cm-type{color:#085}.cm-s-default .cm-comment{color:#a50}.cm-s-default .cm-string{color:#a11}.cm-s-default .cm-string-2{color:#f50}.cm-s-default .cm-meta,.cm-s-default .cm-qualifier{color:#555}.cm-s-default .cm-builtin{color:#30a}.cm-s-default .cm-bracket{color:#997}.cm-s-default .cm-tag{color:#170}.cm-s-default .cm-attribute{color:#00c}.cm-s-default .cm-hr{color:#999}.cm-s-default .cm-link{color:#00c}.cm-s-default .cm-error,.cm-invalidchar{color:red}.CodeMirror-composing{border-bottom:2px solid}div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.CodeMirror-activeline-background{background:#e8f2ff}.CodeMirror{position:relative;overflow:hidden;background:white}.CodeMirror-scroll{overflow:scroll!important;margin-bottom:-50px;margin-right:-50px;padding-bottom:50px;height:100%;outline:none;position:relative;z-index:0}.CodeMirror-sizer{position:relative;border-right:50px solid transparent}.CodeMirror-vscrollbar,.CodeMirror-hscrollbar,.CodeMirror-scrollbar-filler,.CodeMirror-gutter-filler{position:absolute;z-index:6;display:none;outline:none}.CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.CodeMirror-scrollbar-filler{right:0;bottom:0}.CodeMirror-gutter-filler{left:0;bottom:0}.CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-50px}.CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:none!important;border:none!important}.CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.CodeMirror-gutter-wrapper ::selection{background-color:transparent}.CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.CodeMirror-lines{cursor:text;min-height:1px}.CodeMirror pre.CodeMirror-line,.CodeMirror pre.CodeMirror-line-like{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0;border-width:0;background:transparent;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;-webkit-font-variant-ligatures:contextual;font-variant-ligatures:contextual}.CodeMirror-wrap pre.CodeMirror-line,.CodeMirror-wrap pre.CodeMirror-line-like{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.CodeMirror-rtl pre{direction:rtl}.CodeMirror-code{outline:none}.CodeMirror-scroll,.CodeMirror-sizer,.CodeMirror-gutter,.CodeMirror-gutters,.CodeMirror-linenumber{-moz-box-sizing:content-box;box-sizing:content-box}.CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.CodeMirror-cursor{position:absolute;pointer-events:none}.CodeMirror-measure pre{position:static}div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}div.CodeMirror-dragcursors,.CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.CodeMirror-selected{background:#d9d9d9}.CodeMirror-focused .CodeMirror-selected{background:#d7d4f0}.CodeMirror-crosshair{cursor:crosshair}.CodeMirror-line::selection,.CodeMirror-line>span::selection,.CodeMirror-line>span>span::selection{background:#d7d4f0}.CodeMirror-line::-moz-selection,.CodeMirror-line>span::-moz-selection,.CodeMirror-line>span>span::-moz-selection{background:#d7d4f0}.cm-searching{background-color:#ffa;background-color:#ff06}.cm-force-border{padding-right:.1px}@media print{.CodeMirror div.CodeMirror-cursors{visibility:hidden}}.cm-tab-wrap-hack:after{content:\"\"}span.CodeMirror-selectedtext{background:none}.graphiql-container .CodeMirror{height:100%;position:absolute;width:100%}.graphiql-container .CodeMirror{font-family:var(--font-family-mono)}.graphiql-container .CodeMirror,.graphiql-container .CodeMirror-gutters{background:none;background-color:var(--editor-background, hsl(var(--color-base)))}.graphiql-container .CodeMirror-linenumber{padding:0}.graphiql-container .CodeMirror-gutters{border:none}.cm-s-graphiql{color:hsla(var(--color-neutral),var(--alpha-tertiary))}.cm-s-graphiql .cm-keyword{color:hsl(var(--color-primary))}.cm-s-graphiql .cm-def{color:hsl(var(--color-tertiary))}.cm-s-graphiql .cm-punctuation{color:hsla(var(--color-neutral),var(--alpha-tertiary))}.cm-s-graphiql .cm-variable{color:hsl(var(--color-secondary))}.cm-s-graphiql .cm-atom{color:hsl(var(--color-tertiary))}.cm-s-graphiql .cm-number{color:hsl(var(--color-success))}.cm-s-graphiql .cm-string{color:hsl(var(--color-warning))}.cm-s-graphiql .cm-builtin{color:hsl(var(--color-success))}.cm-s-graphiql .cm-string-2{color:hsl(var(--color-secondary))}.cm-s-graphiql .cm-attribute,.cm-s-graphiql .cm-meta{color:hsl(var(--color-tertiary))}.cm-s-graphiql .cm-property{color:hsl(var(--color-info))}.cm-s-graphiql .cm-qualifier{color:hsl(var(--color-secondary))}.cm-s-graphiql .cm-comment{color:hsla(var(--color-neutral),var(--alpha-secondary))}.cm-s-graphiql .cm-ws{color:hsla(var(--color-neutral),var(--alpha-tertiary))}.cm-s-graphiql .cm-invalidchar{color:hsl(var(--color-error))}.cm-s-graphiql .CodeMirror-cursor{border-left:2px solid hsla(var(--color-neutral),var(--alpha-secondary))}.cm-s-graphiql .CodeMirror-linenumber{color:hsla(var(--color-neutral),var(--alpha-tertiary))}.graphiql-container div.CodeMirror span.CodeMirror-matchingbracket,.graphiql-container div.CodeMirror span.CodeMirror-nonmatchingbracket{color:hsl(var(--color-warning))}.graphiql-container .CodeMirror-selected,.graphiql-container .CodeMirror-focused .CodeMirror-selected{background:hsla(var(--color-neutral),var(--alpha-background-heavy))}.graphiql-container .CodeMirror-dialog{background:inherit;color:inherit;left:0;right:0;overflow:hidden;padding:var(--px-2) var(--px-6);position:absolute;z-index:6}.graphiql-container .CodeMirror-dialog-top{border-bottom:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));padding-bottom:var(--px-12);top:0}.graphiql-container .CodeMirror-dialog-bottom{border-top:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));bottom:0;padding-top:var(--px-12)}.graphiql-container .CodeMirror-search-hint{display:none}.graphiql-container .CodeMirror-dialog input{border:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));border-radius:var(--border-radius-4);padding:var(--px-4)}.graphiql-container .CodeMirror-dialog input:focus{outline:hsl(var(--color-primary)) solid 2px}.graphiql-container .cm-searching{background-color:hsla(var(--color-warning),var(--alpha-background-light));padding-bottom:1.5px;padding-top:.5px}.CodeMirror-foldmarker{color:#00f;text-shadow:#b9f 1px 1px 2px,#b9f -1px -1px 2px,#b9f 1px -1px 2px,#b9f -1px 1px 2px;font-family:arial;line-height:.3;cursor:pointer}.CodeMirror-foldgutter{width:.7em}.CodeMirror-foldgutter-open,.CodeMirror-foldgutter-folded{cursor:pointer}.CodeMirror-foldgutter-open:after{content:\"▾\"}.CodeMirror-foldgutter-folded:after{content:\"▸\"}.CodeMirror-foldgutter{width:var(--px-12)}.CodeMirror-foldmarker{background-color:hsl(var(--color-info));border-radius:var(--border-radius-4);color:hsl(var(--color-base));font-family:inherit;margin:0 var(--px-4);padding:0 var(--px-8);text-shadow:none}.CodeMirror-foldgutter-open,.CodeMirror-foldgutter-folded{color:hsla(var(--color-neutral),var(--alpha-tertiary))}.CodeMirror-foldgutter-open:after,.CodeMirror-foldgutter-folded:after{margin:0 var(--px-2)}.graphiql-editor{height:100%;position:relative;width:100%}.graphiql-editor.hidden{left:-9999px;position:absolute;top:-9999px;visibility:hidden}.CodeMirror-lint-markers{width:16px}.CodeMirror-lint-tooltip{background-color:#ffd;border:1px solid black;border-radius:4px;color:#000;font-family:monospace;font-size:10pt;overflow:hidden;padding:2px 5px;position:fixed;white-space:pre;white-space:pre-wrap;z-index:100;max-width:600px;opacity:0;transition:opacity .4s;-moz-transition:opacity .4s;-webkit-transition:opacity .4s;-o-transition:opacity .4s;-ms-transition:opacity .4s}.CodeMirror-lint-mark{background-position:left bottom;background-repeat:repeat-x}.CodeMirror-lint-mark-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJFhQXEbhTg7YAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAMklEQVQI12NkgIIvJ3QXMjAwdDN+OaEbysDA4MPAwNDNwMCwiOHLCd1zX07o6kBVGQEAKBANtobskNMAAAAASUVORK5CYII=)}.CodeMirror-lint-mark-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAADCAYAAAC09K7GAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJDw4cOCW1/KIAAAAZdEVYdENvbW1lbnQAQ3JlYXRlZCB3aXRoIEdJTVBXgQ4XAAAAHElEQVQI12NggIL/DAz/GdA5/xkY/qPKMDAwAADLZwf5rvm+LQAAAABJRU5ErkJggg==)}.CodeMirror-lint-marker{background-position:center center;background-repeat:no-repeat;cursor:pointer;display:inline-block;height:16px;width:16px;vertical-align:middle;position:relative}.CodeMirror-lint-message{padding-left:18px;background-position:top left;background-repeat:no-repeat}.CodeMirror-lint-marker-warning,.CodeMirror-lint-message-warning{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAANlBMVEX/uwDvrwD/uwD/uwD/uwD/uwD/uwD/uwD/uwD6twD/uwAAAADurwD2tQD7uAD+ugAAAAD/uwDhmeTRAAAADHRSTlMJ8mN1EYcbmiixgACm7WbuAAAAVklEQVR42n3PUQqAIBBFUU1LLc3u/jdbOJoW1P08DA9Gba8+YWJ6gNJoNYIBzAA2chBth5kLmG9YUoG0NHAUwFXwO9LuBQL1giCQb8gC9Oro2vp5rncCIY8L8uEx5ZkAAAAASUVORK5CYII=)}.CodeMirror-lint-marker-error,.CodeMirror-lint-message-error{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAHlBMVEW7AAC7AACxAAC7AAC7AAAAAAC4AAC5AAD///+7AAAUdclpAAAABnRSTlMXnORSiwCK0ZKSAAAATUlEQVR42mWPOQ7AQAgDuQLx/z8csYRmPRIFIwRGnosRrpamvkKi0FTIiMASR3hhKW+hAN6/tIWhu9PDWiTGNEkTtIOucA5Oyr9ckPgAWm0GPBog6v4AAAAASUVORK5CYII=)}.CodeMirror-lint-marker-multiple{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAMAAADzjKfhAAAACVBMVEUAAAAAAAC/v7914kyHAAAAAXRSTlMAQObYZgAAACNJREFUeNo1ioEJAAAIwmz/H90iFFSGJgFMe3gaLZ0od+9/AQZ0ADosbYraAAAAAElFTkSuQmCC);background-repeat:no-repeat;background-position:right bottom;width:100%;height:100%}.CodeMirror-lint-line-error{background-color:#b74c5114}.CodeMirror-lint-line-warning{background-color:#ffd3001a}.CodeMirror-lint-mark-error,.CodeMirror-lint-mark-warning{background-repeat:repeat-x;background-size:10px 3px;background-position:0 95%}.cm-s-graphiql .CodeMirror-lint-mark-error{color:hsl(var(--color-error))}.CodeMirror-lint-mark-error{background-image:linear-gradient(45deg,transparent 65%,hsl(var(--color-error)) 80%,transparent 90%),linear-gradient(135deg,transparent 5%,hsl(var(--color-error)) 15%,transparent 25%),linear-gradient(135deg,transparent 45%,hsl(var(--color-error)) 55%,transparent 65%),linear-gradient(45deg,transparent 25%,hsl(var(--color-error)) 35%,transparent 50%)}.cm-s-graphiql .CodeMirror-lint-mark-warning{color:hsl(var(--color-warning))}.CodeMirror-lint-mark-warning{background-image:linear-gradient(45deg,transparent 65%,hsl(var(--color-warning)) 80%,transparent 90%),linear-gradient(135deg,transparent 5%,hsl(var(--color-warning)) 15%,transparent 25%),linear-gradient(135deg,transparent 45%,hsl(var(--color-warning)) 55%,transparent 65%),linear-gradient(45deg,transparent 25%,hsl(var(--color-warning)) 35%,transparent 50%)}.CodeMirror-lint-tooltip{background-color:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-8);box-shadow:var(--popover-box-shadow);font-size:var(--font-size-body);font-family:var(--font-family);max-width:600px;overflow:hidden;padding:var(--px-12)}.CodeMirror-lint-message-error,.CodeMirror-lint-message-warning{background-image:none;padding:0}.CodeMirror-lint-message-error{color:hsl(var(--color-error))}.CodeMirror-lint-message-warning{color:hsl(var(--color-warning))}.CodeMirror-hints{position:absolute;z-index:10;overflow:hidden;list-style:none;margin:0;padding:2px;-webkit-box-shadow:2px 3px 5px rgba(0,0,0,.2);-moz-box-shadow:2px 3px 5px rgba(0,0,0,.2);box-shadow:2px 3px 5px #0003;border-radius:3px;border:1px solid silver;background:white;font-size:90%;font-family:monospace;max-height:20em;overflow-y:auto}.CodeMirror-hint{margin:0;padding:0 4px;border-radius:2px;white-space:pre;color:#000;cursor:pointer}li.CodeMirror-hint-active{background:#08f;color:#fff}.CodeMirror-hints{background:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-8);box-shadow:var(--popover-box-shadow);display:grid;font-family:var(--font-family);font-size:var(--font-size-body);grid-template-columns:auto fit-content(300px);max-height:264px;padding:0}.CodeMirror-hint{border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),var(--alpha-secondary));grid-column:1 / 2;margin:var(--px-4);padding:var(--px-6) var(--px-8)!important}.CodeMirror-hint:not(:first-child){margin-top:0}li.CodeMirror-hint-active{background:hsla(var(--color-primary),var(--alpha-background-medium));color:hsl(var(--color-primary))}.CodeMirror-hint-information{border-left:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));grid-column:2 / 3;grid-row:1 / 99999;max-height:264px;overflow:auto;padding:var(--px-12)}.CodeMirror-hint-information-header{display:flex;align-items:baseline}.CodeMirror-hint-information-field-name{font-size:var(--font-size-h4);font-weight:var(--font-weight-medium)}.CodeMirror-hint-information-type-name-pill{border:1px solid hsla(var(--color-neutral),var(--alpha-tertiary));border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),var(--alpha-secondary));margin-left:var(--px-6);padding:var(--px-4)}.CodeMirror-hint-information-type-name{color:inherit;text-decoration:none}.CodeMirror-hint-information-type-name:hover{text-decoration:underline dotted}.CodeMirror-hint-information-description{color:hsla(var(--color-neutral),var(--alpha-secondary));margin-top:var(--px-12)}.CodeMirror-info{background-color:hsl(var(--color-base));border:var(--popover-border);border-radius:var(--border-radius-8);box-shadow:var(--popover-box-shadow);color:hsla(var(--color-neutral),1);max-height:300px;max-width:400px;opacity:0;overflow:auto;padding:var(--px-12);position:fixed;transition:opacity .15s;z-index:10}.CodeMirror-info a{color:inherit;text-decoration:none}.CodeMirror-info a:hover{text-decoration:underline dotted}.CodeMirror-info .CodeMirror-info-header{display:flex;align-items:baseline}.CodeMirror-info .CodeMirror-info-header>.type-name,.CodeMirror-info .CodeMirror-info-header>.field-name,.CodeMirror-info .CodeMirror-info-header>.arg-name,.CodeMirror-info .CodeMirror-info-header>.directive-name,.CodeMirror-info .CodeMirror-info-header>.enum-value{font-size:var(--font-size-h4);font-weight:var(--font-weight-medium)}.CodeMirror-info .type-name-pill{border:1px solid hsla(var(--color-neutral),var(--alpha-tertiary));border-radius:var(--border-radius-4);color:hsla(var(--color-neutral),var(--alpha-secondary));margin-left:var(--px-6);padding:var(--px-4)}.CodeMirror-info .info-description{color:hsla(var(--color-neutral),var(--alpha-secondary));margin-top:var(--px-12);overflow:hidden}.CodeMirror-jump-token{text-decoration:underline dotted;cursor:pointer}.auto-inserted-leaf.cm-property{animation-duration:6s;animation-name:insertionFade;border-radius:var(--border-radius-4);padding:var(--px-2)}@keyframes insertionFade{0%,to{background-color:none}15%,85%{background-color:hsla(var(--color-warning),var(--alpha-background-light))}}button.graphiql-toolbar-button{display:flex;align-items:center;justify-content:center;height:var(--toolbar-width);width:var(--toolbar-width)}button.graphiql-toolbar-button.error{background:hsla(var(--color-error),var(--alpha-background-heavy))}.graphiql-execute-button-wrapper{position:relative}button.graphiql-execute-button{background-color:hsl(var(--color-primary));border:none;border-radius:var(--border-radius-8);cursor:pointer;height:var(--toolbar-width);padding:0;width:var(--toolbar-width)}button.graphiql-execute-button:hover{background-color:hsla(var(--color-primary),.9)}button.graphiql-execute-button:active{background-color:hsla(var(--color-primary),.8)}button.graphiql-execute-button:focus{outline:hsla(var(--color-primary),.8) auto 1px}button.graphiql-execute-button>svg{color:#fff;display:block;height:var(--px-16);margin:auto;width:var(--px-16)}button.graphiql-toolbar-menu{display:block;height:var(--toolbar-width);width:var(--toolbar-width)}/*!*********************************************************************************************************************!*\\\n  !*** css ../../../node_modules/css-loader/dist/cjs.js!../../../node_modules/postcss-loader/dist/cjs.js!./style.css ***!\n  \\*********************************************************************************************************************/.graphiql-container{background-color:hsl(var(--color-base));display:flex;height:100%;margin:0;overflow:hidden;width:100%}.graphiql-container .graphiql-sidebar{display:flex;flex-direction:column;justify-content:space-between;padding:var(--px-8);width:var(--sidebar-width)}.graphiql-container .graphiql-sidebar .graphiql-sidebar-section{display:flex;flex-direction:column;gap:var(--px-8)}.graphiql-container .graphiql-sidebar button{display:flex;align-items:center;justify-content:center;color:hsla(var(--color-neutral),var(--alpha-secondary));height:calc(var(--sidebar-width) - (2 * var(--px-8)));width:calc(var(--sidebar-width) - (2 * var(--px-8)))}.graphiql-container .graphiql-sidebar button.active{color:hsla(var(--color-neutral),1)}.graphiql-container .graphiql-sidebar button:not(:first-child){margin-top:var(--px-4)}.graphiql-container .graphiql-sidebar button>svg{height:var(--px-20);width:var(--px-20)}.graphiql-container .graphiql-main{display:flex;flex:1;min-width:0}.graphiql-container .graphiql-sessions{background-color:hsla(var(--color-neutral),var(--alpha-background-light));border-radius:calc(var(--border-radius-12) + var(--px-8));display:flex;flex-direction:column;flex:1;max-height:100%;margin:var(--px-16);margin-left:0;min-width:0}.graphiql-container .graphiql-session-header{align-items:center;display:flex;justify-content:space-between;height:var(--session-header-height)}button.graphiql-tab-add{height:100%;padding:var(--px-4)}button.graphiql-tab-add>svg{color:hsla(var(--color-neutral),var(--alpha-secondary));display:block;height:var(--px-16);width:var(--px-16)}.graphiql-container .graphiql-session-header-right{align-items:center;display:flex}.graphiql-container .graphiql-logo{color:hsla(var(--color-neutral),var(--alpha-secondary));font-size:var(--font-size-h4);font-weight:var(--font-weight-medium);padding:var(--px-12) var(--px-16)}.graphiql-container .graphiql-logo .graphiql-logo-link{color:hsla(var(--color-neutral),var(--alpha-secondary));text-decoration:none}.graphiql-container .graphiql-session{display:flex;flex:1;padding:0 var(--px-8) var(--px-8)}.graphiql-container .graphiql-editors{background-color:hsl(var(--color-base));border-radius:calc(var(--border-radius-12));box-shadow:var(--popover-box-shadow);display:flex;flex:1;flex-direction:column}.graphiql-container .graphiql-editors.full-height{margin-top:calc(var(--px-8) - var(--session-header-height))}.graphiql-container .graphiql-query-editor{border-bottom:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));padding:var(--px-16);column-gap:var(--px-16);display:flex;width:100%}.graphiql-container .graphiql-toolbar{width:var(--toolbar-width)}.graphiql-container .graphiql-toolbar>*+*{margin-top:var(--px-8)}.graphiql-toolbar-icon{color:hsla(var(--color-neutral),var(--alpha-tertiary));display:block;height:calc(var(--toolbar-width) - (var(--px-8) * 2));width:calc(var(--toolbar-width) - (var(--px-8) * 2))}.graphiql-container .graphiql-editor-tools{cursor:row-resize;display:flex;width:100%;column-gap:var(--px-8);padding:var(--px-8)}.graphiql-container .graphiql-editor-tools button{color:hsla(var(--color-neutral),var(--alpha-secondary))}.graphiql-container .graphiql-editor-tools button.active{color:hsla(var(--color-neutral),1)}.graphiql-container .graphiql-editor-tools>button:not(.graphiql-toggle-editor-tools){padding:var(--px-8) var(--px-12)}.graphiql-container .graphiql-editor-tools .graphiql-toggle-editor-tools{margin-left:auto}.graphiql-container .graphiql-editor-tool{flex:1;padding:var(--px-16)}.graphiql-container .graphiql-toolbar,.graphiql-container .graphiql-editor-tools,.graphiql-container .graphiql-editor-tool{position:relative}.graphiql-container .graphiql-response{--editor-background: transparent;display:flex;width:100%;flex-direction:column}.graphiql-container .graphiql-response .result-window{position:relative;flex:1}.graphiql-container .graphiql-footer{border-top:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy))}.graphiql-container .graphiql-plugin{border-left:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));flex:1;overflow-y:auto;padding:var(--px-16)}.graphiql-horizontal-drag-bar{width:var(--px-12);cursor:col-resize}.graphiql-horizontal-drag-bar:hover:after{border:var(--px-2) solid hsla(var(--color-neutral),var(--alpha-background-heavy));border-radius:var(--border-radius-2);content:\"\";display:block;height:25%;margin:0 auto;position:relative;top:37.5%;width:0}.graphiql-container .graphiql-chevron-icon{color:hsla(var(--color-neutral),var(--alpha-tertiary));display:block;height:var(--px-12);margin:var(--px-12);width:var(--px-12)}.graphiql-spin{animation:spin .8s linear 0s infinite}@keyframes spin{0%{transform:rotate(0)}to{transform:rotate(360deg)}}.graphiql-dialog .graphiql-dialog-header{align-items:center;display:flex;justify-content:space-between;padding:var(--px-24)}.graphiql-dialog .graphiql-dialog-title{font-size:var(--font-size-h3);font-weight:var(--font-weight-medium);margin:0}.graphiql-dialog .graphiql-dialog-section{align-items:center;border-top:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));display:flex;justify-content:space-between;padding:var(--px-24)}.graphiql-dialog .graphiql-dialog-section>:not(:first-child){margin-left:var(--px-24)}.graphiql-dialog .graphiql-dialog-section-title{font-size:var(--font-size-h4);font-weight:var(--font-weight-medium)}.graphiql-dialog .graphiql-dialog-section-caption{color:hsla(var(--color-neutral),var(--alpha-secondary))}.graphiql-dialog .graphiql-warning-text{color:hsl(var(--color-warning));font-weight:var(--font-weight-medium)}.graphiql-dialog .graphiql-table{border-collapse:collapse;width:100%}.graphiql-dialog .graphiql-table :is(th,td){border:1px solid hsla(var(--color-neutral),var(--alpha-background-heavy));padding:var(--px-8) var(--px-12)}.graphiql-dialog .graphiql-key{background-color:hsla(var(--color-neutral),var(--alpha-background-medium));border-radius:var(--border-radius-4);padding:var(--px-4)}.graphiql-container svg{pointer-events:none}body{height:100%;margin:0;width:100%;overflow:hidden}#root{height:100vh;display:flex;flex-direction:column}#loginPage{font-family:Arial,Helvetica,sans-serif;max-width:1200px;margin:4rem auto;text-align:center}#loginForm{font-size:1rem;height:1.6rem;margin-top:4rem}#loginForm input,#loginForm button{font-family:Arial,Helvetica,sans-serif;font-size:1rem}#loginForm button,#loginForm label,#loginForm input{margin-left:1rem}#loginForm table{text-align:left;border:1px solid grey;width:100%;border-collapse:collapse}#loginForm table tr{border-bottom:1pt solid grey}#loginForm table th,#loginForm table td{padding:.5rem}#petclinicToken{white-space:nowrap;font-size:.6rem}.loginInfo,.tokenInfo{font-family:Arial,Helvetica,sans-serif;font-size:1.2rem;padding:8px;display:flex;align-items:baseline;gap:10px}.loginInfo button,.tokenInfo button{font-family:Arial,Helvetica,sans-serif;font-size:1.2rem}.tokenInfo textarea{flex:1}.tokenInfo--buttons{display:flex;flex-direction:column}\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/info-addon.es-c9b2027b.js",
    "content": "import{C as i}from\"./codemirror.es-52e8b92d.js\";import\"./codemirror.es2-5884f31a.js\";var y=Object.defineProperty,u=(o,t)=>y(o,\"name\",{value:t,configurable:!0});i.defineOption(\"info\",!1,(o,t,n)=>{if(n&&n!==i.Init){const e=o.state.info.onMouseOver;i.off(o.getWrapperElement(),\"mouseover\",e),clearTimeout(o.state.info.hoverTimeout),delete o.state.info}if(t){const e=o.state.info=v(t);e.onMouseOver=T.bind(null,o),i.on(o.getWrapperElement(),\"mouseover\",e.onMouseOver)}});function v(o){return{options:o instanceof Function?{render:o}:o===!0?{}:o}}u(v,\"createState\");function g(o){const{options:t}=o.state.info;return(t==null?void 0:t.hoverTime)||500}u(g,\"getHoverTime\");function T(o,t){const n=o.state.info,e=t.target||t.srcElement;if(!(e instanceof HTMLElement)||e.nodeName!==\"SPAN\"||n.hoverTimeout!==void 0)return;const m=e.getBoundingClientRect(),r=u(function(){clearTimeout(n.hoverTimeout),n.hoverTimeout=setTimeout(a,f)},\"onMouseMove\"),s=u(function(){i.off(document,\"mousemove\",r),i.off(o.getWrapperElement(),\"mouseout\",s),clearTimeout(n.hoverTimeout),n.hoverTimeout=void 0},\"onMouseOut\"),a=u(function(){i.off(document,\"mousemove\",r),i.off(o.getWrapperElement(),\"mouseout\",s),n.hoverTimeout=void 0,h(o,m)},\"onHover\"),f=g(o);n.hoverTimeout=setTimeout(a,f),i.on(document,\"mousemove\",r),i.on(o.getWrapperElement(),\"mouseout\",s)}u(T,\"onMouseOver\");function h(o,t){const n=o.coordsChar({left:(t.left+t.right)/2,top:(t.top+t.bottom)/2},\"window\"),e=o.state.info,{options:m}=e,r=m.render||o.getHelper(n,\"info\");if(r){const s=o.getTokenAt(n,!0);if(s){const a=r(s,m,o,n);a&&M(o,t,a)}}}u(h,\"onMouseHover\");function M(o,t,n){const e=document.createElement(\"div\");e.className=\"CodeMirror-info\",e.append(n),document.body.append(e);const m=e.getBoundingClientRect(),r=window.getComputedStyle(e),s=m.right-m.left+parseFloat(r.marginLeft)+parseFloat(r.marginRight),a=m.bottom-m.top+parseFloat(r.marginTop)+parseFloat(r.marginBottom);let f=t.bottom;a>window.innerHeight-t.bottom-15&&t.top>window.innerHeight-t.bottom&&(f=t.top-a),f<0&&(f=t.bottom);let c=Math.max(0,window.innerWidth-s-15);c>t.left&&(c=t.left),e.style.opacity=\"1\",e.style.top=f+\"px\",e.style.left=c+\"px\";let l;const d=u(function(){clearTimeout(l)},\"onMouseOverPopup\"),p=u(function(){clearTimeout(l),l=setTimeout(w,200)},\"onMouseOut\"),w=u(function(){i.off(e,\"mouseover\",d),i.off(e,\"mouseout\",p),i.off(o.getWrapperElement(),\"mouseout\",p),e.style.opacity?(e.style.opacity=\"0\",setTimeout(()=>{e.parentNode&&e.remove()},600)):e.parentNode&&e.remove()},\"hidePopup\");i.on(e,\"mouseover\",d),i.on(e,\"mouseout\",p),i.on(o.getWrapperElement(),\"mouseout\",p)}u(M,\"showPopup\");\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/info.es-3175bfab.js",
    "content": "import{C as g}from\"./codemirror.es-52e8b92d.js\";import{E as L,L as C,R as M,_ as V,G as x,O as l}from\"./SchemaReference.es-0ccab37b.js\";import\"./info-addon.es-c9b2027b.js\";import\"./codemirror.es2-5884f31a.js\";import\"./forEachState.es-b2033c2b.js\";import{V as u,W as f}from\"./index-27dc12ba.js\";var k=Object.defineProperty,d=(r,e)=>k(r,\"name\",{value:e,configurable:!0});g.registerHelper(\"info\",\"graphql\",(r,e)=>{if(!e.schema||!r.state)return;const{kind:i,step:t}=r.state,n=L(e.schema,r.state);if(i===\"Field\"&&t===0&&n.fieldDef||i===\"AliasedField\"&&t===2&&n.fieldDef){const c=document.createElement(\"div\");c.className=\"CodeMirror-info-header\",v(c,n,e);const o=document.createElement(\"div\");return o.append(c),p(o,e,n.fieldDef),o}if(i===\"Directive\"&&t===1&&n.directiveDef){const c=document.createElement(\"div\");c.className=\"CodeMirror-info-header\",D(c,n,e);const o=document.createElement(\"div\");return o.append(c),p(o,e,n.directiveDef),o}if(i===\"Argument\"&&t===0&&n.argDef){const c=document.createElement(\"div\");c.className=\"CodeMirror-info-header\",y(c,n,e);const o=document.createElement(\"div\");return o.append(c),p(o,e,n.argDef),o}if(i===\"EnumValue\"&&n.enumValue&&n.enumValue.description){const c=document.createElement(\"div\");c.className=\"CodeMirror-info-header\",N(c,n,e);const o=document.createElement(\"div\");return o.append(c),p(o,e,n.enumValue),o}if(i===\"NamedType\"&&n.type&&n.type.description){const c=document.createElement(\"div\");c.className=\"CodeMirror-info-header\",m(c,n,e,n.type);const o=document.createElement(\"div\");return o.append(c),p(o,e,n.type),o}});function v(r,e,i){E(r,e,i),s(r,e,i,e.type)}d(v,\"renderField\");function E(r,e,i){var t;const n=((t=e.fieldDef)===null||t===void 0?void 0:t.name)||\"\";a(r,n,\"field-name\",i,C(e))}d(E,\"renderQualifiedField\");function D(r,e,i){var t;const n=\"@\"+(((t=e.directiveDef)===null||t===void 0?void 0:t.name)||\"\");a(r,n,\"directive-name\",i,M(e))}d(D,\"renderDirective\");function y(r,e,i){var t;const n=((t=e.argDef)===null||t===void 0?void 0:t.name)||\"\";a(r,n,\"arg-name\",i,V(e)),s(r,e,i,e.inputType)}d(y,\"renderArg\");function N(r,e,i){var t;const n=((t=e.enumValue)===null||t===void 0?void 0:t.name)||\"\";m(r,e,i,e.inputType),a(r,\".\"),a(r,n,\"enum-value\",i,x(e))}d(N,\"renderEnumValue\");function s(r,e,i,t){const n=document.createElement(\"span\");n.className=\"type-name-pill\",t instanceof u?(m(n,e,i,t.ofType),a(n,\"!\")):t instanceof f?(a(n,\"[\"),m(n,e,i,t.ofType),a(n,\"]\")):a(n,(t==null?void 0:t.name)||\"\",\"type-name\",i,l(e,t)),r.append(n)}d(s,\"renderTypeAnnotation\");function m(r,e,i,t){t instanceof u?(m(r,e,i,t.ofType),a(r,\"!\")):t instanceof f?(a(r,\"[\"),m(r,e,i,t.ofType),a(r,\"]\")):a(r,(t==null?void 0:t.name)||\"\",\"type-name\",i,l(e,t))}d(m,\"renderType\");function p(r,e,i){const{description:t}=i;if(t){const n=document.createElement(\"div\");n.className=\"info-description\",e.renderDescription?n.innerHTML=e.renderDescription(t):n.append(document.createTextNode(t)),r.append(n)}T(r,e,i)}d(p,\"renderDescription\");function T(r,e,i){const t=i.deprecationReason;if(t){const n=document.createElement(\"div\");n.className=\"info-deprecation\",r.append(n);const c=document.createElement(\"span\");c.className=\"info-deprecation-label\",c.append(document.createTextNode(\"Deprecated\")),n.append(c);const o=document.createElement(\"div\");o.className=\"info-deprecation-reason\",e.renderDescription?o.innerHTML=e.renderDescription(t):o.append(document.createTextNode(t)),n.append(o)}}d(T,\"renderDeprecation\");function a(r,e,i=\"\",t={onClick:null},n=null){if(i){const{onClick:c}=t;let o;c?(o=document.createElement(\"a\"),o.href=\"javascript:void 0\",o.addEventListener(\"click\",h=>{c(n,h)})):o=document.createElement(\"span\"),o.className=i,o.append(document.createTextNode(e)),r.append(o)}else r.append(document.createTextNode(e))}d(a,\"text\");\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/javascript.es-3c6957c5.js",
    "content": "import{c as gt,h as wt}from\"./codemirror.es2-5884f31a.js\";var ht=Object.defineProperty,i=(R,X)=>ht(R,\"name\",{value:X,configurable:!0});function mt(R,X){for(var b=0;b<X.length;b++){const N=X[b];if(typeof N!=\"string\"&&!Array.isArray(N)){for(const x in N)if(x!==\"default\"&&!(x in R)){const E=Object.getOwnPropertyDescriptor(N,x);E&&Object.defineProperty(R,x,E.get?E:{enumerable:!0,get:()=>N[x]})}}}return Object.freeze(Object.defineProperty(R,Symbol.toStringTag,{value:\"Module\"}))}i(mt,\"_mergeNamespaces\");var jt={exports:{}};(function(R,X){(function(b){b(gt())})(function(b){b.defineMode(\"javascript\",function(N,x){var E=N.indentUnit,qe=x.statementIndent,fe=x.jsonld,P=x.json||fe,Ne=x.trackScope!==!1,y=x.typescript,ce=x.wordCharacters||/[\\w$\\xa1-\\uffff]/,Pe=function(){function e(h){return{type:h,style:\"keyword\"}}i(e,\"kw\");var t=e(\"keyword a\"),n=e(\"keyword b\"),o=e(\"keyword c\"),f=e(\"keyword d\"),p=e(\"operator\"),d={type:\"atom\",style:\"atom\"};return{if:e(\"if\"),while:t,with:t,else:n,do:n,try:n,finally:n,return:f,break:f,continue:f,new:e(\"new\"),delete:o,void:o,throw:o,debugger:e(\"debugger\"),var:e(\"var\"),const:e(\"var\"),let:e(\"var\"),function:e(\"function\"),catch:e(\"catch\"),for:e(\"for\"),switch:e(\"switch\"),case:e(\"case\"),default:e(\"default\"),in:p,typeof:p,instanceof:p,true:d,false:d,null:d,undefined:d,NaN:d,Infinity:d,this:e(\"this\"),class:e(\"class\"),super:e(\"atom\"),yield:o,export:e(\"export\"),import:e(\"import\"),extends:o,await:o}}(),Be=/[+\\-*&%=<>!?|~^@]/,yt=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)\"/;function Le(e){for(var t=!1,n,o=!1;(n=e.next())!=null;){if(!t){if(n==\"/\"&&!o)return;n==\"[\"?o=!0:o&&n==\"]\"&&(o=!1)}t=!t&&n==\"\\\\\"}}i(Le,\"readRegexp\");var Y,le;function v(e,t,n){return Y=e,le=n,t}i(v,\"ret\");function S(e,t){var n=e.next();if(n=='\"'||n==\"'\")return t.tokenize=Qe(n),t.tokenize(e,t);if(n==\".\"&&e.match(/^\\d[\\d_]*(?:[eE][+\\-]?[\\d_]+)?/))return v(\"number\",\"number\");if(n==\".\"&&e.match(\"..\"))return v(\"spread\",\"meta\");if(/[\\[\\]{}\\(\\),;\\:\\.]/.test(n))return v(n);if(n==\"=\"&&e.eat(\">\"))return v(\"=>\",\"operator\");if(n==\"0\"&&e.match(/^(?:x[\\dA-Fa-f_]+|o[0-7_]+|b[01_]+)n?/))return v(\"number\",\"number\");if(/\\d/.test(n))return e.match(/^[\\d_]*(?:n|(?:\\.[\\d_]*)?(?:[eE][+\\-]?[\\d_]+)?)?/),v(\"number\",\"number\");if(n==\"/\")return e.eat(\"*\")?(t.tokenize=Z,Z(e,t)):e.eat(\"/\")?(e.skipToEnd(),v(\"comment\",\"comment\")):$e(e,t,1)?(Le(e),e.match(/^\\b(([gimyus])(?![gimyus]*\\2))+\\b/),v(\"regexp\",\"string-2\")):(e.eat(\"=\"),v(\"operator\",\"operator\",e.current()));if(n==\"`\")return t.tokenize=U,U(e,t);if(n==\"#\"&&e.peek()==\"!\")return e.skipToEnd(),v(\"meta\",\"meta\");if(n==\"#\"&&e.eatWhile(ce))return v(\"variable\",\"property\");if(n==\"<\"&&e.match(\"!--\")||n==\"-\"&&e.match(\"->\")&&!/\\S/.test(e.string.slice(0,e.start)))return e.skipToEnd(),v(\"comment\",\"comment\");if(Be.test(n))return(n!=\">\"||!t.lexical||t.lexical.type!=\">\")&&(e.eat(\"=\")?(n==\"!\"||n==\"=\")&&e.eat(\"=\"):/[<>*+\\-|&?]/.test(n)&&(e.eat(n),n==\">\"&&e.eat(n))),n==\"?\"&&e.eat(\".\")?v(\".\"):v(\"operator\",\"operator\",e.current());if(ce.test(n)){e.eatWhile(ce);var o=e.current();if(t.lastType!=\".\"){if(Pe.propertyIsEnumerable(o)){var f=Pe[o];return v(f.type,f.style,o)}if(o==\"async\"&&e.match(/^(\\s|\\/\\*([^*]|\\*(?!\\/))*?\\*\\/)*[\\[\\(\\w]/,!1))return v(\"async\",\"keyword\",o)}return v(\"variable\",\"variable\",o)}}i(S,\"tokenBase\");function Qe(e){return function(t,n){var o=!1,f;if(fe&&t.peek()==\"@\"&&t.match(yt))return n.tokenize=S,v(\"jsonld-keyword\",\"meta\");for(;(f=t.next())!=null&&!(f==e&&!o);)o=!o&&f==\"\\\\\";return o||(n.tokenize=S),v(\"string\",\"string\")}}i(Qe,\"tokenString\");function Z(e,t){for(var n=!1,o;o=e.next();){if(o==\"/\"&&n){t.tokenize=S;break}n=o==\"*\"}return v(\"comment\",\"comment\")}i(Z,\"tokenComment\");function U(e,t){for(var n=!1,o;(o=e.next())!=null;){if(!n&&(o==\"`\"||o==\"$\"&&e.eat(\"{\"))){t.tokenize=S;break}n=!n&&o==\"\\\\\"}return v(\"quasi\",\"string-2\",e.current())}i(U,\"tokenQuasi\");var kt=\"([{}])\";function pe(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf(\"=>\",e.start);if(!(n<0)){if(y){var o=/:\\s*(?:\\w+(?:<[^>]*>|\\[\\])?|\\{[^}]*\\})\\s*$/.exec(e.string.slice(e.start,n));o&&(n=o.index)}for(var f=0,p=!1,d=n-1;d>=0;--d){var h=e.string.charAt(d),V=kt.indexOf(h);if(V>=0&&V<3){if(!f){++d;break}if(--f==0){h==\"(\"&&(p=!0);break}}else if(V>=3&&V<6)++f;else if(ce.test(h))p=!0;else if(/[\"'\\/`]/.test(h))for(;;--d){if(d==0)return;var xt=e.string.charAt(d-1);if(xt==h&&e.string.charAt(d-2)!=\"\\\\\"){d--;break}}else if(p&&!f){++d;break}}p&&!f&&(t.fatArrowAt=d)}}i(pe,\"findFatArrow\");var vt={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,import:!0,\"jsonld-keyword\":!0};function ge(e,t,n,o,f,p){this.indented=e,this.column=t,this.type=n,this.prev=f,this.info=p,o!=null&&(this.align=o)}i(ge,\"JSLexical\");function De(e,t){if(!Ne)return!1;for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var o=e.context;o;o=o.prev)for(var n=o.vars;n;n=n.next)if(n.name==t)return!0}i(De,\"inScope\");function we(e,t,n,o,f){var p=e.cc;for(a.state=e,a.stream=f,a.marked=null,a.cc=p,a.style=t,e.lexical.hasOwnProperty(\"align\")||(e.lexical.align=!0);;){var d=p.length?p.pop():P?k:g;if(d(n,o)){for(;p.length&&p[p.length-1].lex;)p.pop()();return a.marked?a.marked:n==\"variable\"&&De(e,o)?\"variable-2\":t}}}i(we,\"parseJS\");var a={state:null,column:null,marked:null,cc:null};function s(){for(var e=arguments.length-1;e>=0;e--)a.cc.push(arguments[e])}i(s,\"pass\");function r(){return s.apply(null,arguments),!0}i(r,\"cont\");function me(e,t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}i(me,\"inList\");function B(e){var t=a.state;if(a.marked=\"def\",!!Ne){if(t.context){if(t.lexical.info==\"var\"&&t.context&&t.context.block){var n=he(e,t.context);if(n!=null){t.context=n;return}}else if(!me(e,t.localVars)){t.localVars=new H(e,t.localVars);return}}x.globalVars&&!me(e,t.globalVars)&&(t.globalVars=new H(e,t.globalVars))}}i(B,\"register\");function he(e,t){if(t)if(t.block){var n=he(e,t.prev);return n?n==t.prev?t:new W(n,t.vars,!0):null}else return me(e,t.vars)?t:new W(t.prev,new H(e,t.vars),!1);else return null}i(he,\"registerVarScoped\");function ee(e){return e==\"public\"||e==\"private\"||e==\"protected\"||e==\"abstract\"||e==\"readonly\"}i(ee,\"isModifier\");function W(e,t,n){this.prev=e,this.vars=t,this.block=n}i(W,\"Context\");function H(e,t){this.name=e,this.next=t}i(H,\"Var\");var bt=new H(\"this\",new H(\"arguments\",null));function O(){a.state.context=new W(a.state.context,a.state.localVars,!1),a.state.localVars=bt}i(O,\"pushcontext\");function te(){a.state.context=new W(a.state.context,a.state.localVars,!0),a.state.localVars=null}i(te,\"pushblockcontext\"),O.lex=te.lex=!0;function A(){a.state.localVars=a.state.context.vars,a.state.context=a.state.context.prev}i(A,\"popcontext\"),A.lex=!0;function c(e,t){var n=i(function(){var o=a.state,f=o.indented;if(o.lexical.type==\"stat\")f=o.lexical.indented;else for(var p=o.lexical;p&&p.type==\")\"&&p.align;p=p.prev)f=p.indented;o.lexical=new ge(f,a.stream.column(),e,null,o.lexical,t)},\"result\");return n.lex=!0,n}i(c,\"pushlex\");function u(){var e=a.state;e.lexical.prev&&(e.lexical.type==\")\"&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}i(u,\"poplex\"),u.lex=!0;function l(e){function t(n){return n==e?r():e==\";\"||n==\"}\"||n==\")\"||n==\"]\"?s():r(t)}return i(t,\"exp\"),t}i(l,\"expect\");function g(e,t){return e==\"var\"?r(c(\"vardef\",t),be,l(\";\"),u):e==\"keyword a\"?r(c(\"form\"),de,g,u):e==\"keyword b\"?r(c(\"form\"),g,u):e==\"keyword d\"?a.stream.match(/^\\s*$/,!1)?r():r(c(\"stat\"),L,l(\";\"),u):e==\"debugger\"?r(l(\";\")):e==\"{\"?r(c(\"}\"),te,ae,u,A):e==\";\"?r():e==\"if\"?(a.state.lexical.info==\"else\"&&a.state.cc[a.state.cc.length-1]==u&&a.state.cc.pop()(),r(c(\"form\"),de,g,u,Ie)):e==\"function\"?r(C):e==\"for\"?r(c(\"form\"),te,Ve,g,A,u):e==\"class\"||y&&t==\"interface\"?(a.marked=\"keyword\",r(c(\"form\",e==\"class\"?e:t),Ce,u)):e==\"variable\"?y&&t==\"declare\"?(a.marked=\"keyword\",r(g)):y&&(t==\"module\"||t==\"enum\"||t==\"type\")&&a.stream.match(/^\\s*\\w/,!1)?(a.marked=\"keyword\",t==\"enum\"?r(_e):t==\"type\"?r(ze,l(\"operator\"),m,l(\";\")):r(c(\"form\"),M,l(\"{\"),c(\"}\"),ae,u,u)):y&&t==\"namespace\"?(a.marked=\"keyword\",r(c(\"form\"),k,g,u)):y&&t==\"abstract\"?(a.marked=\"keyword\",r(g)):r(c(\"stat\"),He):e==\"switch\"?r(c(\"form\"),de,l(\"{\"),c(\"}\",\"switch\"),te,ae,u,u,A):e==\"case\"?r(k,l(\":\")):e==\"default\"?r(l(\":\")):e==\"catch\"?r(c(\"form\"),O,Fe,g,u,A):e==\"export\"?r(c(\"stat\"),ut,u):e==\"import\"?r(c(\"stat\"),st,u):e==\"async\"?r(g):t==\"@\"?r(k,g):s(c(\"stat\"),k,l(\";\"),u)}i(g,\"statement\");function Fe(e){if(e==\"(\")return r(q,l(\")\"))}i(Fe,\"maybeCatchBinding\");function k(e,t){return je(e,t,!1)}i(k,\"expression\");function j(e,t){return je(e,t,!0)}i(j,\"expressionNoComma\");function de(e){return e!=\"(\"?s():r(c(\")\"),L,l(\")\"),u)}i(de,\"parenExpr\");function je(e,t,n){if(a.state.fatArrowAt==a.stream.start){var o=n?Me:Ae;if(e==\"(\")return r(O,c(\")\"),w(q,\")\"),u,l(\"=>\"),o,A);if(e==\"variable\")return s(O,M,l(\"=>\"),o,A)}var f=n?Q:_;return vt.hasOwnProperty(e)?r(f):e==\"function\"?r(C,f):e==\"class\"||y&&t==\"interface\"?(a.marked=\"keyword\",r(c(\"form\"),ot,u)):e==\"keyword c\"||e==\"async\"?r(n?j:k):e==\"(\"?r(c(\")\"),L,l(\")\"),u,f):e==\"operator\"||e==\"spread\"?r(n?j:k):e==\"[\"?r(c(\"]\"),ct,u,f):e==\"{\"?K(ne,\"}\",null,f):e==\"quasi\"?s(re,f):e==\"new\"?r(Re(n)):r()}i(je,\"expressionInner\");function L(e){return e.match(/[;\\}\\)\\],]/)?s():s(k)}i(L,\"maybeexpression\");function _(e,t){return e==\",\"?r(L):Q(e,t,!1)}i(_,\"maybeoperatorComma\");function Q(e,t,n){var o=n==!1?_:Q,f=n==!1?k:j;if(e==\"=>\")return r(O,n?Me:Ae,A);if(e==\"operator\")return/\\+\\+|--/.test(t)||y&&t==\"!\"?r(o):y&&t==\"<\"&&a.stream.match(/^([^<>]|<[^<>]*>)*>\\s*\\(/,!1)?r(c(\">\"),w(m,\">\"),u,o):t==\"?\"?r(k,l(\":\"),f):r(f);if(e==\"quasi\")return s(re,o);if(e!=\";\"){if(e==\"(\")return K(j,\")\",\"call\",o);if(e==\".\")return r(Ke,o);if(e==\"[\")return r(c(\"]\"),L,l(\"]\"),u,o);if(y&&t==\"as\")return a.marked=\"keyword\",r(m,o);if(e==\"regexp\")return a.state.lastType=a.marked=\"operator\",a.stream.backUp(a.stream.pos-a.stream.start-1),r(f)}}i(Q,\"maybeoperatorNoComma\");function re(e,t){return e!=\"quasi\"?s():t.slice(t.length-2)!=\"${\"?r(re):r(L,Je)}i(re,\"quasi\");function Je(e){if(e==\"}\")return a.marked=\"string-2\",a.state.tokenize=U,r(re)}i(Je,\"continueQuasi\");function Ae(e){return pe(a.stream,a.state),s(e==\"{\"?g:k)}i(Ae,\"arrowBody\");function Me(e){return pe(a.stream,a.state),s(e==\"{\"?g:j)}i(Me,\"arrowBodyNoComma\");function Re(e){return function(t){return t==\".\"?r(e?We:Ue):t==\"variable\"&&y?r(tt,e?Q:_):s(e?j:k)}}i(Re,\"maybeTarget\");function Ue(e,t){if(t==\"target\")return a.marked=\"keyword\",r(_)}i(Ue,\"target\");function We(e,t){if(t==\"target\")return a.marked=\"keyword\",r(Q)}i(We,\"targetNoComma\");function He(e){return e==\":\"?r(u,g):s(_,l(\";\"),u)}i(He,\"maybelabel\");function Ke(e){if(e==\"variable\")return a.marked=\"property\",r()}i(Ke,\"property\");function ne(e,t){if(e==\"async\")return a.marked=\"property\",r(ne);if(e==\"variable\"||a.style==\"keyword\"){if(a.marked=\"property\",t==\"get\"||t==\"set\")return r(Ge);var n;return y&&a.state.fatArrowAt==a.stream.start&&(n=a.stream.match(/^\\s*:\\s*/,!1))&&(a.state.fatArrowAt=a.stream.pos+n[0].length),r($)}else{if(e==\"number\"||e==\"string\")return a.marked=fe?\"property\":a.style+\" property\",r($);if(e==\"jsonld-keyword\")return r($);if(y&&ee(t))return a.marked=\"keyword\",r(ne);if(e==\"[\")return r(k,D,l(\"]\"),$);if(e==\"spread\")return r(j,$);if(t==\"*\")return a.marked=\"keyword\",r(ne);if(e==\":\")return s($)}}i(ne,\"objprop\");function Ge(e){return e!=\"variable\"?s($):(a.marked=\"property\",r(C))}i(Ge,\"getterSetter\");function $(e){if(e==\":\")return r(j);if(e==\"(\")return s(C)}i($,\"afterprop\");function w(e,t,n){function o(f,p){if(n?n.indexOf(f)>-1:f==\",\"){var d=a.state.lexical;return d.info==\"call\"&&(d.pos=(d.pos||0)+1),r(function(h,V){return h==t||V==t?s():s(e)},o)}return f==t||p==t?r():n&&n.indexOf(\";\")>-1?s(e):r(l(t))}return i(o,\"proceed\"),function(f,p){return f==t||p==t?r():s(e,o)}}i(w,\"commasep\");function K(e,t,n){for(var o=3;o<arguments.length;o++)a.cc.push(arguments[o]);return r(c(t,n),w(e,t),u)}i(K,\"contCommasep\");function ae(e){return e==\"}\"?r():s(g,ae)}i(ae,\"block\");function D(e,t){if(y){if(e==\":\")return r(m);if(t==\"?\")return r(D)}}i(D,\"maybetype\");function Xe(e,t){if(y&&(e==\":\"||t==\"in\"))return r(m)}i(Xe,\"maybetypeOrIn\");function Ee(e){if(y&&e==\":\")return a.stream.match(/^\\s*\\w+\\s+is\\b/,!1)?r(k,Ye,m):r(m)}i(Ee,\"mayberettype\");function Ye(e,t){if(t==\"is\")return a.marked=\"keyword\",r()}i(Ye,\"isKW\");function m(e,t){if(t==\"keyof\"||t==\"typeof\"||t==\"infer\"||t==\"readonly\")return a.marked=\"keyword\",r(t==\"typeof\"?j:m);if(e==\"variable\"||t==\"void\")return a.marked=\"type\",r(T);if(t==\"|\"||t==\"&\")return r(m);if(e==\"string\"||e==\"number\"||e==\"atom\")return r(T);if(e==\"[\")return r(c(\"]\"),w(m,\"]\",\",\"),u,T);if(e==\"{\")return r(c(\"}\"),ye,u,T);if(e==\"(\")return r(w(ve,\")\"),Ze,T);if(e==\"<\")return r(w(m,\">\"),m);if(e==\"quasi\")return s(ke,T)}i(m,\"typeexpr\");function Ze(e){if(e==\"=>\")return r(m)}i(Ze,\"maybeReturnType\");function ye(e){return e.match(/[\\}\\)\\]]/)?r():e==\",\"||e==\";\"?r(ye):s(G,ye)}i(ye,\"typeprops\");function G(e,t){if(e==\"variable\"||a.style==\"keyword\")return a.marked=\"property\",r(G);if(t==\"?\"||e==\"number\"||e==\"string\")return r(G);if(e==\":\")return r(m);if(e==\"[\")return r(l(\"variable\"),Xe,l(\"]\"),G);if(e==\"(\")return s(J,G);if(!e.match(/[;\\}\\)\\],]/))return r()}i(G,\"typeprop\");function ke(e,t){return e!=\"quasi\"?s():t.slice(t.length-2)!=\"${\"?r(ke):r(m,et)}i(ke,\"quasiType\");function et(e){if(e==\"}\")return a.marked=\"string-2\",a.state.tokenize=U,r(ke)}i(et,\"continueQuasiType\");function ve(e,t){return e==\"variable\"&&a.stream.match(/^\\s*[?:]/,!1)||t==\"?\"?r(ve):e==\":\"?r(m):e==\"spread\"?r(ve):s(m)}i(ve,\"typearg\");function T(e,t){if(t==\"<\")return r(c(\">\"),w(m,\">\"),u,T);if(t==\"|\"||e==\".\"||t==\"&\")return r(m);if(e==\"[\")return r(m,l(\"]\"),T);if(t==\"extends\"||t==\"implements\")return a.marked=\"keyword\",r(m);if(t==\"?\")return r(m,l(\":\"),m)}i(T,\"afterType\");function tt(e,t){if(t==\"<\")return r(c(\">\"),w(m,\">\"),u,T)}i(tt,\"maybeTypeArgs\");function ie(){return s(m,rt)}i(ie,\"typeparam\");function rt(e,t){if(t==\"=\")return r(m)}i(rt,\"maybeTypeDefault\");function be(e,t){return t==\"enum\"?(a.marked=\"keyword\",r(_e)):s(M,D,z,at)}i(be,\"vardef\");function M(e,t){if(y&&ee(t))return a.marked=\"keyword\",r(M);if(e==\"variable\")return B(t),r();if(e==\"spread\")return r(M);if(e==\"[\")return K(nt,\"]\");if(e==\"{\")return K(Te,\"}\")}i(M,\"pattern\");function Te(e,t){return e==\"variable\"&&!a.stream.match(/^\\s*:/,!1)?(B(t),r(z)):(e==\"variable\"&&(a.marked=\"property\"),e==\"spread\"?r(M):e==\"}\"?s():e==\"[\"?r(k,l(\"]\"),l(\":\"),Te):r(l(\":\"),M,z))}i(Te,\"proppattern\");function nt(){return s(M,z)}i(nt,\"eltpattern\");function z(e,t){if(t==\"=\")return r(j)}i(z,\"maybeAssign\");function at(e){if(e==\",\")return r(be)}i(at,\"vardefCont\");function Ie(e,t){if(e==\"keyword b\"&&t==\"else\")return r(c(\"form\",\"else\"),g,u)}i(Ie,\"maybeelse\");function Ve(e,t){if(t==\"await\")return r(Ve);if(e==\"(\")return r(c(\")\"),it,u)}i(Ve,\"forspec\");function it(e){return e==\"var\"?r(be,F):e==\"variable\"?r(F):s(F)}i(it,\"forspec1\");function F(e,t){return e==\")\"?r():e==\";\"?r(F):t==\"in\"||t==\"of\"?(a.marked=\"keyword\",r(k,F)):s(k,F)}i(F,\"forspec2\");function C(e,t){if(t==\"*\")return a.marked=\"keyword\",r(C);if(e==\"variable\")return B(t),r(C);if(e==\"(\")return r(O,c(\")\"),w(q,\")\"),u,Ee,g,A);if(y&&t==\"<\")return r(c(\">\"),w(ie,\">\"),u,C)}i(C,\"functiondef\");function J(e,t){if(t==\"*\")return a.marked=\"keyword\",r(J);if(e==\"variable\")return B(t),r(J);if(e==\"(\")return r(O,c(\")\"),w(q,\")\"),u,Ee,A);if(y&&t==\"<\")return r(c(\">\"),w(ie,\">\"),u,J)}i(J,\"functiondecl\");function ze(e,t){if(e==\"keyword\"||e==\"variable\")return a.marked=\"type\",r(ze);if(t==\"<\")return r(c(\">\"),w(ie,\">\"),u)}i(ze,\"typename\");function q(e,t){return t==\"@\"&&r(k,q),e==\"spread\"?r(q):y&&ee(t)?(a.marked=\"keyword\",r(q)):y&&e==\"this\"?r(D,z):s(M,D,z)}i(q,\"funarg\");function ot(e,t){return e==\"variable\"?Ce(e,t):oe(e,t)}i(ot,\"classExpression\");function Ce(e,t){if(e==\"variable\")return B(t),r(oe)}i(Ce,\"className\");function oe(e,t){if(t==\"<\")return r(c(\">\"),w(ie,\">\"),u,oe);if(t==\"extends\"||t==\"implements\"||y&&e==\",\")return t==\"implements\"&&(a.marked=\"keyword\"),r(y?m:k,oe);if(e==\"{\")return r(c(\"}\"),I,u)}i(oe,\"classNameAfter\");function I(e,t){if(e==\"async\"||e==\"variable\"&&(t==\"static\"||t==\"get\"||t==\"set\"||y&&ee(t))&&a.stream.match(/^\\s+[\\w$\\xa1-\\uffff]/,!1))return a.marked=\"keyword\",r(I);if(e==\"variable\"||a.style==\"keyword\")return a.marked=\"property\",r(ue,I);if(e==\"number\"||e==\"string\")return r(ue,I);if(e==\"[\")return r(k,D,l(\"]\"),ue,I);if(t==\"*\")return a.marked=\"keyword\",r(I);if(y&&e==\"(\")return s(J,I);if(e==\";\"||e==\",\")return r(I);if(e==\"}\")return r();if(t==\"@\")return r(k,I)}i(I,\"classBody\");function ue(e,t){if(t==\"!\"||t==\"?\")return r(ue);if(e==\":\")return r(m,z);if(t==\"=\")return r(j);var n=a.state.lexical.prev,o=n&&n.info==\"interface\";return s(o?J:C)}i(ue,\"classfield\");function ut(e,t){return t==\"*\"?(a.marked=\"keyword\",r(xe,l(\";\"))):t==\"default\"?(a.marked=\"keyword\",r(k,l(\";\"))):e==\"{\"?r(w(Se,\"}\"),xe,l(\";\")):s(g)}i(ut,\"afterExport\");function Se(e,t){if(t==\"as\")return a.marked=\"keyword\",r(l(\"variable\"));if(e==\"variable\")return s(j,Se)}i(Se,\"exportField\");function st(e){return e==\"string\"?r():e==\"(\"?s(k):e==\".\"?s(_):s(se,Oe,xe)}i(st,\"afterImport\");function se(e,t){return e==\"{\"?K(se,\"}\"):(e==\"variable\"&&B(t),t==\"*\"&&(a.marked=\"keyword\"),r(ft))}i(se,\"importSpec\");function Oe(e){if(e==\",\")return r(se,Oe)}i(Oe,\"maybeMoreImports\");function ft(e,t){if(t==\"as\")return a.marked=\"keyword\",r(se)}i(ft,\"maybeAs\");function xe(e,t){if(t==\"from\")return a.marked=\"keyword\",r(k)}i(xe,\"maybeFrom\");function ct(e){return e==\"]\"?r():s(w(j,\"]\"))}i(ct,\"arrayLiteral\");function _e(){return s(c(\"form\"),M,l(\"{\"),c(\"}\"),w(lt,\"}\"),u,u)}i(_e,\"enumdef\");function lt(){return s(M,z)}i(lt,\"enummember\");function pt(e,t){return e.lastType==\"operator\"||e.lastType==\",\"||Be.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}i(pt,\"isContinuedStatement\");function $e(e,t,n){return t.tokenize==S&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\\[{}\\(,;:]|=>)$/.test(t.lastType)||t.lastType==\"quasi\"&&/\\{\\s*$/.test(e.string.slice(0,e.pos-(n||0)))}return i($e,\"expressionAllowed\"),{startState:function(e){var t={tokenize:S,lastType:\"sof\",cc:[],lexical:new ge((e||0)-E,0,\"block\",!1),localVars:x.localVars,context:x.localVars&&new W(null,null,!1),indented:e||0};return x.globalVars&&typeof x.globalVars==\"object\"&&(t.globalVars=x.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty(\"align\")||(t.lexical.align=!1),t.indented=e.indentation(),pe(e,t)),t.tokenize!=Z&&e.eatSpace())return null;var n=t.tokenize(e,t);return Y==\"comment\"?n:(t.lastType=Y==\"operator\"&&(le==\"++\"||le==\"--\")?\"incdec\":Y,we(t,n,Y,le,e))},indent:function(e,t){if(e.tokenize==Z||e.tokenize==U)return b.Pass;if(e.tokenize!=S)return 0;var n=t&&t.charAt(0),o=e.lexical,f;if(!/^\\s*else\\b/.test(t))for(var p=e.cc.length-1;p>=0;--p){var d=e.cc[p];if(d==u)o=o.prev;else if(d!=Ie&&d!=A)break}for(;(o.type==\"stat\"||o.type==\"form\")&&(n==\"}\"||(f=e.cc[e.cc.length-1])&&(f==_||f==Q)&&!/^[,\\.=+\\-*:?[\\(]/.test(t));)o=o.prev;qe&&o.type==\")\"&&o.prev.type==\"stat\"&&(o=o.prev);var h=o.type,V=n==h;return h==\"vardef\"?o.indented+(e.lastType==\"operator\"||e.lastType==\",\"?o.info.length+1:0):h==\"form\"&&n==\"{\"?o.indented:h==\"form\"?o.indented+E:h==\"stat\"?o.indented+(pt(e,t)?qe||E:0):o.info==\"switch\"&&!V&&x.doubleIndentSwitch!=!1?o.indented+(/^(?:case|default)\\b/.test(t)?E:2*E):o.align?o.column+(V?0:1):o.indented+(V?0:E)},electricInput:/^\\s*(?:case .*?:|default:|\\{|\\})$/,blockCommentStart:P?null:\"/*\",blockCommentEnd:P?null:\"*/\",blockCommentContinue:P?null:\" * \",lineComment:P?null:\"//\",fold:\"brace\",closeBrackets:\"()[]{}''\\\"\\\"``\",helperType:P?\"json\":\"javascript\",jsonldMode:fe,jsonMode:P,expressionAllowed:$e,skipExpression:function(e){we(e,\"atom\",\"atom\",\"true\",new b.StringStream(\"\",2,null))}}}),b.registerHelper(\"wordChars\",\"javascript\",/[\\w$]/),b.defineMIME(\"text/javascript\",\"javascript\"),b.defineMIME(\"text/ecmascript\",\"javascript\"),b.defineMIME(\"application/javascript\",\"javascript\"),b.defineMIME(\"application/x-javascript\",\"javascript\"),b.defineMIME(\"application/ecmascript\",\"javascript\"),b.defineMIME(\"application/json\",{name:\"javascript\",json:!0}),b.defineMIME(\"application/x-json\",{name:\"javascript\",json:!0}),b.defineMIME(\"application/manifest+json\",{name:\"javascript\",json:!0}),b.defineMIME(\"application/ld+json\",{name:\"javascript\",jsonld:!0}),b.defineMIME(\"text/typescript\",{name:\"javascript\",typescript:!0}),b.defineMIME(\"application/typescript\",{name:\"javascript\",typescript:!0})})})();var dt=jt.exports;const At=wt(dt),Et=mt({__proto__:null,default:At},[dt]);export{Et as j};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/jump-to-line.es-3afd5e0a.js",
    "content": "import{c as d,h as g}from\"./codemirror.es2-5884f31a.js\";import{a as h}from\"./dialog.es-b2776d29.js\";var b=Object.defineProperty,p=(c,l)=>b(c,\"name\",{value:l,configurable:!0});function f(c,l){for(var o=0;o<l.length;o++){const s=l[o];if(typeof s!=\"string\"&&!Array.isArray(s)){for(const i in s)if(i!==\"default\"&&!(i in c)){const a=Object.getOwnPropertyDescriptor(s,i);a&&Object.defineProperty(c,i,a.get?a:{enumerable:!0,get:()=>s[i]})}}}return Object.freeze(Object.defineProperty(c,Symbol.toStringTag,{value:\"Module\"}))}p(f,\"_mergeNamespaces\");var y={exports:{}};(function(c,l){(function(o){o(d(),h)})(function(o){o.defineOption(\"search\",{bottom:!1});function s(e,t,n,r,u){e.openDialog?e.openDialog(t,u,{value:r,selectValueOnOpen:!0,bottom:e.options.search.bottom}):u(prompt(n,r))}p(s,\"dialog\");function i(e){return e.phrase(\"Jump to line:\")+' <input type=\"text\" style=\"width: 10em\" class=\"CodeMirror-search-field\"/> <span style=\"color: #888\" class=\"CodeMirror-search-hint\">'+e.phrase(\"(Use line:column or scroll% syntax)\")+\"</span>\"}p(i,\"getJumpDialog\");function a(e,t){var n=Number(t);return/^[-+]/.test(t)?e.getCursor().line+n:n-1}p(a,\"interpretLine\"),o.commands.jumpToLine=function(e){var t=e.getCursor();s(e,i(e),e.phrase(\"Jump to line:\"),t.line+1+\":\"+t.ch,function(n){if(n){var r;if(r=/^\\s*([\\+\\-]?\\d+)\\s*\\:\\s*(\\d+)\\s*$/.exec(n))e.setCursor(a(e,r[1]),Number(r[2]));else if(r=/^\\s*([\\+\\-]?\\d+(\\.\\d+)?)\\%\\s*/.exec(n)){var u=Math.round(e.lineCount()*Number(r[1])/100);/^[-+]/.test(r[1])&&(u=t.line+u+1),e.setCursor(u-1,t.ch)}else(r=/^\\s*\\:?\\s*([\\+\\-]?\\d+)\\s*/.exec(n))&&e.setCursor(a(e,r[1]),t.ch)}})},o.keyMap.default[\"Alt-G\"]=\"jumpToLine\"})})();var m=y.exports;const v=g(m),x=f({__proto__:null,default:v},[m]);export{x as j};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/jump.es-7b275cf1.js",
    "content": "import{C as u}from\"./codemirror.es-52e8b92d.js\";import{E as g,L as M,R as k,_ as v,G as y,O}from\"./SchemaReference.es-0ccab37b.js\";import\"./codemirror.es2-5884f31a.js\";import\"./forEachState.es-b2033c2b.js\";import\"./index-27dc12ba.js\";var D=Object.defineProperty,s=(t,n)=>D(t,\"name\",{value:n,configurable:!0});u.defineOption(\"jump\",!1,(t,n,i)=>{if(i&&i!==u.Init){const e=t.state.jump.onMouseOver;u.off(t.getWrapperElement(),\"mouseover\",e);const r=t.state.jump.onMouseOut;u.off(t.getWrapperElement(),\"mouseout\",r),u.off(document,\"keydown\",t.state.jump.onKeyDown),delete t.state.jump}if(n){const e=t.state.jump={options:n,onMouseOver:c.bind(null,t),onMouseOut:d.bind(null,t),onKeyDown:f.bind(null,t)};u.on(t.getWrapperElement(),\"mouseover\",e.onMouseOver),u.on(t.getWrapperElement(),\"mouseout\",e.onMouseOut),u.on(document,\"keydown\",e.onKeyDown)}});function c(t,n){const i=n.target||n.srcElement;if(!(i instanceof HTMLElement)||(i==null?void 0:i.nodeName)!==\"SPAN\")return;const e=i.getBoundingClientRect(),r={left:(e.left+e.right)/2,top:(e.top+e.bottom)/2};t.state.jump.cursor=r,t.state.jump.isHoldingModifier&&p(t)}s(c,\"onMouseOver\");function d(t){if(!t.state.jump.isHoldingModifier&&t.state.jump.cursor){t.state.jump.cursor=null;return}t.state.jump.isHoldingModifier&&t.state.jump.marker&&l(t)}s(d,\"onMouseOut\");function f(t,n){if(t.state.jump.isHoldingModifier||!j(n.key))return;t.state.jump.isHoldingModifier=!0,t.state.jump.cursor&&p(t);const i=s(o=>{o.code===n.code&&(t.state.jump.isHoldingModifier=!1,t.state.jump.marker&&l(t),u.off(document,\"keyup\",i),u.off(document,\"click\",e),t.off(\"mousedown\",r))},\"onKeyUp\"),e=s(o=>{const{destination:a,options:m}=t.state.jump;a&&m.onClick(a,o)},\"onClick\"),r=s((o,a)=>{t.state.jump.destination&&(a.codemirrorIgnore=!0)},\"onMouseDown\");u.on(document,\"keyup\",i),u.on(document,\"click\",e),t.on(\"mousedown\",r)}s(f,\"onKeyDown\");const w=typeof navigator<\"u\"&&navigator&&navigator.appVersion.includes(\"Mac\");function j(t){return t===(w?\"Meta\":\"Control\")}s(j,\"isJumpModifier\");function p(t){if(t.state.jump.marker)return;const{cursor:n,options:i}=t.state.jump,e=t.coordsChar(n),r=t.getTokenAt(e,!0),o=i.getDestination||t.getHelper(e,\"jump\");if(o){const a=o(r,i,t);if(a){const m=t.markText({line:e.line,ch:r.start},{line:e.line,ch:r.end},{className:\"CodeMirror-jump-token\"});t.state.jump.marker=m,t.state.jump.destination=a}}}s(p,\"enableJumpMode\");function l(t){const{marker:n}=t.state.jump;t.state.jump.marker=null,t.state.jump.destination=null,n.clear()}s(l,\"disableJumpMode\");u.registerHelper(\"jump\",\"graphql\",(t,n)=>{if(!n.schema||!n.onClick||!t.state)return;const{state:i}=t,{kind:e,step:r}=i,o=g(n.schema,i);if(e===\"Field\"&&r===0&&o.fieldDef||e===\"AliasedField\"&&r===2&&o.fieldDef)return M(o);if(e===\"Directive\"&&r===1&&o.directiveDef)return k(o);if(e===\"Argument\"&&r===0&&o.argDef)return v(o);if(e===\"EnumValue\"&&o.enumValue)return y(o);if(e===\"NamedType\"&&o.type)return O(o)});\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/lint.es-fe7166bb.js",
    "content": "import{c as U,h as V}from\"./codemirror.es2-5884f31a.js\";var W=Object.defineProperty,s=(d,h)=>W(d,\"name\",{value:h,configurable:!0});function I(d,h){for(var l=0;l<h.length;l++){const c=h[l];if(typeof c!=\"string\"&&!Array.isArray(c)){for(const m in c)if(m!==\"default\"&&!(m in d)){const g=Object.getOwnPropertyDescriptor(c,m);g&&Object.defineProperty(d,m,g.get?g:{enumerable:!0,get:()=>c[m]})}}}return Object.freeze(Object.defineProperty(d,Symbol.toStringTag,{value:\"Module\"}))}s(I,\"_mergeNamespaces\");var B={exports:{}};(function(d,h){(function(l){l(U())})(function(l){var c=\"CodeMirror-lint-markers\",m=\"CodeMirror-lint-line-\";function g(e,t,o){var n=document.createElement(\"div\");n.className=\"CodeMirror-lint-tooltip cm-s-\"+e.options.theme,n.appendChild(o.cloneNode(!0)),e.state.lint.options.selfContain?e.getWrapperElement().appendChild(n):document.body.appendChild(n);function r(i){if(!n.parentNode)return l.off(document,\"mousemove\",r);n.style.top=Math.max(0,i.clientY-n.offsetHeight-5)+\"px\",n.style.left=i.clientX+5+\"px\"}return s(r,\"position\"),l.on(document,\"mousemove\",r),r(t),n.style.opacity!=null&&(n.style.opacity=1),n}s(g,\"showTooltip\");function O(e){e.parentNode&&e.parentNode.removeChild(e)}s(O,\"rm\");function E(e){e.parentNode&&(e.style.opacity==null&&O(e),e.style.opacity=0,setTimeout(function(){O(e)},600))}s(E,\"hideTooltip\");function k(e,t,o,n){var r=g(e,t,o);function i(){l.off(n,\"mouseout\",i),r&&(E(r),r=null)}s(i,\"hide\");var a=setInterval(function(){if(r)for(var u=n;;u=u.parentNode){if(u&&u.nodeType==11&&(u=u.host),u==document.body)return;if(!u){i();break}}if(!r)return clearInterval(a)},400);l.on(n,\"mouseout\",i)}s(k,\"showTooltipFor\");function x(e,t,o){this.marked=[],t instanceof Function&&(t={getAnnotations:t}),(!t||t===!0)&&(t={}),this.options={},this.linterOptions=t.options||{};for(var n in L)this.options[n]=L[n];for(var n in t)L.hasOwnProperty(n)?t[n]!=null&&(this.options[n]=t[n]):t.options||(this.linterOptions[n]=t[n]);this.timeout=null,this.hasGutter=o,this.onMouseOver=function(r){H(e,r)},this.waitingFor=0}s(x,\"LintState\");var L={highlightLines:!1,tooltips:!0,delay:500,lintOnChange:!0,getAnnotations:null,async:!1,selfContain:null,formatAnnotation:null,onUpdateLinting:null};function b(e){var t=e.state.lint;t.hasGutter&&e.clearGutter(c),t.options.highlightLines&&A(e);for(var o=0;o<t.marked.length;++o)t.marked[o].clear();t.marked.length=0}s(b,\"clearMarks\");function A(e){e.eachLine(function(t){var o=t.wrapClass&&/\\bCodeMirror-lint-line-\\w+\\b/.exec(t.wrapClass);o&&e.removeLineClass(t,\"wrap\",o[0])})}s(A,\"clearErrorLines\");function _(e,t,o,n,r){var i=document.createElement(\"div\"),a=i;return i.className=\"CodeMirror-lint-marker CodeMirror-lint-marker-\"+o,n&&(a=i.appendChild(document.createElement(\"div\")),a.className=\"CodeMirror-lint-marker CodeMirror-lint-marker-multiple\"),r!=!1&&l.on(a,\"mouseover\",function(u){k(e,u,t,a)}),i}s(_,\"makeMarker\");function F(e,t){return e==\"error\"?e:t}s(F,\"getMaxSeverity\");function G(e){for(var t=[],o=0;o<e.length;++o){var n=e[o],r=n.from.line;(t[r]||(t[r]=[])).push(n)}return t}s(G,\"groupByLine\");function N(e){var t=e.severity;t||(t=\"error\");var o=document.createElement(\"div\");return o.className=\"CodeMirror-lint-message CodeMirror-lint-message-\"+t,typeof e.messageHTML<\"u\"?o.innerHTML=e.messageHTML:o.appendChild(document.createTextNode(e.message)),o}s(N,\"annotationTooltip\");function P(e,t){var o=e.state.lint,n=++o.waitingFor;function r(){n=-1,e.off(\"change\",r)}s(r,\"abort\"),e.on(\"change\",r),t(e.getValue(),function(i,a){e.off(\"change\",r),o.waitingFor==n&&(a&&i instanceof l&&(i=a),e.operation(function(){y(e,i)}))},o.linterOptions,e)}s(P,\"lintAsync\");function C(e){var t=e.state.lint;if(t){var o=t.options,n=o.getAnnotations||e.getHelper(l.Pos(0,0),\"lint\");if(n)if(o.async||n.async)P(e,n);else{var r=n(e.getValue(),t.linterOptions,e);if(!r)return;r.then?r.then(function(i){e.operation(function(){y(e,i)})}):e.operation(function(){y(e,r)})}}}s(C,\"startLinting\");function y(e,t){var o=e.state.lint;if(o){var n=o.options;b(e);for(var r=G(t),i=0;i<r.length;++i){var a=r[i];if(a){var u=[];a=a.filter(function(D){return u.indexOf(D.message)>-1?!1:u.push(D.message)});for(var p=null,v=o.hasGutter&&document.createDocumentFragment(),T=0;T<a.length;++T){var f=a[T],M=f.severity;M||(M=\"error\"),p=F(p,M),n.formatAnnotation&&(f=n.formatAnnotation(f)),o.hasGutter&&v.appendChild(N(f)),f.to&&o.marked.push(e.markText(f.from,f.to,{className:\"CodeMirror-lint-mark CodeMirror-lint-mark-\"+M,__annotation:f}))}o.hasGutter&&e.setGutterMarker(i,c,_(e,v,p,r[i].length>1,n.tooltips)),n.highlightLines&&e.addLineClass(i,\"wrap\",m+p)}}n.onUpdateLinting&&n.onUpdateLinting(t,r,e)}}s(y,\"updateLinting\");function w(e){var t=e.state.lint;t&&(clearTimeout(t.timeout),t.timeout=setTimeout(function(){C(e)},t.options.delay))}s(w,\"onChange\");function j(e,t,o){for(var n=o.target||o.srcElement,r=document.createDocumentFragment(),i=0;i<t.length;i++){var a=t[i];r.appendChild(N(a))}k(e,o,r,n)}s(j,\"popupTooltips\");function H(e,t){var o=t.target||t.srcElement;if(/\\bCodeMirror-lint-mark-/.test(o.className)){for(var n=o.getBoundingClientRect(),r=(n.left+n.right)/2,i=(n.top+n.bottom)/2,a=e.findMarksAt(e.coordsChar({left:r,top:i},\"client\")),u=[],p=0;p<a.length;++p){var v=a[p].__annotation;v&&u.push(v)}u.length&&j(e,u,t)}}s(H,\"onMouseOver\"),l.defineOption(\"lint\",!1,function(e,t,o){if(o&&o!=l.Init&&(b(e),e.state.lint.options.lintOnChange!==!1&&e.off(\"change\",w),l.off(e.getWrapperElement(),\"mouseover\",e.state.lint.onMouseOver),clearTimeout(e.state.lint.timeout),delete e.state.lint),t){for(var n=e.getOption(\"gutters\"),r=!1,i=0;i<n.length;++i)n[i]==c&&(r=!0);var a=e.state.lint=new x(e,t,r);a.options.lintOnChange&&e.on(\"change\",w),a.options.tooltips!=!1&&a.options.tooltips!=\"gutter\"&&l.on(e.getWrapperElement(),\"mouseover\",a.onMouseOver),C(e)}}),l.defineExtension(\"performLint\",function(){C(this)})})})();var S=B.exports;const R=V(S),z=I({__proto__:null,default:R},[S]);export{z as l};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/lint.es2-97c4a6f4.js",
    "content": "import{C as q}from\"./codemirror.es-52e8b92d.js\";import{K as u,G as p,d as _,i as ue,a as S,n as fe,b as w,s as F,t as h,c as R,p as v,e as X,f as y,h as T,D as E,O as G,j as Ae,k as Pe,l as O,m as P,o as I,q as k,r as te,u as ke,v as Ue,w as de,x as $,y as pe,z as U,A as Ve,B as je,C as Le,E as Me,F as Ye,H as Xe,I as Be,J as re,T as me,L as ge,M as Te,N as qe,P as Ge,Q as Je,R as Qe,S as He,U as Ke}from\"./index-27dc12ba.js\";import{R as Ee,P as V}from\"./Range-52ddcb6a.js\";import\"./codemirror.es2-5884f31a.js\";function We(e){return e.kind===u.OPERATION_DEFINITION||e.kind===u.FRAGMENT_DEFINITION}function ze(e){return e.kind===u.SCHEMA_DEFINITION||B(e)||e.kind===u.DIRECTIVE_DEFINITION}function B(e){return e.kind===u.SCALAR_TYPE_DEFINITION||e.kind===u.OBJECT_TYPE_DEFINITION||e.kind===u.INTERFACE_TYPE_DEFINITION||e.kind===u.UNION_TYPE_DEFINITION||e.kind===u.ENUM_TYPE_DEFINITION||e.kind===u.INPUT_OBJECT_TYPE_DEFINITION}function Ze(e){return e.kind===u.SCHEMA_EXTENSION||Ne(e)}function Ne(e){return e.kind===u.SCALAR_TYPE_EXTENSION||e.kind===u.OBJECT_TYPE_EXTENSION||e.kind===u.INTERFACE_TYPE_EXTENSION||e.kind===u.UNION_TYPE_EXTENSION||e.kind===u.ENUM_TYPE_EXTENSION||e.kind===u.INPUT_OBJECT_TYPE_EXTENSION}function ve(e){return{Document(t){for(const n of t.definitions)if(!We(n)){const r=n.kind===u.SCHEMA_DEFINITION||n.kind===u.SCHEMA_EXTENSION?\"schema\":'\"'+n.name.value+'\"';e.reportError(new p(`The ${r} definition is not executable.`,{nodes:n}))}return!1}}}function xe(e){return{Field(t){const n=e.getParentType();if(n&&!e.getFieldDef()){const i=e.getSchema(),s=t.name.value;let a=_(\"to use an inline fragment on\",en(i,n,s));a===\"\"&&(a=_(nn(n,s))),e.reportError(new p(`Cannot query field \"${s}\" on type \"${n.name}\".`+a,{nodes:t}))}}}}function en(e,t,n){if(!ue(t))return[];const r=new Set,i=Object.create(null);for(const a of e.getPossibleTypes(t))if(a.getFields()[n]){r.add(a),i[a.name]=1;for(const o of a.getInterfaces()){var s;o.getFields()[n]&&(r.add(o),i[o.name]=((s=i[o.name])!==null&&s!==void 0?s:0)+1)}}return[...r].sort((a,o)=>{const l=i[o.name]-i[a.name];return l!==0?l:S(a)&&e.isSubType(a,o)?-1:S(o)&&e.isSubType(o,a)?1:fe(a.name,o.name)}).map(a=>a.name)}function nn(e,t){if(w(e)||S(e)){const n=Object.keys(e.getFields());return F(t,n)}return[]}function tn(e){return{InlineFragment(t){const n=t.typeCondition;if(n){const r=h(e.getSchema(),n);if(r&&!R(r)){const i=v(n);e.reportError(new p(`Fragment cannot condition on non composite type \"${i}\".`,{nodes:n}))}}},FragmentDefinition(t){const n=h(e.getSchema(),t.typeCondition);if(n&&!R(n)){const r=v(t.typeCondition);e.reportError(new p(`Fragment \"${t.name.value}\" cannot condition on non composite type \"${r}\".`,{nodes:t.typeCondition}))}}}}function rn(e){return{...sn(e),Argument(t){const n=e.getArgument(),r=e.getFieldDef(),i=e.getParentType();if(!n&&r&&i){const s=t.name.value,a=r.args.map(l=>l.name),o=F(s,a);e.reportError(new p(`Unknown argument \"${s}\" on field \"${i.name}.${r.name}\".`+_(o),{nodes:t}))}}}}function sn(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():X;for(const a of r)t[a.name]=a.args.map(o=>o.name);const i=e.getDocument().definitions;for(const a of i)if(a.kind===u.DIRECTIVE_DEFINITION){var s;const o=(s=a.arguments)!==null&&s!==void 0?s:[];t[a.name.value]=o.map(l=>l.name.value)}return{Directive(a){const o=a.name.value,l=t[o];if(a.arguments&&l)for(const c of a.arguments){const f=c.name.value;if(!l.includes(f)){const d=F(f,l);e.reportError(new p(`Unknown argument \"${f}\" on directive \"@${o}\".`+_(d),{nodes:c}))}}return!1}}}function ye(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():X;for(const s of r)t[s.name]=s.locations;const i=e.getDocument().definitions;for(const s of i)s.kind===u.DIRECTIVE_DEFINITION&&(t[s.name.value]=s.locations.map(a=>a.value));return{Directive(s,a,o,l,c){const f=s.name.value,d=t[f];if(!d){e.reportError(new p(`Unknown directive \"@${f}\".`,{nodes:s}));return}const m=on(c);m&&!d.includes(m)&&e.reportError(new p(`Directive \"@${f}\" may not be used on ${m}.`,{nodes:s}))}}}function on(e){const t=e[e.length-1];switch(\"kind\"in t||y(!1),t.kind){case u.OPERATION_DEFINITION:return an(t.operation);case u.FIELD:return E.FIELD;case u.FRAGMENT_SPREAD:return E.FRAGMENT_SPREAD;case u.INLINE_FRAGMENT:return E.INLINE_FRAGMENT;case u.FRAGMENT_DEFINITION:return E.FRAGMENT_DEFINITION;case u.VARIABLE_DEFINITION:return E.VARIABLE_DEFINITION;case u.SCHEMA_DEFINITION:case u.SCHEMA_EXTENSION:return E.SCHEMA;case u.SCALAR_TYPE_DEFINITION:case u.SCALAR_TYPE_EXTENSION:return E.SCALAR;case u.OBJECT_TYPE_DEFINITION:case u.OBJECT_TYPE_EXTENSION:return E.OBJECT;case u.FIELD_DEFINITION:return E.FIELD_DEFINITION;case u.INTERFACE_TYPE_DEFINITION:case u.INTERFACE_TYPE_EXTENSION:return E.INTERFACE;case u.UNION_TYPE_DEFINITION:case u.UNION_TYPE_EXTENSION:return E.UNION;case u.ENUM_TYPE_DEFINITION:case u.ENUM_TYPE_EXTENSION:return E.ENUM;case u.ENUM_VALUE_DEFINITION:return E.ENUM_VALUE;case u.INPUT_OBJECT_TYPE_DEFINITION:case u.INPUT_OBJECT_TYPE_EXTENSION:return E.INPUT_OBJECT;case u.INPUT_VALUE_DEFINITION:{const n=e[e.length-3];return\"kind\"in n||y(!1),n.kind===u.INPUT_OBJECT_TYPE_DEFINITION?E.INPUT_FIELD_DEFINITION:E.ARGUMENT_DEFINITION}default:y(!1,\"Unexpected kind: \"+T(t.kind))}}function an(e){switch(e){case G.QUERY:return E.QUERY;case G.MUTATION:return E.MUTATION;case G.SUBSCRIPTION:return E.SUBSCRIPTION}}function Ie(e){return{FragmentSpread(t){const n=t.name.value;e.getFragment(n)||e.reportError(new p(`Unknown fragment \"${n}\".`,{nodes:t.name}))}}}function he(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);for(const s of e.getDocument().definitions)B(s)&&(r[s.name.value]=!0);const i=[...Object.keys(n),...Object.keys(r)];return{NamedType(s,a,o,l,c){const f=s.name.value;if(!n[f]&&!r[f]){var d;const m=(d=c[2])!==null&&d!==void 0?d:o,g=m!=null&&ln(m);if(g&&ie.includes(f))return;const N=F(f,g?ie.concat(i):i);e.reportError(new p(`Unknown type \"${f}\".`+_(N),{nodes:s}))}}}}const ie=[...Ae,...Pe].map(e=>e.name);function ln(e){return\"kind\"in e&&(ze(e)||Ze(e))}function cn(e){let t=0;return{Document(n){t=n.definitions.filter(r=>r.kind===u.OPERATION_DEFINITION).length},OperationDefinition(n){!n.name&&t>1&&e.reportError(new p(\"This anonymous operation must be the only defined operation.\",{nodes:n}))}}}function un(e){var t,n,r;const i=e.getSchema(),s=(t=(n=(r=i==null?void 0:i.astNode)!==null&&r!==void 0?r:i==null?void 0:i.getQueryType())!==null&&n!==void 0?n:i==null?void 0:i.getMutationType())!==null&&t!==void 0?t:i==null?void 0:i.getSubscriptionType();let a=0;return{SchemaDefinition(o){if(s){e.reportError(new p(\"Cannot define a new schema within a schema extension.\",{nodes:o}));return}a>0&&e.reportError(new p(\"Must provide only one schema definition.\",{nodes:o})),++a}}}function fn(e){const t=Object.create(null),n=[],r=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(s){return i(s),!1}};function i(s){if(t[s.name.value])return;const a=s.name.value;t[a]=!0;const o=e.getFragmentSpreads(s.selectionSet);if(o.length!==0){r[a]=n.length;for(const l of o){const c=l.name.value,f=r[c];if(n.push(l),f===void 0){const d=e.getFragment(c);d&&i(d)}else{const d=n.slice(f),m=d.slice(0,-1).map(g=>'\"'+g.name.value+'\"').join(\", \");e.reportError(new p(`Cannot spread fragment \"${c}\" within itself`+(m!==\"\"?` via ${m}.`:\".\"),{nodes:d}))}n.pop()}r[a]=void 0}}}function dn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){const r=e.getRecursiveVariableUsages(n);for(const{node:i}of r){const s=i.name.value;t[s]!==!0&&e.reportError(new p(n.name?`Variable \"$${s}\" is not defined by operation \"${n.name.value}\".`:`Variable \"$${s}\" is not defined.`,{nodes:[i,n]}))}}},VariableDefinition(n){t[n.variable.name.value]=!0}}}function Oe(e){const t=[],n=[];return{OperationDefinition(r){return t.push(r),!1},FragmentDefinition(r){return n.push(r),!1},Document:{leave(){const r=Object.create(null);for(const i of t)for(const s of e.getRecursivelyReferencedFragments(i))r[s.name.value]=!0;for(const i of n){const s=i.name.value;r[s]!==!0&&e.reportError(new p(`Fragment \"${s}\" is never used.`,{nodes:i}))}}}}}function pn(e){let t=[];return{OperationDefinition:{enter(){t=[]},leave(n){const r=Object.create(null),i=e.getRecursiveVariableUsages(n);for(const{node:s}of i)r[s.name.value]=!0;for(const s of t){const a=s.variable.name.value;r[a]!==!0&&e.reportError(new p(n.name?`Variable \"$${a}\" is never used in operation \"${n.name.value}\".`:`Variable \"$${a}\" is never used.`,{nodes:s}))}}},VariableDefinition(n){t.push(n)}}}function z(e){switch(e.kind){case u.OBJECT:return{...e,fields:mn(e.fields)};case u.LIST:return{...e,values:e.values.map(z)};case u.INT:case u.FLOAT:case u.STRING:case u.BOOLEAN:case u.NULL:case u.ENUM:case u.VARIABLE:return e}}function mn(e){return e.map(t=>({...t,value:z(t.value)})).sort((t,n)=>fe(t.name.value,n.name.value))}function De(e){return Array.isArray(e)?e.map(([t,n])=>`subfields \"${t}\" conflict because `+De(n)).join(\" and \"):e}function gn(e){const t=new In,n=new Map;return{SelectionSet(r){const i=Tn(e,n,t,e.getParentType(),r);for(const[[s,a],o,l]of i){const c=De(a);e.reportError(new p(`Fields \"${s}\" conflict because ${c}. Use different aliases on the fields to fetch both if this was intentional.`,{nodes:o.concat(l)}))}}}}function Tn(e,t,n,r,i){const s=[],[a,o]=M(e,t,r,i);if(Nn(e,s,t,n,a),o.length!==0)for(let l=0;l<o.length;l++){j(e,s,t,n,!1,a,o[l]);for(let c=l+1;c<o.length;c++)L(e,s,t,n,!1,o[l],o[c])}return s}function j(e,t,n,r,i,s,a){const o=e.getFragment(a);if(!o)return;const[l,c]=H(e,n,o);if(s!==l){Z(e,t,n,r,i,s,l);for(const f of c)r.has(f,a,i)||(r.add(f,a,i),j(e,t,n,r,i,s,f))}}function L(e,t,n,r,i,s,a){if(s===a||r.has(s,a,i))return;r.add(s,a,i);const o=e.getFragment(s),l=e.getFragment(a);if(!o||!l)return;const[c,f]=H(e,n,o),[d,m]=H(e,n,l);Z(e,t,n,r,i,c,d);for(const g of m)L(e,t,n,r,i,s,g);for(const g of f)L(e,t,n,r,i,g,a)}function En(e,t,n,r,i,s,a,o){const l=[],[c,f]=M(e,t,i,s),[d,m]=M(e,t,a,o);Z(e,l,t,n,r,c,d);for(const g of m)j(e,l,t,n,r,c,g);for(const g of f)j(e,l,t,n,r,d,g);for(const g of f)for(const N of m)L(e,l,t,n,r,g,N);return l}function Nn(e,t,n,r,i){for(const[s,a]of Object.entries(i))if(a.length>1)for(let o=0;o<a.length;o++)for(let l=o+1;l<a.length;l++){const c=_e(e,n,r,!1,s,a[o],a[l]);c&&t.push(c)}}function Z(e,t,n,r,i,s,a){for(const[o,l]of Object.entries(s)){const c=a[o];if(c)for(const f of l)for(const d of c){const m=_e(e,n,r,i,o,f,d);m&&t.push(m)}}}function _e(e,t,n,r,i,s,a){const[o,l,c]=s,[f,d,m]=a,g=r||o!==f&&w(o)&&w(f);if(!g){const C=l.name.value,ne=d.name.value;if(C!==ne)return[[i,`\"${C}\" and \"${ne}\" are different fields`],[l],[d]];if(!vn(l,d))return[[i,\"they have differing arguments\"],[l],[d]]}const N=c==null?void 0:c.type,b=m==null?void 0:m.type;if(N&&b&&Q(N,b))return[[i,`they return conflicting types \"${T(N)}\" and \"${T(b)}\"`],[l],[d]];const x=l.selectionSet,ee=d.selectionSet;if(x&&ee){const C=En(e,t,n,g,O(N),x,O(b),ee);return yn(C,i,l,d)}}function vn(e,t){const n=e.arguments,r=t.arguments;if(n===void 0||n.length===0)return r===void 0||r.length===0;if(r===void 0||r.length===0||n.length!==r.length)return!1;const i=new Map(r.map(({name:s,value:a})=>[s.value,a]));return n.every(s=>{const a=s.value,o=i.get(s.name.value);return o===void 0?!1:se(a)===se(o)})}function se(e){return v(z(e))}function Q(e,t){return P(e)?P(t)?Q(e.ofType,t.ofType):!0:P(t)?!0:I(e)?I(t)?Q(e.ofType,t.ofType):!0:I(t)?!0:k(e)||k(t)?e!==t:!1}function M(e,t,n,r){const i=t.get(r);if(i)return i;const s=Object.create(null),a=Object.create(null);be(e,n,r,s,a);const o=[s,Object.keys(a)];return t.set(r,o),o}function H(e,t,n){const r=t.get(n.selectionSet);if(r)return r;const i=h(e.getSchema(),n.typeCondition);return M(e,t,i,n.selectionSet)}function be(e,t,n,r,i){for(const s of n.selections)switch(s.kind){case u.FIELD:{const a=s.name.value;let o;(w(t)||S(t))&&(o=t.getFields()[a]);const l=s.alias?s.alias.value:a;r[l]||(r[l]=[]),r[l].push([t,s,o]);break}case u.FRAGMENT_SPREAD:i[s.name.value]=!0;break;case u.INLINE_FRAGMENT:{const a=s.typeCondition,o=a?h(e.getSchema(),a):t;be(e,o,s.selectionSet,r,i);break}}}function yn(e,t,n,r){if(e.length>0)return[[t,e.map(([i])=>i)],[n,...e.map(([,i])=>i).flat()],[r,...e.map(([,,i])=>i).flat()]]}class In{constructor(){this._data=new Map}has(t,n,r){var i;const[s,a]=t<n?[t,n]:[n,t],o=(i=this._data.get(s))===null||i===void 0?void 0:i.get(a);return o===void 0?!1:r?!0:r===o}add(t,n,r){const[i,s]=t<n?[t,n]:[n,t],a=this._data.get(i);a===void 0?this._data.set(i,new Map([[s,r]])):a.set(s,r)}}function hn(e){return{InlineFragment(t){const n=e.getType(),r=e.getParentType();if(R(n)&&R(r)&&!te(e.getSchema(),n,r)){const i=T(r),s=T(n);e.reportError(new p(`Fragment cannot be spread here as objects of type \"${i}\" can never be of type \"${s}\".`,{nodes:t}))}},FragmentSpread(t){const n=t.name.value,r=On(e,n),i=e.getParentType();if(r&&i&&!te(e.getSchema(),r,i)){const s=T(i),a=T(r);e.reportError(new p(`Fragment \"${n}\" cannot be spread here as objects of type \"${s}\" can never be of type \"${a}\".`,{nodes:t}))}}}}function On(e,t){const n=e.getFragment(t);if(n){const r=h(e.getSchema(),n.typeCondition);if(R(r))return r}}function Dn(e){const t=e.getSchema(),n=Object.create(null);for(const i of e.getDocument().definitions)B(i)&&(n[i.name.value]=i);return{ScalarTypeExtension:r,ObjectTypeExtension:r,InterfaceTypeExtension:r,UnionTypeExtension:r,EnumTypeExtension:r,InputObjectTypeExtension:r};function r(i){const s=i.name.value,a=n[s],o=t==null?void 0:t.getType(s);let l;if(a?l=_n[a.kind]:o&&(l=bn(o)),l){if(l!==i.kind){const c=Sn(i.kind);e.reportError(new p(`Cannot extend non-${c} type \"${s}\".`,{nodes:a?[a,i]:i}))}}else{const c=Object.keys({...n,...t==null?void 0:t.getTypeMap()}),f=F(s,c);e.reportError(new p(`Cannot extend type \"${s}\" because it is not defined.`+_(f),{nodes:i.name}))}}}const _n={[u.SCALAR_TYPE_DEFINITION]:u.SCALAR_TYPE_EXTENSION,[u.OBJECT_TYPE_DEFINITION]:u.OBJECT_TYPE_EXTENSION,[u.INTERFACE_TYPE_DEFINITION]:u.INTERFACE_TYPE_EXTENSION,[u.UNION_TYPE_DEFINITION]:u.UNION_TYPE_EXTENSION,[u.ENUM_TYPE_DEFINITION]:u.ENUM_TYPE_EXTENSION,[u.INPUT_OBJECT_TYPE_DEFINITION]:u.INPUT_OBJECT_TYPE_EXTENSION};function bn(e){if(ke(e))return u.SCALAR_TYPE_EXTENSION;if(w(e))return u.OBJECT_TYPE_EXTENSION;if(S(e))return u.INTERFACE_TYPE_EXTENSION;if(Ue(e))return u.UNION_TYPE_EXTENSION;if(de(e))return u.ENUM_TYPE_EXTENSION;if($(e))return u.INPUT_OBJECT_TYPE_EXTENSION;y(!1,\"Unexpected type: \"+T(e))}function Sn(e){switch(e){case u.SCALAR_TYPE_EXTENSION:return\"scalar\";case u.OBJECT_TYPE_EXTENSION:return\"object\";case u.INTERFACE_TYPE_EXTENSION:return\"interface\";case u.UNION_TYPE_EXTENSION:return\"union\";case u.ENUM_TYPE_EXTENSION:return\"enum\";case u.INPUT_OBJECT_TYPE_EXTENSION:return\"input object\";default:y(!1,\"Unexpected kind: \"+T(e))}}function wn(e){return{...Fn(e),Field:{leave(t){var n;const r=e.getFieldDef();if(!r)return!1;const i=new Set((n=t.arguments)===null||n===void 0?void 0:n.map(s=>s.name.value));for(const s of r.args)if(!i.has(s.name)&&pe(s)){const a=T(s.type);e.reportError(new p(`Field \"${r.name}\" argument \"${s.name}\" of type \"${a}\" is required, but it was not provided.`,{nodes:t}))}}}}}function Fn(e){var t;const n=Object.create(null),r=e.getSchema(),i=(t=r==null?void 0:r.getDirectives())!==null&&t!==void 0?t:X;for(const o of i)n[o.name]=U(o.args.filter(pe),l=>l.name);const s=e.getDocument().definitions;for(const o of s)if(o.kind===u.DIRECTIVE_DEFINITION){var a;const l=(a=o.arguments)!==null&&a!==void 0?a:[];n[o.name.value]=U(l.filter(Rn),c=>c.name.value)}return{Directive:{leave(o){const l=o.name.value,c=n[l];if(c){var f;const d=(f=o.arguments)!==null&&f!==void 0?f:[],m=new Set(d.map(g=>g.name.value));for(const[g,N]of Object.entries(c))if(!m.has(g)){const b=Ve(N.type)?T(N.type):v(N.type);e.reportError(new p(`Directive \"@${l}\" argument \"${g}\" of type \"${b}\" is required, but it was not provided.`,{nodes:o}))}}}}}}function Rn(e){return e.type.kind===u.NON_NULL_TYPE&&e.defaultValue==null}function $n(e){return{Field(t){const n=e.getType(),r=t.selectionSet;if(n){if(k(O(n))){if(r){const i=t.name.value,s=T(n);e.reportError(new p(`Field \"${i}\" must not have a selection since type \"${s}\" has no subfields.`,{nodes:r}))}}else if(!r){const i=t.name.value,s=T(n);e.reportError(new p(`Field \"${i}\" of type \"${s}\" must have a selection of subfields. Did you mean \"${i} { ... }\"?`,{nodes:t}))}}}}}function Cn(e,t,n){var r;const i={},s=(r=t.arguments)!==null&&r!==void 0?r:[],a=U(s,o=>o.name.value);for(const o of e.args){const l=o.name,c=o.type,f=a[l];if(!f){if(o.defaultValue!==void 0)i[l]=o.defaultValue;else if(I(c))throw new p(`Argument \"${l}\" of required type \"${T(c)}\" was not provided.`,{nodes:t});continue}const d=f.value;let m=d.kind===u.NULL;if(d.kind===u.VARIABLE){const N=d.name.value;if(n==null||!An(n,N)){if(o.defaultValue!==void 0)i[l]=o.defaultValue;else if(I(c))throw new p(`Argument \"${l}\" of required type \"${T(c)}\" was provided the variable \"$${N}\" which was not provided a runtime value.`,{nodes:d});continue}m=n[N]==null}if(m&&I(c))throw new p(`Argument \"${l}\" of non-null type \"${T(c)}\" must not be null.`,{nodes:d});const g=je(d,c,n);if(g===void 0)throw new p(`Argument \"${l}\" has invalid value ${v(d)}.`,{nodes:d});i[l]=g}return i}function oe(e,t,n){var r;const i=(r=t.directives)===null||r===void 0?void 0:r.find(s=>s.name.value===e.name);if(i)return Cn(e,i,n)}function An(e,t){return Object.prototype.hasOwnProperty.call(e,t)}function Pn(e,t,n,r,i){const s=new Map;return K(e,t,n,r,i,s,new Set),s}function K(e,t,n,r,i,s,a){for(const o of i.selections)switch(o.kind){case u.FIELD:{if(!J(n,o))continue;const l=kn(o),c=s.get(l);c!==void 0?c.push(o):s.set(l,[o]);break}case u.INLINE_FRAGMENT:{if(!J(n,o)||!ae(e,o,r))continue;K(e,t,n,r,o.selectionSet,s,a);break}case u.FRAGMENT_SPREAD:{const l=o.name.value;if(a.has(l)||!J(n,o))continue;a.add(l);const c=t[l];if(!c||!ae(e,c,r))continue;K(e,t,n,r,c.selectionSet,s,a);break}}}function J(e,t){const n=oe(Le,t,e);if((n==null?void 0:n.if)===!0)return!1;const r=oe(Me,t,e);return(r==null?void 0:r.if)!==!1}function ae(e,t,n){const r=t.typeCondition;if(!r)return!0;const i=h(e,r);return i===n?!0:ue(i)?e.isSubType(i,n):!1}function kn(e){return e.alias?e.alias.value:e.name.value}function Un(e){return{OperationDefinition(t){if(t.operation===\"subscription\"){const n=e.getSchema(),r=n.getSubscriptionType();if(r){const i=t.name?t.name.value:null,s=Object.create(null),a=e.getDocument(),o=Object.create(null);for(const c of a.definitions)c.kind===u.FRAGMENT_DEFINITION&&(o[c.name.value]=c);const l=Pn(n,o,s,r,t.selectionSet);if(l.size>1){const d=[...l.values()].slice(1).flat();e.reportError(new p(i!=null?`Subscription \"${i}\" must select only one top level field.`:\"Anonymous Subscription must select only one top level field.\",{nodes:d}))}for(const c of l.values())c[0].name.value.startsWith(\"__\")&&e.reportError(new p(i!=null?`Subscription \"${i}\" must not select an introspection top level field.`:\"Anonymous Subscription must not select an introspection top level field.\",{nodes:c}))}}}}}function Se(e,t){const n=new Map;for(const r of e){const i=t(r),s=n.get(i);s===void 0?n.set(i,[r]):s.push(r)}return n}function we(e){return{Field:t,Directive:t};function t(n){var r;const i=(r=n.arguments)!==null&&r!==void 0?r:[],s=Se(i,a=>a.name.value);for(const[a,o]of s)o.length>1&&e.reportError(new p(`There can be only one argument named \"${a}\".`,{nodes:o.map(l=>l.name)}))}}function Vn(e){const t=Object.create(null),n=e.getSchema();return{DirectiveDefinition(r){const i=r.name.value;if(n!=null&&n.getDirective(i)){e.reportError(new p(`Directive \"@${i}\" already exists in the schema. It cannot be redefined.`,{nodes:r.name}));return}return t[i]?e.reportError(new p(`There can be only one directive named \"@${i}\".`,{nodes:[t[i],r.name]})):t[i]=r.name,!1}}}function Fe(e){const t=Object.create(null),n=e.getSchema(),r=n?n.getDirectives():X;for(const o of r)t[o.name]=!o.isRepeatable;const i=e.getDocument().definitions;for(const o of i)o.kind===u.DIRECTIVE_DEFINITION&&(t[o.name.value]=!o.repeatable);const s=Object.create(null),a=Object.create(null);return{enter(o){if(!(\"directives\"in o)||!o.directives)return;let l;if(o.kind===u.SCHEMA_DEFINITION||o.kind===u.SCHEMA_EXTENSION)l=s;else if(B(o)||Ne(o)){const c=o.name.value;l=a[c],l===void 0&&(a[c]=l=Object.create(null))}else l=Object.create(null);for(const c of o.directives){const f=c.name.value;t[f]&&(l[f]?e.reportError(new p(`The directive \"@${f}\" can only be used once at this location.`,{nodes:[l[f],c]})):l[f]=c)}}}}function jn(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{EnumTypeDefinition:i,EnumTypeExtension:i};function i(s){var a;const o=s.name.value;r[o]||(r[o]=Object.create(null));const l=(a=s.values)!==null&&a!==void 0?a:[],c=r[o];for(const f of l){const d=f.name.value,m=n[o];de(m)&&m.getValue(d)?e.reportError(new p(`Enum value \"${o}.${d}\" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:f.name})):c[d]?e.reportError(new p(`Enum value \"${o}.${d}\" can only be defined once.`,{nodes:[c[d],f.name]})):c[d]=f.name}return!1}}function Ln(e){const t=e.getSchema(),n=t?t.getTypeMap():Object.create(null),r=Object.create(null);return{InputObjectTypeDefinition:i,InputObjectTypeExtension:i,InterfaceTypeDefinition:i,InterfaceTypeExtension:i,ObjectTypeDefinition:i,ObjectTypeExtension:i};function i(s){var a;const o=s.name.value;r[o]||(r[o]=Object.create(null));const l=(a=s.fields)!==null&&a!==void 0?a:[],c=r[o];for(const f of l){const d=f.name.value;Mn(n[o],d)?e.reportError(new p(`Field \"${o}.${d}\" already exists in the schema. It cannot also be defined in this type extension.`,{nodes:f.name})):c[d]?e.reportError(new p(`Field \"${o}.${d}\" can only be defined once.`,{nodes:[c[d],f.name]})):c[d]=f.name}return!1}}function Mn(e,t){return w(e)||S(e)||$(e)?e.getFields()[t]!=null:!1}function Yn(e){const t=Object.create(null);return{OperationDefinition:()=>!1,FragmentDefinition(n){const r=n.name.value;return t[r]?e.reportError(new p(`There can be only one fragment named \"${r}\".`,{nodes:[t[r],n.name]})):t[r]=n.name,!1}}}function Re(e){const t=[];let n=Object.create(null);return{ObjectValue:{enter(){t.push(n),n=Object.create(null)},leave(){const r=t.pop();r||y(!1),n=r}},ObjectField(r){const i=r.name.value;n[i]?e.reportError(new p(`There can be only one input field named \"${i}\".`,{nodes:[n[i],r.name]})):n[i]=r.name}}}function Xn(e){const t=Object.create(null);return{OperationDefinition(n){const r=n.name;return r&&(t[r.value]?e.reportError(new p(`There can be only one operation named \"${r.value}\".`,{nodes:[t[r.value],r]})):t[r.value]=r),!1},FragmentDefinition:()=>!1}}function Bn(e){const t=e.getSchema(),n=Object.create(null),r=t?{query:t.getQueryType(),mutation:t.getMutationType(),subscription:t.getSubscriptionType()}:{};return{SchemaDefinition:i,SchemaExtension:i};function i(s){var a;const o=(a=s.operationTypes)!==null&&a!==void 0?a:[];for(const l of o){const c=l.operation,f=n[c];r[c]?e.reportError(new p(`Type for ${c} already defined in the schema. It cannot be redefined.`,{nodes:l})):f?e.reportError(new p(`There can be only one ${c} type in schema.`,{nodes:[f,l]})):n[c]=l}return!1}}function qn(e){const t=Object.create(null),n=e.getSchema();return{ScalarTypeDefinition:r,ObjectTypeDefinition:r,InterfaceTypeDefinition:r,UnionTypeDefinition:r,EnumTypeDefinition:r,InputObjectTypeDefinition:r};function r(i){const s=i.name.value;if(n!=null&&n.getType(s)){e.reportError(new p(`Type \"${s}\" already exists in the schema. It cannot also be defined in this type definition.`,{nodes:i.name}));return}return t[s]?e.reportError(new p(`There can be only one type named \"${s}\".`,{nodes:[t[s],i.name]})):t[s]=i.name,!1}}function Gn(e){return{OperationDefinition(t){var n;const r=(n=t.variableDefinitions)!==null&&n!==void 0?n:[],i=Se(r,s=>s.variable.name.value);for(const[s,a]of i)a.length>1&&e.reportError(new p(`There can be only one variable named \"$${s}\".`,{nodes:a.map(o=>o.variable.name)}))}}}function Jn(e){return{ListValue(t){const n=Ye(e.getParentInputType());if(!P(n))return D(e,t),!1},ObjectValue(t){const n=O(e.getInputType());if(!$(n))return D(e,t),!1;const r=U(t.fields,i=>i.name.value);for(const i of Object.values(n.getFields()))if(!r[i.name]&&Xe(i)){const a=T(i.type);e.reportError(new p(`Field \"${n.name}.${i.name}\" of required type \"${a}\" was not provided.`,{nodes:t}))}},ObjectField(t){const n=O(e.getParentInputType());if(!e.getInputType()&&$(n)){const i=F(t.name.value,Object.keys(n.getFields()));e.reportError(new p(`Field \"${t.name.value}\" is not defined by type \"${n.name}\".`+_(i),{nodes:t}))}},NullValue(t){const n=e.getInputType();I(n)&&e.reportError(new p(`Expected value of type \"${T(n)}\", found ${v(t)}.`,{nodes:t}))},EnumValue:t=>D(e,t),IntValue:t=>D(e,t),FloatValue:t=>D(e,t),StringValue:t=>D(e,t),BooleanValue:t=>D(e,t)}}function D(e,t){const n=e.getInputType();if(!n)return;const r=O(n);if(!k(r)){const i=T(n);e.reportError(new p(`Expected value of type \"${i}\", found ${v(t)}.`,{nodes:t}));return}try{if(r.parseLiteral(t,void 0)===void 0){const s=T(n);e.reportError(new p(`Expected value of type \"${s}\", found ${v(t)}.`,{nodes:t}))}}catch(i){const s=T(n);i instanceof p?e.reportError(i):e.reportError(new p(`Expected value of type \"${s}\", found ${v(t)}; `+i.message,{nodes:t,originalError:i}))}}function Qn(e){return{VariableDefinition(t){const n=h(e.getSchema(),t.type);if(n!==void 0&&!Be(n)){const r=t.variable.name.value,i=v(t.type);e.reportError(new p(`Variable \"$${r}\" cannot be non-input type \"${i}\".`,{nodes:t.type}))}}}}function Hn(e){let t=Object.create(null);return{OperationDefinition:{enter(){t=Object.create(null)},leave(n){const r=e.getRecursiveVariableUsages(n);for(const{node:i,type:s,defaultValue:a}of r){const o=i.name.value,l=t[o];if(l&&s){const c=e.getSchema(),f=h(c,l.type);if(f&&!Kn(c,f,l.defaultValue,s,a)){const d=T(f),m=T(s);e.reportError(new p(`Variable \"$${o}\" of type \"${d}\" used in position expecting type \"${m}\".`,{nodes:[l,i]}))}}}}},VariableDefinition(n){t[n.variable.name.value]=n}}}function Kn(e,t,n,r,i){if(I(r)&&!I(t)){if(!(n!=null&&n.kind!==u.NULL)&&!(i!==void 0))return!1;const o=r.ofType;return re(e,t,o)}return re(e,t,r)}const $e=Object.freeze([ve,Xn,cn,Un,he,tn,Qn,$n,xe,Yn,Ie,Oe,hn,fn,Gn,dn,pn,ye,Fe,rn,we,Jn,wn,Hn,gn,Re]);class Wn{constructor(t,n){this._ast=t,this._fragments=void 0,this._fragmentSpreads=new Map,this._recursivelyReferencedFragments=new Map,this._onError=n}get[Symbol.toStringTag](){return\"ASTValidationContext\"}reportError(t){this._onError(t)}getDocument(){return this._ast}getFragment(t){let n;if(this._fragments)n=this._fragments;else{n=Object.create(null);for(const r of this.getDocument().definitions)r.kind===u.FRAGMENT_DEFINITION&&(n[r.name.value]=r);this._fragments=n}return n[t]}getFragmentSpreads(t){let n=this._fragmentSpreads.get(t);if(!n){n=[];const r=[t];let i;for(;i=r.pop();)for(const s of i.selections)s.kind===u.FRAGMENT_SPREAD?n.push(s):s.selectionSet&&r.push(s.selectionSet);this._fragmentSpreads.set(t,n)}return n}getRecursivelyReferencedFragments(t){let n=this._recursivelyReferencedFragments.get(t);if(!n){n=[];const r=Object.create(null),i=[t.selectionSet];let s;for(;s=i.pop();)for(const a of this.getFragmentSpreads(s)){const o=a.name.value;if(r[o]!==!0){r[o]=!0;const l=this.getFragment(o);l&&(n.push(l),i.push(l.selectionSet))}}this._recursivelyReferencedFragments.set(t,n)}return n}}class zn extends Wn{constructor(t,n,r,i){super(n,i),this._schema=t,this._typeInfo=r,this._variableUsages=new Map,this._recursiveVariableUsages=new Map}get[Symbol.toStringTag](){return\"ValidationContext\"}getSchema(){return this._schema}getVariableUsages(t){let n=this._variableUsages.get(t);if(!n){const r=[],i=new me(this._schema);ge(t,Te(i,{VariableDefinition:()=>!1,Variable(s){r.push({node:s,type:i.getInputType(),defaultValue:i.getDefaultValue()})}})),n=r,this._variableUsages.set(t,n)}return n}getRecursiveVariableUsages(t){let n=this._recursiveVariableUsages.get(t);if(!n){n=this.getVariableUsages(t);for(const r of this.getRecursivelyReferencedFragments(t))n=n.concat(this.getVariableUsages(r));this._recursiveVariableUsages.set(t,n)}return n}getType(){return this._typeInfo.getType()}getParentType(){return this._typeInfo.getParentType()}getInputType(){return this._typeInfo.getInputType()}getParentInputType(){return this._typeInfo.getParentInputType()}getFieldDef(){return this._typeInfo.getFieldDef()}getDirective(){return this._typeInfo.getDirective()}getArgument(){return this._typeInfo.getArgument()}getEnumValue(){return this._typeInfo.getEnumValue()}}function Ce(e,t,n=$e,r,i=new me(e)){var s;const a=(s=r==null?void 0:r.maxErrors)!==null&&s!==void 0?s:100;t||qe(!1,\"Must provide document.\"),Ge(e);const o=Object.freeze({}),l=[],c=new zn(e,t,i,d=>{if(l.length>=a)throw l.push(new p(\"Too many validation errors, error limit reached. Validation aborted.\")),o;l.push(d)}),f=Je(n.map(d=>d(c)));try{ge(t,Te(i,f))}catch(d){if(d!==o)throw d}return l}function Zn(e){return{Field(t){const n=e.getFieldDef(),r=n==null?void 0:n.deprecationReason;if(n&&r!=null){const i=e.getParentType();i!=null||y(!1),e.reportError(new p(`The field ${i.name}.${n.name} is deprecated. ${r}`,{nodes:t}))}},Argument(t){const n=e.getArgument(),r=n==null?void 0:n.deprecationReason;if(n&&r!=null){const i=e.getDirective();if(i!=null)e.reportError(new p(`Directive \"@${i.name}\" argument \"${n.name}\" is deprecated. ${r}`,{nodes:t}));else{const s=e.getParentType(),a=e.getFieldDef();s!=null&&a!=null||y(!1),e.reportError(new p(`Field \"${s.name}.${a.name}\" argument \"${n.name}\" is deprecated. ${r}`,{nodes:t}))}}},ObjectField(t){const n=O(e.getParentInputType());if($(n)){const r=n.getFields()[t.name.value],i=r==null?void 0:r.deprecationReason;i!=null&&e.reportError(new p(`The input field ${n.name}.${r.name} is deprecated. ${i}`,{nodes:t}))}},EnumValue(t){const n=e.getEnumValue(),r=n==null?void 0:n.deprecationReason;if(n&&r!=null){const i=O(e.getInputType());i!=null||y(!1),e.reportError(new p(`The enum value \"${i.name}.${n.name}\" is deprecated. ${r}`,{nodes:t}))}}}}const xn=[un,Bn,qn,jn,Ln,Vn,he,ye,Fe,Dn,we,Re];function et(e,t,n,r,i){const s=$e.filter(o=>!(o===Oe||o===ve||r&&o===Ie));return n&&Array.prototype.push.apply(s,n),i&&Array.prototype.push.apply(s,xn),Ce(e,t,s).filter(o=>{if(o.message.includes(\"Unknown directive\")&&o.nodes){const l=o.nodes[0];if(l&&l.kind===u.DIRECTIVE){const c=l.name.value;if(c===\"arguments\"||c===\"argumentDefinitions\")return!1}}return!0})}const A={Error:\"Error\",Warning:\"Warning\",Information:\"Information\",Hint:\"Hint\"},W={[A.Error]:1,[A.Warning]:2,[A.Information]:3,[A.Hint]:4},Y=(e,t)=>{if(!e)throw new Error(t)};function nt(e,t=null,n,r,i){var s,a;let o=null,l=\"\";i&&(l=typeof i==\"string\"?i:i.reduce((f,d)=>f+v(d)+`\n\n`,\"\"));const c=l?`${e}\n\n${l}`:e;try{o=Qe(c)}catch(f){if(f instanceof p){const d=rt((a=(s=f.locations)===null||s===void 0?void 0:s[0])!==null&&a!==void 0?a:{line:0,column:0},c);return[{severity:W.Error,message:f.message,source:\"GraphQL: Syntax\",range:d}]}throw f}return tt(o,t,n,r)}function tt(e,t=null,n,r){if(!t)return[];const i=et(t,e,n,r).flatMap(a=>le(a,W.Error,\"Validation\")),s=Ce(t,e,[Zn]).flatMap(a=>le(a,W.Warning,\"Deprecation\"));return i.concat(s)}function le(e,t,n){if(!e.nodes)return[];const r=[];for(const[i,s]of e.nodes.entries()){const a=s.kind!==\"Variable\"&&\"name\"in s&&s.name!==void 0?s.name:\"variable\"in s&&s.variable!==void 0?s.variable:s;if(a){Y(e.locations,\"GraphQL validation error requires locations.\");const o=e.locations[i],l=it(a),c=o.column+(l.end-l.start);r.push({source:`GraphQL: ${n}`,message:e.message,severity:t,range:new Ee(new V(o.line-1,o.column-1),new V(o.line-1,c))})}}return r}function rt(e,t){const n=Ke(),r=n.startState(),i=t.split(`\n`);Y(i.length>=e.line,\"Query text must have more lines than where the error happened\");let s=null;for(let c=0;c<e.line;c++)for(s=new He(i[c]);!s.eol()&&n.token(s,r)!==\"invalidchar\";);Y(s,\"Expected Parser stream to be available.\");const a=e.line-1,o=s.getStartOfToken(),l=s.getCurrentPosition();return new Ee(new V(a,o),new V(a,l))}function it(e){const n=e.loc;return Y(n,\"Expected ASTNode to have a location.\"),n}const ce=[\"error\",\"warning\",\"information\",\"hint\"],st={\"GraphQL: Validation\":\"validation\",\"GraphQL: Deprecation\":\"deprecation\",\"GraphQL: Syntax\":\"syntax\"};q.registerHelper(\"lint\",\"graphql\",(e,t)=>{const{schema:n,validationRules:r,externalFragments:i}=t;return nt(e,n,r,void 0,i).map(s=>({message:s.message,severity:s.severity?ce[s.severity-1]:ce[0],type:s.source?st[s.source]:void 0,from:q.Pos(s.range.start.line,s.range.start.character),to:q.Pos(s.range.end.line,s.range.end.character)}))});\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/lint.es3-bcaf3718.js",
    "content": "import{C as H}from\"./codemirror.es-52e8b92d.js\";import\"./codemirror.es2-5884f31a.js\";import{V,W as J,X as P,Y as U,a4 as D}from\"./index-27dc12ba.js\";var M=Object.defineProperty,n=(e,r)=>M(e,\"name\",{value:r,configurable:!0});function B(e){d=e,x=e.length,s=u=g=-1,a(),N();const r=S();return p(\"EOF\"),r}n(B,\"jsonParse\");let d,x,s,u,g,t,l;function S(){const e=s,r=[];if(p(\"{\"),!v(\"}\")){do r.push(L());while(v(\",\"));p(\"}\")}return{kind:\"Object\",start:e,end:g,members:r}}n(S,\"parseObj\");function L(){const e=s,r=l===\"String\"?j():null;p(\"String\"),p(\":\");const i=T();return{kind:\"Member\",start:e,end:g,key:r,value:i}}n(L,\"parseMember\");function G(){const e=s,r=[];if(p(\"[\"),!v(\"]\")){do r.push(T());while(v(\",\"));p(\"]\")}return{kind:\"Array\",start:e,end:g,values:r}}n(G,\"parseArr\");function T(){switch(l){case\"[\":return G();case\"{\":return S();case\"String\":case\"Number\":case\"Boolean\":case\"Null\":const e=j();return N(),e}p(\"Value\")}n(T,\"parseVal\");function j(){return{kind:l,start:s,end:u,value:JSON.parse(d.slice(s,u))}}n(j,\"curToken\");function p(e){if(l===e){N();return}let r;if(l===\"EOF\")r=\"[end of file]\";else if(u-s>1)r=\"`\"+d.slice(s,u)+\"`\";else{const i=d.slice(s).match(/^.+?\\b/);r=\"`\"+(i?i[0]:d[s])+\"`\"}throw m(`Expected ${e} but found ${r}.`)}n(p,\"expect\");class F extends Error{constructor(r,i){super(r),this.position=i}}n(F,\"JSONSyntaxError\");function m(e){return new F(e,{start:s,end:u})}n(m,\"syntaxError\");function v(e){if(l===e)return N(),!0}n(v,\"skip\");function a(){return u<x&&(u++,t=u===x?0:d.charCodeAt(u)),t}n(a,\"ch\");function N(){for(g=u;t===9||t===10||t===13||t===32;)a();if(t===0){l=\"EOF\";return}switch(s=u,t){case 34:return l=\"String\",Q();case 45:case 48:case 49:case 50:case 51:case 52:case 53:case 54:case 55:case 56:case 57:return l=\"Number\",I();case 102:if(d.slice(s,s+5)!==\"false\")break;u+=4,a(),l=\"Boolean\";return;case 110:if(d.slice(s,s+4)!==\"null\")break;u+=3,a(),l=\"Null\";return;case 116:if(d.slice(s,s+4)!==\"true\")break;u+=3,a(),l=\"Boolean\";return}l=d[s],a()}n(N,\"lex\");function Q(){for(a();t!==34&&t>31;)if(t===92)switch(t=a(),t){case 34:case 47:case 92:case 98:case 102:case 110:case 114:case 116:a();break;case 117:a(),k(),k(),k(),k();break;default:throw m(\"Bad character escape sequence.\")}else{if(u===x)throw m(\"Unterminated string.\");a()}if(t===34){a();return}throw m(\"Unterminated string.\")}n(Q,\"readString\");function k(){if(t>=48&&t<=57||t>=65&&t<=70||t>=97&&t<=102)return a();throw m(\"Expected hexadecimal digit.\")}n(k,\"readHex\");function I(){t===45&&a(),t===48?a():w(),t===46&&(a(),w()),(t===69||t===101)&&(t=a(),(t===43||t===45)&&a(),w())}n(I,\"readNumber\");function w(){if(t<48||t>57)throw m(\"Expected decimal digit.\");do a();while(t>=48&&t<=57)}n(w,\"readDigits\");H.registerHelper(\"lint\",\"graphql-variables\",(e,r,i)=>{if(!e)return[];let f;try{f=B(e)}catch(c){if(c instanceof F)return[O(i,c.position,c.message)];throw c}const{variableToType:o}=r;return o?A(i,o,f):[]});function A(e,r,i){var f;const o=[];for(const c of i.members)if(c){const b=(f=c.key)===null||f===void 0?void 0:f.value,h=r[b];if(h)for(const[E,C]of y(h,c.value))o.push(O(e,E,C));else o.push(O(e,c.key,`Variable \"$${b}\" does not appear in any GraphQL query.`))}return o}n(A,\"validateVariables\");function y(e,r){if(!e||!r)return[];if(e instanceof V)return r.kind===\"Null\"?[[r,`Type \"${e}\" is non-nullable and cannot be null.`]]:y(e.ofType,r);if(r.kind===\"Null\")return[];if(e instanceof J){const i=e.ofType;if(r.kind===\"Array\"){const f=r.values||[];return $(f,o=>y(i,o))}return y(i,r)}if(e instanceof P){if(r.kind!==\"Object\")return[[r,`Type \"${e}\" must be an Object.`]];const i=Object.create(null),f=$(r.members,o=>{var c;const b=(c=o==null?void 0:o.key)===null||c===void 0?void 0:c.value;i[b]=!0;const h=e.getFields()[b];if(!h)return[[o.key,`Type \"${e}\" does not have a field \"${b}\".`]];const E=h?h.type:void 0;return y(E,o.value)});for(const o of Object.keys(e.getFields())){const c=e.getFields()[o];!i[o]&&c.type instanceof V&&!c.defaultValue&&f.push([r,`Object of type \"${e}\" is missing required field \"${o}\".`])}return f}return e.name===\"Boolean\"&&r.kind!==\"Boolean\"||e.name===\"String\"&&r.kind!==\"String\"||e.name===\"ID\"&&r.kind!==\"Number\"&&r.kind!==\"String\"||e.name===\"Float\"&&r.kind!==\"Number\"||e.name===\"Int\"&&(r.kind!==\"Number\"||(r.value|0)!==r.value)?[[r,`Expected value of type \"${e}\".`]]:(e instanceof U||e instanceof D)&&(r.kind!==\"String\"&&r.kind!==\"Number\"&&r.kind!==\"Boolean\"&&r.kind!==\"Null\"||q(e.parseValue(r.value)))?[[r,`Expected value of type \"${e}\".`]]:[]}n(y,\"validateValue\");function O(e,r,i){return{message:i,severity:\"error\",type:\"validation\",from:e.posFromIndex(r.start),to:e.posFromIndex(r.end)}}n(O,\"lintError\");function q(e){return e==null||e!==e}n(q,\"isNullish\");function $(e,r){return Array.prototype.concat.apply([],e.map(r))}n($,\"mapCat\");\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/matchbrackets.es-97d2e827.js",
    "content": "import{h as c}from\"./codemirror.es2-5884f31a.js\";import{j as p}from\"./matchbrackets.es2-f53f57e6.js\";var s=Object.defineProperty,u=(e,o)=>s(e,\"name\",{value:o,configurable:!0});function f(e,o){for(var n=0;n<o.length;n++){const r=o[n];if(typeof r!=\"string\"&&!Array.isArray(r)){for(const t in r)if(t!==\"default\"&&!(t in e)){const a=Object.getOwnPropertyDescriptor(r,t);a&&Object.defineProperty(e,t,a.get?a:{enumerable:!0,get:()=>r[t]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}))}u(f,\"_mergeNamespaces\");var i=p();const l=c(i),y=f({__proto__:null,default:l},[i]);export{y as m};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/matchbrackets.es2-f53f57e6.js",
    "content": "import{c as N}from\"./codemirror.es2-5884f31a.js\";var j=Object.defineProperty,u=(M,b)=>j(M,\"name\",{value:b,configurable:!0}),C={exports:{}},T;function R(){return T||(T=1,function(M,b){(function(f){f(N())})(function(f){var E=/MSIE \\d/.test(navigator.userAgent)&&(document.documentMode==null||document.documentMode<8),g=f.Pos,x={\"(\":\")>\",\")\":\"(<\",\"[\":\"]>\",\"]\":\"[<\",\"{\":\"}>\",\"}\":\"{<\",\"<\":\">>\",\">\":\"<<\"};function v(t){return t&&t.bracketRegex||/[(){}[\\]]/}u(v,\"bracketRegex\");function y(t,n,e){var i=t.getLineHandle(n.line),a=n.ch-1,h=e&&e.afterCursor;h==null&&(h=/(^| )cm-fat-cursor($| )/.test(t.getWrapperElement().className));var l=v(e),o=!h&&a>=0&&l.test(i.text.charAt(a))&&x[i.text.charAt(a)]||l.test(i.text.charAt(a+1))&&x[i.text.charAt(++a)];if(!o)return null;var r=o.charAt(1)==\">\"?1:-1;if(e&&e.strict&&r>0!=(a==n.ch))return null;var m=t.getTokenTypeAt(g(n.line,a+1)),c=A(t,g(n.line,a+(r>0?1:0)),r,m,e);return c==null?null:{from:g(n.line,a),to:c&&c.pos,match:c&&c.ch==o.charAt(0),forward:r>0}}u(y,\"findMatchingBracket\");function A(t,n,e,i,a){for(var h=a&&a.maxScanLineLength||1e4,l=a&&a.maxScanLines||1e3,o=[],r=v(a),m=e>0?Math.min(n.line+l,t.lastLine()+1):Math.max(t.firstLine()-1,n.line-l),c=n.line;c!=m;c+=e){var s=t.getLine(c);if(s){var k=e>0?0:s.length-1,S=e>0?s.length:-1;if(!(s.length>h))for(c==n.line&&(k=n.ch-(e<0?1:0));k!=S;k+=e){var B=s.charAt(k);if(r.test(B)&&(i===void 0||(t.getTokenTypeAt(g(c,k+1))||\"\")==(i||\"\"))){var H=x[B];if(H&&H.charAt(1)==\">\"==e>0)o.push(B);else if(o.length)o.pop();else return{pos:g(c,k),ch:B}}}}}return c-e==(e>0?t.lastLine():t.firstLine())?!1:null}u(A,\"scanForBracket\");function L(t,n,e){for(var i=t.state.matchBrackets.maxHighlightLineLength||1e3,a=e&&e.highlightNonMatching,h=[],l=t.listSelections(),o=0;o<l.length;o++){var r=l[o].empty()&&y(t,l[o].head,e);if(r&&(r.match||a!==!1)&&t.getLine(r.from.line).length<=i){var m=r.match?\"CodeMirror-matchingbracket\":\"CodeMirror-nonmatchingbracket\";h.push(t.markText(r.from,g(r.from.line,r.from.ch+1),{className:m})),r.to&&t.getLine(r.to.line).length<=i&&h.push(t.markText(r.to,g(r.to.line,r.to.ch+1),{className:m}))}}if(h.length){E&&t.state.focused&&t.focus();var c=u(function(){t.operation(function(){for(var s=0;s<h.length;s++)h[s].clear()})},\"clear\");if(n)setTimeout(c,800);else return c}}u(L,\"matchBrackets\");function d(t){t.operation(function(){t.state.matchBrackets.currentlyHighlighted&&(t.state.matchBrackets.currentlyHighlighted(),t.state.matchBrackets.currentlyHighlighted=null),t.state.matchBrackets.currentlyHighlighted=L(t,!1,t.state.matchBrackets)})}u(d,\"doMatchBrackets\");function p(t){t.state.matchBrackets&&t.state.matchBrackets.currentlyHighlighted&&(t.state.matchBrackets.currentlyHighlighted(),t.state.matchBrackets.currentlyHighlighted=null)}u(p,\"clearHighlighted\"),f.defineOption(\"matchBrackets\",!1,function(t,n,e){e&&e!=f.Init&&(t.off(\"cursorActivity\",d),t.off(\"focus\",d),t.off(\"blur\",p),p(t)),n&&(t.state.matchBrackets=typeof n==\"object\"?n:{},t.on(\"cursorActivity\",d),t.on(\"focus\",d),t.on(\"blur\",p))}),f.defineExtension(\"matchBrackets\",function(){L(this,!0)}),f.defineExtension(\"findMatchingBracket\",function(t,n,e){return(e||typeof n==\"boolean\")&&(e?(e.strict=n,n=e):n=n?{strict:!0}:null),y(this,t,n)}),f.defineExtension(\"scanForBracket\",function(t,n,e,i){return A(this,t,n,e,i)})})}()),C.exports}u(R,\"requireMatchbrackets\");export{R as j};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/mode-indent.es-057a4f6a.js",
    "content": "var o=Object.defineProperty,v=(e,n)=>o(e,\"name\",{value:n,configurable:!0});function d(e,n){var t,i;const{levels:l,indentLevel:r}=e;return((!l||l.length===0?r:l.at(-1)-(!((t=this.electricInput)===null||t===void 0)&&t.test(n)?1:0))||0)*(((i=this.config)===null||i===void 0?void 0:i.indentUnit)||0)}v(d,\"indent\");export{d as r};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/mode.es-8c5bcfbd.js",
    "content": "import{C as r}from\"./codemirror.es-52e8b92d.js\";import{U as o,a0 as s,a1 as i,a2 as n}from\"./index-27dc12ba.js\";import{r as l}from\"./mode-indent.es-057a4f6a.js\";import\"./codemirror.es2-5884f31a.js\";var c=Object.defineProperty,p=(e,a)=>c(e,\"name\",{value:a,configurable:!0});const m=p(e=>{const a=o({eatWhitespace:t=>t.eatWhile(s),lexRules:i,parseRules:n,editorConfig:{tabSize:e.tabSize}});return{config:e,startState:a.startState,token:a.token,indent:l,electricInput:/^\\s*[})\\]]/,fold:\"brace\",lineComment:\"#\",closeBrackets:{pairs:'()[]{}\"\"',explode:\"()[]{}\"}}},\"graphqlModeFactory\");r.defineMode(\"graphql\",m);\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/mode.es2-8a6e8f8c.js",
    "content": "import{C as s}from\"./codemirror.es-52e8b92d.js\";import{U as o,a5 as e,a6 as l,a7 as n,a8 as r}from\"./index-27dc12ba.js\";import{r as c}from\"./mode-indent.es-057a4f6a.js\";import\"./codemirror.es2-5884f31a.js\";var b=Object.defineProperty,d=(a,t)=>b(a,\"name\",{value:t,configurable:!0});s.defineMode(\"graphql-variables\",a=>{const t=o({eatWhitespace:u=>u.eatSpace(),lexRules:m,parseRules:V,editorConfig:{tabSize:a.tabSize}});return{config:a,startState:t.startState,token:t.token,indent:c,electricInput:/^\\s*[}\\]]/,fold:\"brace\",closeBrackets:{pairs:'[]{}\"\"',explode:\"[]{}\"}}});const m={Punctuation:/^\\[|]|\\{|\\}|:|,/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^\"(?:[^\"\\\\]|\\\\(?:\"|\\/|\\\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*\"?/,Keyword:/^true|false|null/},V={Document:[e(\"{\"),l(\"Variable\",n(e(\",\"))),e(\"}\")],Variable:[i(\"variable\"),e(\":\"),\"Value\"],Value(a){switch(a.kind){case\"Number\":return\"NumberValue\";case\"String\":return\"StringValue\";case\"Punctuation\":switch(a.value){case\"[\":return\"ListValue\";case\"{\":return\"ObjectValue\"}return null;case\"Keyword\":switch(a.value){case\"true\":case\"false\":return\"BooleanValue\";case\"null\":return\"NullValue\"}return null}},NumberValue:[r(\"Number\",\"number\")],StringValue:[r(\"String\",\"string\")],BooleanValue:[r(\"Keyword\",\"builtin\")],NullValue:[r(\"Keyword\",\"keyword\")],ListValue:[e(\"[\"),l(\"Value\",n(e(\",\"))),e(\"]\")],ObjectValue:[e(\"{\"),l(\"ObjectField\",n(e(\",\"))),e(\"}\")],ObjectField:[i(\"attribute\"),e(\":\"),\"Value\"]};function i(a){return{style:a,match:t=>t.kind===\"String\",update(t,u){t.name=u.value.slice(1,-1)}}}d(i,\"namedKey\");\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/mode.es3-fa110728.js",
    "content": "import{C as n}from\"./codemirror.es-52e8b92d.js\";import{U as s,a5 as e,a6 as a,a8 as r}from\"./index-27dc12ba.js\";import{r as i}from\"./mode-indent.es-057a4f6a.js\";import\"./codemirror.es2-5884f31a.js\";n.defineMode(\"graphql-results\",t=>{const u=s({eatWhitespace:l=>l.eatSpace(),lexRules:o,parseRules:c,editorConfig:{tabSize:t.tabSize}});return{config:t,startState:u.startState,token:u.token,indent:i,electricInput:/^\\s*[}\\]]/,fold:\"brace\",closeBrackets:{pairs:'[]{}\"\"',explode:\"[]{}\"}}});const o={Punctuation:/^\\[|]|\\{|\\}|:|,/,Number:/^-?(?:0|(?:[1-9][0-9]*))(?:\\.[0-9]*)?(?:[eE][+-]?[0-9]+)?/,String:/^\"(?:[^\"\\\\]|\\\\(?:\"|\\/|\\\\|b|f|n|r|t|u[0-9a-fA-F]{4}))*\"?/,Keyword:/^true|false|null/},c={Document:[e(\"{\"),a(\"Entry\",e(\",\")),e(\"}\")],Entry:[r(\"String\",\"def\"),e(\":\"),\"Value\"],Value(t){switch(t.kind){case\"Number\":return\"NumberValue\";case\"String\":return\"StringValue\";case\"Punctuation\":switch(t.value){case\"[\":return\"ListValue\";case\"{\":return\"ObjectValue\"}return null;case\"Keyword\":switch(t.value){case\"true\":case\"false\":return\"BooleanValue\";case\"null\":return\"NullValue\"}return null}},NumberValue:[r(\"Number\",\"number\")],StringValue:[r(\"String\",\"string\")],BooleanValue:[r(\"Keyword\",\"builtin\")],NullValue:[r(\"Keyword\",\"keyword\")],ListValue:[e(\"[\"),a(\"Value\",e(\",\")),e(\"]\")],ObjectValue:[e(\"{\"),a(\"ObjectField\",e(\",\")),e(\"}\")],ObjectField:[r(\"String\",\"property\"),e(\":\"),\"Value\"]};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/search.es-2e392dd0.js",
    "content": "import{c as I,h as V}from\"./codemirror.es2-5884f31a.js\";import{K}from\"./searchcursor.es2-cbfe7cae.js\";import{a as L}from\"./dialog.es-b2776d29.js\";var z=Object.defineProperty,a=(C,O)=>z(C,\"name\",{value:O,configurable:!0});function A(C,O){for(var s=0;s<O.length;s++){const h=O[s];if(typeof h!=\"string\"&&!Array.isArray(h)){for(const g in h)if(g!==\"default\"&&!(g in C)){const m=Object.getOwnPropertyDescriptor(h,g);m&&Object.defineProperty(C,g,m.get?m:{enumerable:!0,get:()=>h[g]})}}}return Object.freeze(Object.defineProperty(C,Symbol.toStringTag,{value:\"Module\"}))}a(A,\"_mergeNamespaces\");var B={exports:{}};(function(C,O){(function(s){s(I(),K(),L)})(function(s){s.defineOption(\"search\",{bottom:!1});function h(e,r){return typeof e==\"string\"?e=new RegExp(e.replace(/[\\-\\[\\]\\/\\{\\}\\(\\)\\*\\+\\?\\.\\\\\\^\\$\\|]/g,\"\\\\$&\"),r?\"gi\":\"g\"):e.global||(e=new RegExp(e.source,e.ignoreCase?\"gi\":\"g\")),{token:function(t){e.lastIndex=t.pos;var n=e.exec(t.string);if(n&&n.index==t.pos)return t.pos+=n[0].length||1,\"searching\";n?t.pos=n.index:t.skipToEnd()}}}a(h,\"searchOverlay\");function g(){this.posFrom=this.posTo=this.lastQuery=this.query=null,this.overlay=null}a(g,\"SearchState\");function m(e){return e.state.search||(e.state.search=new g)}a(m,\"getSearchState\");function S(e){return typeof e==\"string\"&&e==e.toLowerCase()}a(S,\"queryCaseInsensitive\");function b(e,r,t){return e.getSearchCursor(r,t,{caseFold:S(r),multiline:!0})}a(b,\"getSearchCursor\");function _(e,r,t,n,o){e.openDialog(r,n,{value:t,selectValueOnOpen:!0,closeOnEnter:!1,onClose:function(){N(e)},onKeyDown:o,bottom:e.options.search.bottom})}a(_,\"persistentDialog\");function P(e,r,t,n,o){e.openDialog?e.openDialog(r,o,{value:n,selectValueOnOpen:!0,bottom:e.options.search.bottom}):o(prompt(t,n))}a(P,\"dialog\");function E(e,r,t,n){e.openConfirm?e.openConfirm(r,n):confirm(t)&&n[0]()}a(E,\"confirmDialog\");function R(e){return e.replace(/\\\\([nrt\\\\])/g,function(r,t){return t==\"n\"?`\n`:t==\"r\"?\"\\r\":t==\"t\"?\"\t\":t==\"\\\\\"?\"\\\\\":r})}a(R,\"parseString\");function M(e){var r=e.match(/^\\/(.*)\\/([a-z]*)$/);if(r)try{e=new RegExp(r[1],r[2].indexOf(\"i\")==-1?\"\":\"i\")}catch{}else e=R(e);return(typeof e==\"string\"?e==\"\":e.test(\"\"))&&(e=/x^/),e}a(M,\"parseQuery\");function q(e,r,t){r.queryText=t,r.query=M(t),e.removeOverlay(r.overlay,S(r.query)),r.overlay=h(r.query,S(r.query)),e.addOverlay(r.overlay),e.showMatchesOnScrollbar&&(r.annotate&&(r.annotate.clear(),r.annotate=null),r.annotate=e.showMatchesOnScrollbar(r.query,S(r.query)))}a(q,\"startSearch\");function v(e,r,t,n){var o=m(e);if(o.query)return w(e,r);var i=e.getSelection()||o.lastQuery;if(i instanceof RegExp&&i.source==\"x^\"&&(i=null),t&&e.openDialog){var p=null,u=a(function(l,x){s.e_stop(x),l&&(l!=o.queryText&&(q(e,o,l),o.posFrom=o.posTo=e.getCursor()),p&&(p.style.opacity=1),w(e,x.shiftKey,function(y,d){var f;d.line<3&&document.querySelector&&(f=e.display.wrapper.querySelector(\".CodeMirror-dialog\"))&&f.getBoundingClientRect().bottom-4>e.cursorCoords(d,\"window\").top&&((p=f).style.opacity=.4)}))},\"searchNext\");_(e,D(e),i,u,function(l,x){var y=s.keyName(l),d=e.getOption(\"extraKeys\"),f=d&&d[y]||s.keyMap[e.getOption(\"keyMap\")][y];f==\"findNext\"||f==\"findPrev\"||f==\"findPersistentNext\"||f==\"findPersistentPrev\"?(s.e_stop(l),q(e,m(e),x),e.execCommand(f)):(f==\"find\"||f==\"findPersistent\")&&(s.e_stop(l),u(x,l))}),n&&i&&(q(e,o,i),w(e,r))}else P(e,D(e),\"Search for:\",i,function(l){l&&!o.query&&e.operation(function(){q(e,o,l),o.posFrom=o.posTo=e.getCursor(),w(e,r)})})}a(v,\"doSearch\");function w(e,r,t){e.operation(function(){var n=m(e),o=b(e,n.query,r?n.posFrom:n.posTo);!o.find(r)&&(o=b(e,n.query,r?s.Pos(e.lastLine()):s.Pos(e.firstLine(),0)),!o.find(r))||(e.setSelection(o.from(),o.to()),e.scrollIntoView({from:o.from(),to:o.to()},20),n.posFrom=o.from(),n.posTo=o.to(),t&&t(o.from(),o.to()))})}a(w,\"findNext\");function N(e){e.operation(function(){var r=m(e);r.lastQuery=r.query,r.query&&(r.query=r.queryText=null,e.removeOverlay(r.overlay),r.annotate&&(r.annotate.clear(),r.annotate=null))})}a(N,\"clearSearch\");function c(e,r){var t=e?document.createElement(e):document.createDocumentFragment();for(var n in r)t[n]=r[n];for(var o=2;o<arguments.length;o++){var i=arguments[o];t.appendChild(typeof i==\"string\"?document.createTextNode(i):i)}return t}a(c,\"el\");function D(e){return c(\"\",null,c(\"span\",{className:\"CodeMirror-search-label\"},e.phrase(\"Search:\")),\" \",c(\"input\",{type:\"text\",style:\"width: 10em\",className:\"CodeMirror-search-field\"}),\" \",c(\"span\",{style:\"color: #888\",className:\"CodeMirror-search-hint\"},e.phrase(\"(Use /re/ syntax for regexp search)\")))}a(D,\"getQueryDialog\");function F(e){return c(\"\",null,\" \",c(\"input\",{type:\"text\",style:\"width: 10em\",className:\"CodeMirror-search-field\"}),\" \",c(\"span\",{style:\"color: #888\",className:\"CodeMirror-search-hint\"},e.phrase(\"(Use /re/ syntax for regexp search)\")))}a(F,\"getReplaceQueryDialog\");function j(e){return c(\"\",null,c(\"span\",{className:\"CodeMirror-search-label\"},e.phrase(\"With:\")),\" \",c(\"input\",{type:\"text\",style:\"width: 10em\",className:\"CodeMirror-search-field\"}))}a(j,\"getReplacementQueryDialog\");function k(e){return c(\"\",null,c(\"span\",{className:\"CodeMirror-search-label\"},e.phrase(\"Replace?\")),\" \",c(\"button\",{},e.phrase(\"Yes\")),\" \",c(\"button\",{},e.phrase(\"No\")),\" \",c(\"button\",{},e.phrase(\"All\")),\" \",c(\"button\",{},e.phrase(\"Stop\")))}a(k,\"getDoReplaceConfirm\");function T(e,r,t){e.operation(function(){for(var n=b(e,r);n.findNext();)if(typeof r!=\"string\"){var o=e.getRange(n.from(),n.to()).match(r);n.replace(t.replace(/\\$(\\d)/g,function(i,p){return o[p]}))}else n.replace(t)})}a(T,\"replaceAll\");function Q(e,r){if(!e.getOption(\"readOnly\")){var t=e.getSelection()||m(e).lastQuery,n=r?e.phrase(\"Replace all:\"):e.phrase(\"Replace:\"),o=c(\"\",null,c(\"span\",{className:\"CodeMirror-search-label\"},n),F(e));P(e,o,n,t,function(i){i&&(i=M(i),P(e,j(e),e.phrase(\"Replace with:\"),\"\",function(p){if(p=R(p),r)T(e,i,p);else{N(e);var u=b(e,i,e.getCursor(\"from\")),l=a(function(){var y=u.from(),d;!(d=u.findNext())&&(u=b(e,i),!(d=u.findNext())||y&&u.from().line==y.line&&u.from().ch==y.ch)||(e.setSelection(u.from(),u.to()),e.scrollIntoView({from:u.from(),to:u.to()}),E(e,k(e),e.phrase(\"Replace?\"),[function(){x(d)},l,function(){T(e,i,p)}]))},\"advance\"),x=a(function(y){u.replace(typeof i==\"string\"?p:p.replace(/\\$(\\d)/g,function(d,f){return y[f]})),l()},\"doReplace\");l()}}))})}}a(Q,\"replace\"),s.commands.find=function(e){N(e),v(e)},s.commands.findPersistent=function(e){N(e),v(e,!1,!0)},s.commands.findPersistentNext=function(e){v(e,!1,!0,!0)},s.commands.findPersistentPrev=function(e){v(e,!0,!0,!0)},s.commands.findNext=v,s.commands.findPrev=function(e){v(e,!0)},s.commands.clearSearch=N,s.commands.replace=Q,s.commands.replaceAll=function(e){Q(e,!0)}})})();var $=B.exports;const U=V($),G=A({__proto__:null,default:U},[$]);export{G as s};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/searchcursor.es-b1a352a2.js",
    "content": "import{h as c}from\"./codemirror.es2-5884f31a.js\";import{K as p}from\"./searchcursor.es2-cbfe7cae.js\";var l=Object.defineProperty,u=(e,o)=>l(e,\"name\",{value:o,configurable:!0});function f(e,o){for(var n=0;n<o.length;n++){const r=o[n];if(typeof r!=\"string\"&&!Array.isArray(r)){for(const t in r)if(t!==\"default\"&&!(t in e)){const a=Object.getOwnPropertyDescriptor(r,t);a&&Object.defineProperty(e,t,a.get?a:{enumerable:!0,get:()=>r[t]})}}}return Object.freeze(Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}))}u(f,\"_mergeNamespaces\");var i=p();const g=c(i),m=f({__proto__:null,default:g},[i]);export{m as s};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/searchcursor.es2-cbfe7cae.js",
    "content": "import{c as B}from\"./codemirror.es2-5884f31a.js\";var A=Object.defineProperty,u=(R,S)=>A(R,\"name\",{value:S,configurable:!0}),W={exports:{}},z;function q(){return z||(z=1,function(R,S){(function(p){p(B())})(function(p){var h=p.Pos;function k(e){var t=e.flags;return t??(e.ignoreCase?\"i\":\"\")+(e.global?\"g\":\"\")+(e.multiline?\"m\":\"\")}u(k,\"regexpFlags\");function L(e,t){for(var n=k(e),r=n,o=0;o<t.length;o++)r.indexOf(t.charAt(o))==-1&&(r+=t.charAt(o));return n==r?e:new RegExp(e.source,r)}u(L,\"ensureFlags\");function C(e){return/\\\\s|\\\\n|\\n|\\\\W|\\\\D|\\[\\^/.test(e.source)}u(C,\"maybeMultiline\");function M(e,t,n){t=L(t,\"g\");for(var r=n.line,o=n.ch,i=e.lastLine();r<=i;r++,o=0){t.lastIndex=o;var s=e.getLine(r),c=t.exec(s);if(c)return{from:h(r,c.index),to:h(r,c.index+c[0].length),match:c}}}u(M,\"searchRegexpForward\");function I(e,t,n){if(!C(t))return M(e,t,n);t=L(t,\"gm\");for(var r,o=1,i=n.line,s=e.lastLine();i<=s;){for(var c=0;c<o&&!(i>s);c++){var m=e.getLine(i++);r=r==null?m:r+`\n`+m}o=o*2,t.lastIndex=n.ch;var a=t.exec(r);if(a){var l=r.slice(0,a.index).split(`\n`),f=a[0].split(`\n`),g=n.line+l.length-1,d=l[l.length-1].length;return{from:h(g,d),to:h(g+f.length-1,f.length==1?d+f[0].length:f[f.length-1].length),match:a}}}}u(I,\"searchRegexpForwardMultiline\");function O(e,t,n){for(var r,o=0;o<=e.length;){t.lastIndex=o;var i=t.exec(e);if(!i)break;var s=i.index+i[0].length;if(s>e.length-n)break;(!r||s>r.index+r[0].length)&&(r=i),o=i.index+1}return r}u(O,\"lastMatchIn\");function b(e,t,n){t=L(t,\"g\");for(var r=n.line,o=n.ch,i=e.firstLine();r>=i;r--,o=-1){var s=e.getLine(r),c=O(s,t,o<0?0:s.length-o);if(c)return{from:h(r,c.index),to:h(r,c.index+c[0].length),match:c}}}u(b,\"searchRegexpBackward\");function D(e,t,n){if(!C(t))return b(e,t,n);t=L(t,\"gm\");for(var r,o=1,i=e.getLine(n.line).length-n.ch,s=n.line,c=e.firstLine();s>=c;){for(var m=0;m<o&&s>=c;m++){var a=e.getLine(s--);r=r==null?a:a+`\n`+r}o*=2;var l=O(r,t,i);if(l){var f=r.slice(0,l.index).split(`\n`),g=l[0].split(`\n`),d=s+f.length,x=f[f.length-1].length;return{from:h(d,x),to:h(d+g.length-1,g.length==1?x+g[0].length:g[g.length-1].length),match:l}}}}u(D,\"searchRegexpBackwardMultiline\");var w,P;String.prototype.normalize?(w=u(function(e){return e.normalize(\"NFD\").toLowerCase()},\"doFold\"),P=u(function(e){return e.normalize(\"NFD\")},\"noFold\")):(w=u(function(e){return e.toLowerCase()},\"doFold\"),P=u(function(e){return e},\"noFold\"));function v(e,t,n,r){if(e.length==t.length)return n;for(var o=0,i=n+Math.max(0,e.length-t.length);;){if(o==i)return o;var s=o+i>>1,c=r(e.slice(0,s)).length;if(c==n)return s;c>n?i=s:o=s+1}}u(v,\"adjustPos\");function N(e,t,n,r){if(!t.length)return null;var o=r?w:P,i=o(t).split(/\\r|\\n\\r?/);t:for(var s=n.line,c=n.ch,m=e.lastLine()+1-i.length;s<=m;s++,c=0){var a=e.getLine(s).slice(c),l=o(a);if(i.length==1){var f=l.indexOf(i[0]);if(f==-1)continue t;var n=v(a,l,f,o)+c;return{from:h(s,v(a,l,f,o)+c),to:h(s,v(a,l,f+i[0].length,o)+c)}}else{var g=l.length-i[0].length;if(l.slice(g)!=i[0])continue t;for(var d=1;d<i.length-1;d++)if(o(e.getLine(s+d))!=i[d])continue t;var x=e.getLine(s+i.length-1),F=o(x),E=i[i.length-1];if(F.slice(0,E.length)!=E)continue t;return{from:h(s,v(a,l,g,o)+c),to:h(s+i.length-1,v(x,F,E.length,o))}}}}u(N,\"searchStringForward\");function j(e,t,n,r){if(!t.length)return null;var o=r?w:P,i=o(t).split(/\\r|\\n\\r?/);t:for(var s=n.line,c=n.ch,m=e.firstLine()-1+i.length;s>=m;s--,c=-1){var a=e.getLine(s);c>-1&&(a=a.slice(0,c));var l=o(a);if(i.length==1){var f=l.lastIndexOf(i[0]);if(f==-1)continue t;return{from:h(s,v(a,l,f,o)),to:h(s,v(a,l,f+i[0].length,o))}}else{var g=i[i.length-1];if(l.slice(0,g.length)!=g)continue t;for(var d=1,n=s-i.length+1;d<i.length-1;d++)if(o(e.getLine(n+d))!=i[d])continue t;var x=e.getLine(s+1-i.length),F=o(x);if(F.slice(F.length-i[0].length)!=i[0])continue t;return{from:h(s+1-i.length,v(x,F,x.length-i[0].length,o)),to:h(s,v(a,l,g.length,o))}}}}u(j,\"searchStringBackward\");function y(e,t,n,r){this.atOccurrence=!1,this.afterEmptyMatch=!1,this.doc=e,n=n?e.clipPos(n):h(0,0),this.pos={from:n,to:n};var o;typeof r==\"object\"?o=r.caseFold:(o=r,r=null),typeof t==\"string\"?(o==null&&(o=!1),this.matches=function(i,s){return(i?j:N)(e,t,s,o)}):(t=L(t,\"gm\"),!r||r.multiline!==!1?this.matches=function(i,s){return(i?D:I)(e,t,s)}:this.matches=function(i,s){return(i?b:M)(e,t,s)})}u(y,\"SearchCursor\"),y.prototype={findNext:function(){return this.find(!1)},findPrevious:function(){return this.find(!0)},find:function(e){var t=this.doc.clipPos(e?this.pos.from:this.pos.to);if(this.afterEmptyMatch&&this.atOccurrence&&(t=h(t.line,t.ch),e?(t.ch--,t.ch<0&&(t.line--,t.ch=(this.doc.getLine(t.line)||\"\").length)):(t.ch++,t.ch>(this.doc.getLine(t.line)||\"\").length&&(t.ch=0,t.line++)),p.cmpPos(t,this.doc.clipPos(t))!=0))return this.atOccurrence=!1;var n=this.matches(e,t);if(this.afterEmptyMatch=n&&p.cmpPos(n.from,n.to)==0,n)return this.pos=n,this.atOccurrence=!0,this.pos.match||!0;var r=h(e?this.doc.firstLine():this.doc.lastLine()+1,0);return this.pos={from:r,to:r},this.atOccurrence=!1},from:function(){if(this.atOccurrence)return this.pos.from},to:function(){if(this.atOccurrence)return this.pos.to},replace:function(e,t){if(this.atOccurrence){var n=p.splitLines(e);this.doc.replaceRange(n,this.pos.from,this.pos.to,t),this.pos.to=h(this.pos.from.line+n.length-1,n[n.length-1].length+(n.length==1?this.pos.from.ch:0))}}},p.defineExtension(\"getSearchCursor\",function(e,t,n){return new y(this.doc,e,t,n)}),p.defineDocExtension(\"getSearchCursor\",function(e,t,n){return new y(this,e,t,n)}),p.defineExtension(\"selectMatches\",function(e,t){for(var n=[],r=this.getSearchCursor(e,this.getCursor(\"from\"),t);r.findNext()&&!(p.cmpPos(r.to(),this.getCursor(\"to\"))>0);)n.push({anchor:r.from(),head:r.to()});n.length&&this.setSelections(n,0)})})}()),W.exports}u(q,\"requireSearchcursor\");export{q as K};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/show-hint.es-b981493e.js",
    "content": "import{c as rt,h as lt}from\"./codemirror.es2-5884f31a.js\";var ht=Object.defineProperty,d=(A,H)=>ht(A,\"name\",{value:H,configurable:!0});function tt(A,H){for(var c=0;c<H.length;c++){const b=H[c];if(typeof b!=\"string\"&&!Array.isArray(b)){for(const v in b)if(v!==\"default\"&&!(v in A)){const w=Object.getOwnPropertyDescriptor(b,v);w&&Object.defineProperty(A,v,w.get?w:{enumerable:!0,get:()=>b[v]})}}}return Object.freeze(Object.defineProperty(A,Symbol.toStringTag,{value:\"Module\"}))}d(tt,\"_mergeNamespaces\");var at={exports:{}};(function(A,H){(function(c){c(rt())})(function(c){var b=\"CodeMirror-hint\",v=\"CodeMirror-hint-active\";c.showHint=function(t,e,i){if(!e)return t.showHint(i);i&&i.async&&(e.async=!0);var n={hint:e};if(i)for(var o in i)n[o]=i[o];return t.showHint(n)},c.defineExtension(\"showHint\",function(t){t=j(this,this.getCursor(\"start\"),t);var e=this.listSelections();if(!(e.length>1)){if(this.somethingSelected()){if(!t.hint.supportsSelection)return;for(var i=0;i<e.length;i++)if(e[i].head.line!=e[i].anchor.line)return}this.state.completionActive&&this.state.completionActive.close();var n=this.state.completionActive=new w(this,t);n.options.hint&&(c.signal(this,\"startCompletion\",this),n.update(!0))}}),c.defineExtension(\"closeHint\",function(){this.state.completionActive&&this.state.completionActive.close()});function w(t,e){if(this.cm=t,this.options=e,this.widget=null,this.debounce=0,this.tick=0,this.startPos=this.cm.getCursor(\"start\"),this.startLen=this.cm.getLine(this.startPos.line).length-this.cm.getSelection().length,this.options.updateOnCursorActivity){var i=this;t.on(\"cursorActivity\",this.activityFunc=function(){i.cursorActivity()})}}d(w,\"Completion\");var it=window.requestAnimationFrame||function(t){return setTimeout(t,1e3/60)},nt=window.cancelAnimationFrame||clearTimeout;w.prototype={close:function(){this.active()&&(this.cm.state.completionActive=null,this.tick=null,this.options.updateOnCursorActivity&&this.cm.off(\"cursorActivity\",this.activityFunc),this.widget&&this.data&&c.signal(this.data,\"close\"),this.widget&&this.widget.close(),c.signal(this.cm,\"endCompletion\",this.cm))},active:function(){return this.cm.state.completionActive==this},pick:function(t,e){var i=t.list[e],n=this;this.cm.operation(function(){i.hint?i.hint(n.cm,t,i):n.cm.replaceRange(E(i),i.from||t.from,i.to||t.to,\"complete\"),c.signal(t,\"pick\",i),n.cm.scrollIntoView()}),this.options.closeOnPick&&this.close()},cursorActivity:function(){this.debounce&&(nt(this.debounce),this.debounce=0);var t=this.startPos;this.data&&(t=this.data.from);var e=this.cm.getCursor(),i=this.cm.getLine(e.line);if(e.line!=this.startPos.line||i.length-e.ch!=this.startLen-this.startPos.ch||e.ch<t.ch||this.cm.somethingSelected()||!e.ch||this.options.closeCharacters.test(i.charAt(e.ch-1)))this.close();else{var n=this;this.debounce=it(function(){n.update()}),this.widget&&this.widget.disable()}},update:function(t){if(this.tick!=null){var e=this,i=++this.tick;B(this.options.hint,this.cm,this.options,function(n){e.tick==i&&e.finishUpdate(n,t)})}},finishUpdate:function(t,e){this.data&&c.signal(this.data,\"update\");var i=this.widget&&this.widget.picked||e&&this.options.completeSingle;this.widget&&this.widget.close(),this.data=t,t&&t.list.length&&(i&&t.list.length==1?this.pick(t,0):(this.widget=new R(this,t),c.signal(t,\"shown\")))}};function j(t,e,i){var n=t.options.hintOptions,o={};for(var r in q)o[r]=q[r];if(n)for(var r in n)n[r]!==void 0&&(o[r]=n[r]);if(i)for(var r in i)i[r]!==void 0&&(o[r]=i[r]);return o.hint.resolve&&(o.hint=o.hint.resolve(t,e)),o}d(j,\"parseOptions\");function E(t){return typeof t==\"string\"?t:t.text}d(E,\"getText\");function D(t,e){var i={Up:function(){e.moveFocus(-1)},Down:function(){e.moveFocus(1)},PageUp:function(){e.moveFocus(-e.menuSize()+1,!0)},PageDown:function(){e.moveFocus(e.menuSize()-1,!0)},Home:function(){e.setFocus(0)},End:function(){e.setFocus(e.length-1)},Enter:e.pick,Tab:e.pick,Esc:e.close},n=/Mac/.test(navigator.platform);n&&(i[\"Ctrl-P\"]=function(){e.moveFocus(-1)},i[\"Ctrl-N\"]=function(){e.moveFocus(1)});var o=t.options.customKeys,r=o?{}:i;function s(a,l){var u;typeof l!=\"string\"?u=d(function(C){return l(C,e)},\"bound\"):i.hasOwnProperty(l)?u=i[l]:u=l,r[a]=u}if(d(s,\"addBinding\"),o)for(var f in o)o.hasOwnProperty(f)&&s(f,o[f]);var h=t.options.extraKeys;if(h)for(var f in h)h.hasOwnProperty(f)&&s(f,h[f]);return r}d(D,\"buildKeyMap\");function I(t,e){for(;e&&e!=t;){if(e.nodeName.toUpperCase()===\"LI\"&&e.parentNode==t)return e;e=e.parentNode}}d(I,\"getHintElement\");function R(t,e){this.id=\"cm-complete-\"+Math.floor(Math.random(1e6)),this.completion=t,this.data=e,this.picked=!1;var i=this,n=t.cm,o=n.getInputField().ownerDocument,r=o.defaultView||o.parentWindow,s=this.hints=o.createElement(\"ul\");s.setAttribute(\"role\",\"listbox\"),s.setAttribute(\"aria-expanded\",\"true\"),s.id=this.id;var f=t.cm.options.theme;s.className=\"CodeMirror-hints \"+f,this.selectedHint=e.selectedHint||0;for(var h=e.list,a=0;a<h.length;++a){var l=s.appendChild(o.createElement(\"li\")),u=h[a],C=b+(a!=this.selectedHint?\"\":\" \"+v);u.className!=null&&(C=u.className+\" \"+C),l.className=C,a==this.selectedHint&&l.setAttribute(\"aria-selected\",\"true\"),l.id=this.id+\"-\"+a,l.setAttribute(\"role\",\"option\"),u.render?u.render(l,e,u):l.appendChild(o.createTextNode(u.displayText||E(u))),l.hintId=a}var k=t.options.container||o.body,y=n.cursorCoords(t.options.alignWithWord?e.from:null),O=y.left,T=y.bottom,G=!0,S=0,F=0;if(k!==o.body){var ot=[\"absolute\",\"relative\",\"fixed\"].indexOf(r.getComputedStyle(k).position)!==-1,W=ot?k:k.offsetParent,J=W.getBoundingClientRect(),Q=o.body.getBoundingClientRect();S=J.left-Q.left-W.scrollLeft,F=J.top-Q.top-W.scrollTop}s.style.left=O-S+\"px\",s.style.top=T-F+\"px\";var M=r.innerWidth||Math.max(o.body.offsetWidth,o.documentElement.offsetWidth),K=r.innerHeight||Math.max(o.body.offsetHeight,o.documentElement.offsetHeight);k.appendChild(s),n.getInputField().setAttribute(\"aria-autocomplete\",\"list\"),n.getInputField().setAttribute(\"aria-owns\",this.id),n.getInputField().setAttribute(\"aria-activedescendant\",this.id+\"-\"+this.selectedHint);var g=t.options.moveOnOverlap?s.getBoundingClientRect():new DOMRect,V=t.options.paddingForScrollbar?s.scrollHeight>s.clientHeight+1:!1,x;setTimeout(function(){x=n.getScrollInfo()});var st=g.bottom-K;if(st>0){var L=g.bottom-g.top,ct=y.top-(y.bottom-g.top);if(ct-L>0)s.style.top=(T=y.top-L-F)+\"px\",G=!1;else if(L>K){s.style.height=K-5+\"px\",s.style.top=(T=y.bottom-g.top-F)+\"px\";var X=n.getCursor();e.from.ch!=X.ch&&(y=n.cursorCoords(X),s.style.left=(O=y.left-S)+\"px\",g=s.getBoundingClientRect())}}var N=g.right-M;if(V&&(N+=n.display.nativeBarWidth),N>0&&(g.right-g.left>M&&(s.style.width=M-5+\"px\",N-=g.right-g.left-M),s.style.left=(O=y.left-N-S)+\"px\"),V)for(var P=s.firstChild;P;P=P.nextSibling)P.style.paddingRight=n.display.nativeBarWidth+\"px\";if(n.addKeyMap(this.keyMap=D(t,{moveFocus:function(p,m){i.changeActive(i.selectedHint+p,m)},setFocus:function(p){i.changeActive(p)},menuSize:function(){return i.screenAmount()},length:h.length,close:function(){t.close()},pick:function(){i.pick()},data:e})),t.options.closeOnUnfocus){var Z;n.on(\"blur\",this.onBlur=function(){Z=setTimeout(function(){t.close()},100)}),n.on(\"focus\",this.onFocus=function(){clearTimeout(Z)})}n.on(\"scroll\",this.onScroll=function(){var p=n.getScrollInfo(),m=n.getWrapperElement().getBoundingClientRect();x||(x=n.getScrollInfo());var Y=T+x.top-p.top,U=Y-(r.pageYOffset||(o.documentElement||o.body).scrollTop);if(G||(U+=s.offsetHeight),U<=m.top||U>=m.bottom)return t.close();s.style.top=Y+\"px\",s.style.left=O+x.left-p.left+\"px\"}),c.on(s,\"dblclick\",function(p){var m=I(s,p.target||p.srcElement);m&&m.hintId!=null&&(i.changeActive(m.hintId),i.pick())}),c.on(s,\"click\",function(p){var m=I(s,p.target||p.srcElement);m&&m.hintId!=null&&(i.changeActive(m.hintId),t.options.completeOnSingleClick&&i.pick())}),c.on(s,\"mousedown\",function(){setTimeout(function(){n.focus()},20)});var $=this.getSelectedHintRange();return($.from!==0||$.to!==0)&&this.scrollToActive(),c.signal(e,\"select\",h[this.selectedHint],s.childNodes[this.selectedHint]),!0}d(R,\"Widget\"),R.prototype={close:function(){if(this.completion.widget==this){this.completion.widget=null,this.hints.parentNode&&this.hints.parentNode.removeChild(this.hints),this.completion.cm.removeKeyMap(this.keyMap);var t=this.completion.cm.getInputField();t.removeAttribute(\"aria-activedescendant\"),t.removeAttribute(\"aria-owns\");var e=this.completion.cm;this.completion.options.closeOnUnfocus&&(e.off(\"blur\",this.onBlur),e.off(\"focus\",this.onFocus)),e.off(\"scroll\",this.onScroll)}},disable:function(){this.completion.cm.removeKeyMap(this.keyMap);var t=this;this.keyMap={Enter:function(){t.picked=!0}},this.completion.cm.addKeyMap(this.keyMap)},pick:function(){this.completion.pick(this.data,this.selectedHint)},changeActive:function(t,e){if(t>=this.data.list.length?t=e?this.data.list.length-1:0:t<0&&(t=e?0:this.data.list.length-1),this.selectedHint!=t){var i=this.hints.childNodes[this.selectedHint];i&&(i.className=i.className.replace(\" \"+v,\"\"),i.removeAttribute(\"aria-selected\")),i=this.hints.childNodes[this.selectedHint=t],i.className+=\" \"+v,i.setAttribute(\"aria-selected\",\"true\"),this.completion.cm.getInputField().setAttribute(\"aria-activedescendant\",i.id),this.scrollToActive(),c.signal(this.data,\"select\",this.data.list[this.selectedHint],i)}},scrollToActive:function(){var t=this.getSelectedHintRange(),e=this.hints.childNodes[t.from],i=this.hints.childNodes[t.to],n=this.hints.firstChild;e.offsetTop<this.hints.scrollTop?this.hints.scrollTop=e.offsetTop-n.offsetTop:i.offsetTop+i.offsetHeight>this.hints.scrollTop+this.hints.clientHeight&&(this.hints.scrollTop=i.offsetTop+i.offsetHeight-this.hints.clientHeight+n.offsetTop)},screenAmount:function(){return Math.floor(this.hints.clientHeight/this.hints.firstChild.offsetHeight)||1},getSelectedHintRange:function(){var t=this.completion.options.scrollMargin||0;return{from:Math.max(0,this.selectedHint-t),to:Math.min(this.data.list.length-1,this.selectedHint+t)}}};function _(t,e){if(!t.somethingSelected())return e;for(var i=[],n=0;n<e.length;n++)e[n].supportsSelection&&i.push(e[n]);return i}d(_,\"applicableHelpers\");function B(t,e,i,n){if(t.async)t(e,n,i);else{var o=t(e,i);o&&o.then?o.then(n):n(o)}}d(B,\"fetchHints\");function z(t,e){var i=t.getHelpers(e,\"hint\"),n;if(i.length){var o=d(function(r,s,f){var h=_(r,i);function a(l){if(l==h.length)return s(null);B(h[l],r,f,function(u){u&&u.list.length>0?s(u):a(l+1)})}d(a,\"run\"),a(0)},\"resolved\");return o.async=!0,o.supportsSelection=!0,o}else return(n=t.getHelper(t.getCursor(),\"hintWords\"))?function(r){return c.hint.fromList(r,{words:n})}:c.hint.anyword?function(r,s){return c.hint.anyword(r,s)}:function(){}}d(z,\"resolveAutoHints\"),c.registerHelper(\"hint\",\"auto\",{resolve:z}),c.registerHelper(\"hint\",\"fromList\",function(t,e){var i=t.getCursor(),n=t.getTokenAt(i),o,r=c.Pos(i.line,n.start),s=i;n.start<i.ch&&/\\w/.test(n.string.charAt(i.ch-n.start-1))?o=n.string.substr(0,i.ch-n.start):(o=\"\",r=i);for(var f=[],h=0;h<e.words.length;h++){var a=e.words[h];a.slice(0,o.length)==o&&f.push(a)}if(f.length)return{list:f,from:r,to:s}}),c.commands.autocomplete=c.showHint;var q={hint:c.hint.auto,completeSingle:!0,alignWithWord:!0,closeCharacters:/[\\s()\\[\\]{};:>,]/,closeOnPick:!0,closeOnUnfocus:!0,updateOnCursorActivity:!0,completeOnSingleClick:!0,container:null,customKeys:null,extraKeys:null,paddingForScrollbar:!0,moveOnOverlap:!0};c.defineOption(\"hintOptions\",null)})})();var et=at.exports;const ut=lt(et),dt=tt({__proto__:null,default:ut},[et]);export{dt as s};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/assets/sublime.es-e2a3eb60.js",
    "content": "import{c as _,h as Y}from\"./codemirror.es2-5884f31a.js\";import{K as q}from\"./searchcursor.es2-cbfe7cae.js\";import{j as z}from\"./matchbrackets.es2-f53f57e6.js\";var G=Object.defineProperty,C=(L,A)=>G(L,\"name\",{value:A,configurable:!0});function j(L,A){for(var u=0;u<A.length;u++){const s=A[u];if(typeof s!=\"string\"&&!Array.isArray(s)){for(const c in s)if(c!==\"default\"&&!(c in L)){const b=Object.getOwnPropertyDescriptor(s,c);b&&Object.defineProperty(L,c,b.get?b:{enumerable:!0,get:()=>s[c]})}}}return Object.freeze(Object.defineProperty(L,Symbol.toStringTag,{value:\"Module\"}))}C(j,\"_mergeNamespaces\");var J={exports:{}};(function(L,A){(function(u){u(_(),q(),z())})(function(u){var s=u.commands,c=u.Pos;function b(e,t,n){if(n<0&&t.ch==0)return e.clipPos(c(t.line-1));var r=e.getLine(t.line);if(n>0&&t.ch>=r.length)return e.clipPos(c(t.line+1,0));for(var o=\"start\",i,l=t.ch,a=l,f=n<0?0:r.length,m=0;a!=f;a+=n,m++){var h=r.charAt(n<0?a-1:a),d=h!=\"_\"&&u.isWordChar(h)?\"w\":\"o\";if(d==\"w\"&&h.toUpperCase()==h&&(d=\"W\"),o==\"start\")d!=\"o\"?(o=\"in\",i=d):l=a+n;else if(o==\"in\"&&i!=d){if(i==\"w\"&&d==\"W\"&&n<0&&a--,i==\"W\"&&d==\"w\"&&n>0)if(a==l+1){i=\"w\";continue}else a--;break}}return c(t.line,a)}C(b,\"findPosSubword\");function R(e,t){e.extendSelectionsBy(function(n){return e.display.shift||e.doc.extend||n.empty()?b(e.doc,n.head,t):t<0?n.from():n.to()})}C(R,\"moveSubword\"),s.goSubwordLeft=function(e){R(e,-1)},s.goSubwordRight=function(e){R(e,1)},s.scrollLineUp=function(e){var t=e.getScrollInfo();if(!e.somethingSelected()){var n=e.lineAtHeight(t.top+t.clientHeight,\"local\");e.getCursor().line>=n&&e.execCommand(\"goLineUp\")}e.scrollTo(null,t.top-e.defaultTextHeight())},s.scrollLineDown=function(e){var t=e.getScrollInfo();if(!e.somethingSelected()){var n=e.lineAtHeight(t.top,\"local\")+1;e.getCursor().line<=n&&e.execCommand(\"goLineDown\")}e.scrollTo(null,t.top+e.defaultTextHeight())},s.splitSelectionByLine=function(e){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++)for(var o=t[r].from(),i=t[r].to(),l=o.line;l<=i.line;++l)i.line>o.line&&l==i.line&&i.ch==0||n.push({anchor:l==o.line?o:c(l,0),head:l==i.line?i:c(l)});e.setSelections(n,0)},s.singleSelectionTop=function(e){var t=e.listSelections()[0];e.setSelection(t.anchor,t.head,{scroll:!1})},s.selectLine=function(e){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++){var o=t[r];n.push({anchor:c(o.from().line,0),head:c(o.to().line+1,0)})}e.setSelections(n)};function y(e,t){if(e.isReadOnly())return u.Pass;e.operation(function(){for(var n=e.listSelections().length,r=[],o=-1,i=0;i<n;i++){var l=e.listSelections()[i].head;if(!(l.line<=o)){var a=c(l.line+(t?0:1),0);e.replaceRange(`\n`,a,null,\"+insertLine\"),e.indentLine(a.line,null,!0),r.push({head:a,anchor:a}),o=l.line+1}}e.setSelections(r)}),e.execCommand(\"indentAuto\")}C(y,\"insertLine\"),s.insertLineAfter=function(e){return y(e,!1)},s.insertLineBefore=function(e){return y(e,!0)};function P(e,t){for(var n=t.ch,r=n,o=e.getLine(t.line);n&&u.isWordChar(o.charAt(n-1));)--n;for(;r<o.length&&u.isWordChar(o.charAt(r));)++r;return{from:c(t.line,n),to:c(t.line,r),word:o.slice(n,r)}}C(P,\"wordAt\"),s.selectNextOccurrence=function(e){var t=e.getCursor(\"from\"),n=e.getCursor(\"to\"),r=e.state.sublimeFindFullWord==e.doc.sel;if(u.cmpPos(t,n)==0){var o=P(e,t);if(!o.word)return;e.setSelection(o.from,o.to),r=!0}else{var i=e.getRange(t,n),l=r?new RegExp(\"\\\\b\"+i+\"\\\\b\"):i,a=e.getSearchCursor(l,n),f=a.findNext();if(f||(a=e.getSearchCursor(l,c(e.firstLine(),0)),f=a.findNext()),!f||O(e.listSelections(),a.from(),a.to()))return;e.addSelection(a.from(),a.to())}r&&(e.state.sublimeFindFullWord=e.doc.sel)},s.skipAndSelectNextOccurrence=function(e){var t=e.getCursor(\"anchor\"),n=e.getCursor(\"head\");s.selectNextOccurrence(e),u.cmpPos(t,n)!=0&&e.doc.setSelections(e.doc.listSelections().filter(function(r){return r.anchor!=t||r.head!=n}))};function F(e,t){for(var n=e.listSelections(),r=[],o=0;o<n.length;o++){var i=n[o],l=e.findPosV(i.anchor,t,\"line\",i.anchor.goalColumn),a=e.findPosV(i.head,t,\"line\",i.head.goalColumn);l.goalColumn=i.anchor.goalColumn!=null?i.anchor.goalColumn:e.cursorCoords(i.anchor,\"div\").left,a.goalColumn=i.head.goalColumn!=null?i.head.goalColumn:e.cursorCoords(i.head,\"div\").left;var f={anchor:l,head:a};r.push(i),r.push(f)}e.setSelections(r)}C(F,\"addCursorToSelection\"),s.addCursorToPrevLine=function(e){F(e,-1)},s.addCursorToNextLine=function(e){F(e,1)};function O(e,t,n){for(var r=0;r<e.length;r++)if(u.cmpPos(e[r].from(),t)==0&&u.cmpPos(e[r].to(),n)==0)return!0;return!1}C(O,\"isSelectedRange\");var N=\"(){}[]\";function T(e){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++){var o=t[r],i=o.head,l=e.scanForBracket(i,-1);if(!l)return!1;for(;;){var a=e.scanForBracket(i,1);if(!a)return!1;if(a.ch==N.charAt(N.indexOf(l.ch)+1)){var f=c(l.pos.line,l.pos.ch+1);if(u.cmpPos(f,o.from())==0&&u.cmpPos(a.pos,o.to())==0){if(l=e.scanForBracket(l.pos,-1),!l)return!1}else{n.push({anchor:f,head:a.pos});break}}i=c(a.pos.line,a.pos.ch+1)}}return e.setSelections(n),!0}C(T,\"selectBetweenBrackets\"),s.selectScope=function(e){T(e)||e.execCommand(\"selectAll\")},s.selectBetweenBrackets=function(e){if(!T(e))return u.Pass};function x(e){return e?/\\bpunctuation\\b/.test(e)?e:void 0:null}C(x,\"puncType\"),s.goToBracket=function(e){e.extendSelectionsBy(function(t){var n=e.scanForBracket(t.head,1,x(e.getTokenTypeAt(t.head)));if(n&&u.cmpPos(n.pos,t.head)!=0)return n.pos;var r=e.scanForBracket(t.head,-1,x(e.getTokenTypeAt(c(t.head.line,t.head.ch+1))));return r&&c(r.pos.line,r.pos.ch+1)||t.head})},s.swapLineUp=function(e){if(e.isReadOnly())return u.Pass;for(var t=e.listSelections(),n=[],r=e.firstLine()-1,o=[],i=0;i<t.length;i++){var l=t[i],a=l.from().line-1,f=l.to().line;o.push({anchor:c(l.anchor.line-1,l.anchor.ch),head:c(l.head.line-1,l.head.ch)}),l.to().ch==0&&!l.empty()&&--f,a>r?n.push(a,f):n.length&&(n[n.length-1]=f),r=f}e.operation(function(){for(var m=0;m<n.length;m+=2){var h=n[m],d=n[m+1],w=e.getLine(h);e.replaceRange(\"\",c(h,0),c(h+1,0),\"+swapLine\"),d>e.lastLine()?e.replaceRange(`\n`+w,c(e.lastLine()),null,\"+swapLine\"):e.replaceRange(w+`\n`,c(d,0),null,\"+swapLine\")}e.setSelections(o),e.scrollIntoView()})},s.swapLineDown=function(e){if(e.isReadOnly())return u.Pass;for(var t=e.listSelections(),n=[],r=e.lastLine()+1,o=t.length-1;o>=0;o--){var i=t[o],l=i.to().line+1,a=i.from().line;i.to().ch==0&&!i.empty()&&l--,l<r?n.push(l,a):n.length&&(n[n.length-1]=a),r=a}e.operation(function(){for(var f=n.length-2;f>=0;f-=2){var m=n[f],h=n[f+1],d=e.getLine(m);m==e.lastLine()?e.replaceRange(\"\",c(m-1),c(m),\"+swapLine\"):e.replaceRange(\"\",c(m,0),c(m+1,0),\"+swapLine\"),e.replaceRange(d+`\n`,c(h,0),null,\"+swapLine\")}e.scrollIntoView()})},s.toggleCommentIndented=function(e){e.toggleComment({indent:!0})},s.joinLines=function(e){for(var t=e.listSelections(),n=[],r=0;r<t.length;r++){for(var o=t[r],i=o.from(),l=i.line,a=o.to().line;r<t.length-1&&t[r+1].from().line==a;)a=t[++r].to().line;n.push({start:l,end:a,anchor:!o.empty()&&i})}e.operation(function(){for(var f=0,m=[],h=0;h<n.length;h++){for(var d=n[h],w=d.anchor&&c(d.anchor.line-f,d.anchor.ch),B,S=d.start;S<=d.end;S++){var g=S-f;S==d.end&&(B=c(g,e.getLine(g).length+1)),g<e.lastLine()&&(e.replaceRange(\" \",c(g),c(g+1,/^\\s*/.exec(e.getLine(g+1))[0].length)),++f)}m.push({anchor:w||B,head:B})}e.setSelections(m,0)})},s.duplicateLine=function(e){e.operation(function(){for(var t=e.listSelections().length,n=0;n<t;n++){var r=e.listSelections()[n];r.empty()?e.replaceRange(e.getLine(r.head.line)+`\n`,c(r.head.line,0)):e.replaceRange(e.getRange(r.from(),r.to()),r.from())}e.scrollIntoView()})};function K(e,t,n){if(e.isReadOnly())return u.Pass;for(var r=e.listSelections(),o=[],i,l=0;l<r.length;l++){var a=r[l];if(!a.empty()){for(var f=a.from().line,m=a.to().line;l<r.length-1&&r[l+1].from().line==m;)m=r[++l].to().line;r[l].to().ch||m--,o.push(f,m)}}o.length?i=!0:o.push(e.firstLine(),e.lastLine()),e.operation(function(){for(var h=[],d=0;d<o.length;d+=2){var w=o[d],B=o[d+1],S=c(w,0),g=c(B),D=e.getRange(S,g,!1);t?D.sort(function(v,k){return v<k?-n:v==k?0:n}):D.sort(function(v,k){var W=v.toUpperCase(),H=k.toUpperCase();return W!=H&&(v=W,k=H),v<k?-n:v==k?0:n}),e.replaceRange(D,S,g),i&&h.push({anchor:S,head:c(B+1,0)})}i&&e.setSelections(h,0)})}C(K,\"sortLines\"),s.sortLines=function(e){K(e,!0,1)},s.reverseSortLines=function(e){K(e,!0,-1)},s.sortLinesInsensitive=function(e){K(e,!1,1)},s.reverseSortLinesInsensitive=function(e){K(e,!1,-1)},s.nextBookmark=function(e){var t=e.state.sublimeBookmarks;if(t)for(;t.length;){var n=t.shift(),r=n.find();if(r)return t.push(n),e.setSelection(r.from,r.to)}},s.prevBookmark=function(e){var t=e.state.sublimeBookmarks;if(t)for(;t.length;){t.unshift(t.pop());var n=t[t.length-1].find();if(!n)t.pop();else return e.setSelection(n.from,n.to)}},s.toggleBookmark=function(e){for(var t=e.listSelections(),n=e.state.sublimeBookmarks||(e.state.sublimeBookmarks=[]),r=0;r<t.length;r++){for(var o=t[r].from(),i=t[r].to(),l=t[r].empty()?e.findMarksAt(o):e.findMarks(o,i),a=0;a<l.length;a++)if(l[a].sublimeBookmark){l[a].clear();for(var f=0;f<n.length;f++)n[f]==l[a]&&n.splice(f--,1);break}a==l.length&&n.push(e.markText(o,i,{sublimeBookmark:!0,clearWhenEmpty:!1}))}},s.clearBookmarks=function(e){var t=e.state.sublimeBookmarks;if(t)for(var n=0;n<t.length;n++)t[n].clear();t.length=0},s.selectBookmarks=function(e){var t=e.state.sublimeBookmarks,n=[];if(t)for(var r=0;r<t.length;r++){var o=t[r].find();o?n.push({anchor:o.from,head:o.to}):t.splice(r--,0)}n.length&&e.setSelections(n,0)};function M(e,t){e.operation(function(){for(var n=e.listSelections(),r=[],o=[],i=0;i<n.length;i++){var l=n[i];l.empty()?(r.push(i),o.push(\"\")):o.push(t(e.getRange(l.from(),l.to())))}e.replaceSelections(o,\"around\",\"case\");for(var i=r.length-1,a;i>=0;i--){var l=n[r[i]];if(!(a&&u.cmpPos(l.head,a)>0)){var f=P(e,l.head);a=f.from,e.replaceRange(t(f.word),f.from,f.to)}}})}C(M,\"modifyWordOrSelection\"),s.smartBackspace=function(e){if(e.somethingSelected())return u.Pass;e.operation(function(){for(var t=e.listSelections(),n=e.getOption(\"indentUnit\"),r=t.length-1;r>=0;r--){var o=t[r].head,i=e.getRange({line:o.line,ch:0},o),l=u.countColumn(i,null,e.getOption(\"tabSize\")),a=e.findPosH(o,-1,\"char\",!1);if(i&&!/\\S/.test(i)&&l%n==0){var f=new c(o.line,u.findColumn(i,l-n,n));f.ch!=o.ch&&(a=f)}e.replaceRange(\"\",a,o,\"+delete\")}})},s.delLineRight=function(e){e.operation(function(){for(var t=e.listSelections(),n=t.length-1;n>=0;n--)e.replaceRange(\"\",t[n].anchor,c(t[n].to().line),\"+delete\");e.scrollIntoView()})},s.upcaseAtCursor=function(e){M(e,function(t){return t.toUpperCase()})},s.downcaseAtCursor=function(e){M(e,function(t){return t.toLowerCase()})},s.setSublimeMark=function(e){e.state.sublimeMark&&e.state.sublimeMark.clear(),e.state.sublimeMark=e.setBookmark(e.getCursor())},s.selectToSublimeMark=function(e){var t=e.state.sublimeMark&&e.state.sublimeMark.find();t&&e.setSelection(e.getCursor(),t)},s.deleteToSublimeMark=function(e){var t=e.state.sublimeMark&&e.state.sublimeMark.find();if(t){var n=e.getCursor(),r=t;if(u.cmpPos(n,r)>0){var o=r;r=n,n=o}e.state.sublimeKilled=e.getRange(n,r),e.replaceRange(\"\",n,r)}},s.swapWithSublimeMark=function(e){var t=e.state.sublimeMark&&e.state.sublimeMark.find();t&&(e.state.sublimeMark.clear(),e.state.sublimeMark=e.setBookmark(e.getCursor()),e.setCursor(t))},s.sublimeYank=function(e){e.state.sublimeKilled!=null&&e.replaceSelection(e.state.sublimeKilled,null,\"paste\")},s.showInCenter=function(e){var t=e.cursorCoords(null,\"local\");e.scrollTo(null,(t.top+t.bottom)/2-e.getScrollInfo().clientHeight/2)};function U(e){var t=e.getCursor(\"from\"),n=e.getCursor(\"to\");if(u.cmpPos(t,n)==0){var r=P(e,t);if(!r.word)return;t=r.from,n=r.to}return{from:t,to:n,query:e.getRange(t,n),word:r}}C(U,\"getTarget\");function I(e,t){var n=U(e);if(n){var r=n.query,o=e.getSearchCursor(r,t?n.to:n.from);(t?o.findNext():o.findPrevious())?e.setSelection(o.from(),o.to()):(o=e.getSearchCursor(r,t?c(e.firstLine(),0):e.clipPos(c(e.lastLine()))),(t?o.findNext():o.findPrevious())?e.setSelection(o.from(),o.to()):n.word&&e.setSelection(n.from,n.to))}}C(I,\"findAndGoTo\"),s.findUnder=function(e){I(e,!0)},s.findUnderPrevious=function(e){I(e,!1)},s.findAllUnder=function(e){var t=U(e);if(t){for(var n=e.getSearchCursor(t.query),r=[],o=-1;n.findNext();)r.push({anchor:n.from(),head:n.to()}),n.from().line<=t.from.line&&n.from().ch<=t.from.ch&&o++;e.setSelections(r,o)}};var p=u.keyMap;p.macSublime={\"Cmd-Left\":\"goLineStartSmart\",\"Shift-Tab\":\"indentLess\",\"Shift-Ctrl-K\":\"deleteLine\",\"Alt-Q\":\"wrapLines\",\"Ctrl-Left\":\"goSubwordLeft\",\"Ctrl-Right\":\"goSubwordRight\",\"Ctrl-Alt-Up\":\"scrollLineUp\",\"Ctrl-Alt-Down\":\"scrollLineDown\",\"Cmd-L\":\"selectLine\",\"Shift-Cmd-L\":\"splitSelectionByLine\",Esc:\"singleSelectionTop\",\"Cmd-Enter\":\"insertLineAfter\",\"Shift-Cmd-Enter\":\"insertLineBefore\",\"Cmd-D\":\"selectNextOccurrence\",\"Shift-Cmd-Space\":\"selectScope\",\"Shift-Cmd-M\":\"selectBetweenBrackets\",\"Cmd-M\":\"goToBracket\",\"Cmd-Ctrl-Up\":\"swapLineUp\",\"Cmd-Ctrl-Down\":\"swapLineDown\",\"Cmd-/\":\"toggleCommentIndented\",\"Cmd-J\":\"joinLines\",\"Shift-Cmd-D\":\"duplicateLine\",F5:\"sortLines\",\"Shift-F5\":\"reverseSortLines\",\"Cmd-F5\":\"sortLinesInsensitive\",\"Shift-Cmd-F5\":\"reverseSortLinesInsensitive\",F2:\"nextBookmark\",\"Shift-F2\":\"prevBookmark\",\"Cmd-F2\":\"toggleBookmark\",\"Shift-Cmd-F2\":\"clearBookmarks\",\"Alt-F2\":\"selectBookmarks\",Backspace:\"smartBackspace\",\"Cmd-K Cmd-D\":\"skipAndSelectNextOccurrence\",\"Cmd-K Cmd-K\":\"delLineRight\",\"Cmd-K Cmd-U\":\"upcaseAtCursor\",\"Cmd-K Cmd-L\":\"downcaseAtCursor\",\"Cmd-K Cmd-Space\":\"setSublimeMark\",\"Cmd-K Cmd-A\":\"selectToSublimeMark\",\"Cmd-K Cmd-W\":\"deleteToSublimeMark\",\"Cmd-K Cmd-X\":\"swapWithSublimeMark\",\"Cmd-K Cmd-Y\":\"sublimeYank\",\"Cmd-K Cmd-C\":\"showInCenter\",\"Cmd-K Cmd-G\":\"clearBookmarks\",\"Cmd-K Cmd-Backspace\":\"delLineLeft\",\"Cmd-K Cmd-1\":\"foldAll\",\"Cmd-K Cmd-0\":\"unfoldAll\",\"Cmd-K Cmd-J\":\"unfoldAll\",\"Ctrl-Shift-Up\":\"addCursorToPrevLine\",\"Ctrl-Shift-Down\":\"addCursorToNextLine\",\"Cmd-F3\":\"findUnder\",\"Shift-Cmd-F3\":\"findUnderPrevious\",\"Alt-F3\":\"findAllUnder\",\"Shift-Cmd-[\":\"fold\",\"Shift-Cmd-]\":\"unfold\",\"Cmd-I\":\"findIncremental\",\"Shift-Cmd-I\":\"findIncrementalReverse\",\"Cmd-H\":\"replace\",F3:\"findNext\",\"Shift-F3\":\"findPrev\",fallthrough:\"macDefault\"},u.normalizeKeyMap(p.macSublime),p.pcSublime={\"Shift-Tab\":\"indentLess\",\"Shift-Ctrl-K\":\"deleteLine\",\"Alt-Q\":\"wrapLines\",\"Ctrl-T\":\"transposeChars\",\"Alt-Left\":\"goSubwordLeft\",\"Alt-Right\":\"goSubwordRight\",\"Ctrl-Up\":\"scrollLineUp\",\"Ctrl-Down\":\"scrollLineDown\",\"Ctrl-L\":\"selectLine\",\"Shift-Ctrl-L\":\"splitSelectionByLine\",Esc:\"singleSelectionTop\",\"Ctrl-Enter\":\"insertLineAfter\",\"Shift-Ctrl-Enter\":\"insertLineBefore\",\"Ctrl-D\":\"selectNextOccurrence\",\"Shift-Ctrl-Space\":\"selectScope\",\"Shift-Ctrl-M\":\"selectBetweenBrackets\",\"Ctrl-M\":\"goToBracket\",\"Shift-Ctrl-Up\":\"swapLineUp\",\"Shift-Ctrl-Down\":\"swapLineDown\",\"Ctrl-/\":\"toggleCommentIndented\",\"Ctrl-J\":\"joinLines\",\"Shift-Ctrl-D\":\"duplicateLine\",F9:\"sortLines\",\"Shift-F9\":\"reverseSortLines\",\"Ctrl-F9\":\"sortLinesInsensitive\",\"Shift-Ctrl-F9\":\"reverseSortLinesInsensitive\",F2:\"nextBookmark\",\"Shift-F2\":\"prevBookmark\",\"Ctrl-F2\":\"toggleBookmark\",\"Shift-Ctrl-F2\":\"clearBookmarks\",\"Alt-F2\":\"selectBookmarks\",Backspace:\"smartBackspace\",\"Ctrl-K Ctrl-D\":\"skipAndSelectNextOccurrence\",\"Ctrl-K Ctrl-K\":\"delLineRight\",\"Ctrl-K Ctrl-U\":\"upcaseAtCursor\",\"Ctrl-K Ctrl-L\":\"downcaseAtCursor\",\"Ctrl-K Ctrl-Space\":\"setSublimeMark\",\"Ctrl-K Ctrl-A\":\"selectToSublimeMark\",\"Ctrl-K Ctrl-W\":\"deleteToSublimeMark\",\"Ctrl-K Ctrl-X\":\"swapWithSublimeMark\",\"Ctrl-K Ctrl-Y\":\"sublimeYank\",\"Ctrl-K Ctrl-C\":\"showInCenter\",\"Ctrl-K Ctrl-G\":\"clearBookmarks\",\"Ctrl-K Ctrl-Backspace\":\"delLineLeft\",\"Ctrl-K Ctrl-1\":\"foldAll\",\"Ctrl-K Ctrl-0\":\"unfoldAll\",\"Ctrl-K Ctrl-J\":\"unfoldAll\",\"Ctrl-Alt-Up\":\"addCursorToPrevLine\",\"Ctrl-Alt-Down\":\"addCursorToNextLine\",\"Ctrl-F3\":\"findUnder\",\"Shift-Ctrl-F3\":\"findUnderPrevious\",\"Alt-F3\":\"findAllUnder\",\"Shift-Ctrl-[\":\"fold\",\"Shift-Ctrl-]\":\"unfold\",\"Ctrl-I\":\"findIncremental\",\"Shift-Ctrl-I\":\"findIncrementalReverse\",\"Ctrl-H\":\"replace\",F3:\"findNext\",\"Shift-F3\":\"findPrev\",fallthrough:\"pcDefault\"},u.normalizeKeyMap(p.pcSublime);var V=p.default==p.macDefault;p.sublime=V?p.macSublime:p.pcSublime})})();var E=J.exports;const Q=Y(E),ee=j({__proto__:null,default:Q},[E]);export{ee as s};\n"
  },
  {
    "path": "backend/src/main/resources/ui/graphiql/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <link rel=\"icon\" type=\"image/svg+xml\" href=\"/graphiql/vite.svg\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>GraphiQL :: Spring PetClinic</title>\n\n    <script type=\"module\" crossorigin src=\"/graphiql/assets/index-27dc12ba.js\"></script>\n    <link rel=\"stylesheet\" href=\"/graphiql/assets/index-928ba5be.css\">\n  </head>\n  <body>\n    <div id=\"root\"></div>\n    \n  </body>\n</html>\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/PetClinicTestDbConfiguration.java",
    "content": "package org.springframework.samples.petclinic;\n\nimport org.springframework.boot.test.context.TestConfiguration;\nimport org.springframework.boot.testcontainers.service.connection.ServiceConnection;\nimport org.springframework.context.annotation.Bean;\nimport org.testcontainers.containers.PostgreSQLContainer;\n\n@SuppressWarnings(\"ALL\")\n@TestConfiguration(proxyBeanMethods = false)\npublic class PetClinicTestDbConfiguration {\n\n    @Bean\n    @ServiceConnection\n    public PostgreSQLContainer<?> postgresContainer() {\n        return new PostgreSQLContainer<>(\"postgres:16.1-alpine\")\n            // https://stackoverflow.com/a/74095511/6134498\n            .withEnv(\"POSTGRES_INITDB_ARGS\", \"--locale-provider=icu --icu-locale=en\");\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/AbstractClinicGraphqlTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport com.github.dockerjava.api.model.ContainerConfig;\nimport org.junit.jupiter.api.BeforeEach;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.test.autoconfigure.graphql.tester.AutoConfigureHttpGraphQlTester;\nimport org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;\nimport org.springframework.boot.test.context.SpringBootTest;\nimport org.springframework.context.annotation.Import;\nimport org.springframework.graphql.test.tester.WebGraphQlTester;\nimport org.springframework.graphql.test.tester.WebSocketGraphQlTester;\nimport org.springframework.http.HttpHeaders;\nimport org.springframework.samples.petclinic.PetClinicTestDbConfiguration;\nimport org.springframework.samples.petclinic.security.JwtTokenService;\nimport org.springframework.test.context.ActiveProfiles;\nimport org.springframework.transaction.annotation.Transactional;\n\nimport java.time.Instant;\nimport java.time.temporal.ChronoUnit;\nimport java.util.List;\n\n@SpringBootTest\n@AutoConfigureMockMvc\n@AutoConfigureHttpGraphQlTester\n@Import(PetClinicTestDbConfiguration.class)\n@Transactional\npublic class AbstractClinicGraphqlTests extends GraphQlTokenProvider {\n\n    protected WebGraphQlTester managerRoleGraphQlTester;\n    protected WebGraphQlTester userRoleGraphQlTester;\n    protected WebGraphQlTester unauthorizedGraphqlTester;\n\n    @BeforeEach\n    void setupWebGraphqlTester(@Autowired WebGraphQlTester graphQlTester) {\n        this.unauthorizedGraphqlTester = graphQlTester;\n\n        this.userRoleGraphQlTester = graphQlTester.mutate()\n            .headers(this::withUserToken)\n            .build();\n\n        this.managerRoleGraphQlTester = graphQlTester.mutate()\n            .headers(this::withManagerToken)\n            .build();\n    }\n\n    private void withManagerToken(HttpHeaders headers) {\n        headers.setBearerAuth(createManagerToken());\n    }\n\n    private void withUserToken(HttpHeaders headers) {\n        headers.setBearerAuth(createUserToken());\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/AuthControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\n\nimport static org.assertj.core.api.Assertions.assertThatThrownBy;\n\n\npublic class AuthControllerTests extends AbstractClinicGraphqlTests {\n    @Test\n    void shouldReturnCurrentUser() {\n        userRoleGraphQlTester\n            .documentName(\"meQuery\")\n            .execute()\n            .path(\"me.username\").entity(String.class).isEqualTo(\"joe\")\n            .path(\"me.fullname\").entity(String.class).isEqualTo(\"Joe Hill\");\n    }\n\n    @Test\n    void shouldReturnUnauthorizedWithoutToken() {\n\n        assertThatThrownBy(() ->\n            unauthorizedGraphqlTester.mutate()\n                .build()\n                .documentName(\"meQuery\")\n                .executeAndVerify())\n            .hasMessage(\"Status expected:<200 OK> but was:<401 UNAUTHORIZED>\");\n    }\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/GraphQlTokenProvider.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.http.HttpHeaders;\nimport org.springframework.samples.petclinic.security.JwtTokenService;\n\nimport java.time.Instant;\nimport java.time.temporal.ChronoUnit;\nimport java.util.List;\n\npublic class GraphQlTokenProvider {\n\n    @Autowired\n    private JwtTokenService tokenService;\n\n    protected String createManagerToken() {\n        return tokenService.generateToken(\"susi\", List.of( () -> \"MANAGER\"), Instant.now().plus(1, ChronoUnit.HOURS));\n    }\n\n    protected String createUserToken() {\n        return tokenService.generateToken(\"joe\", List.of( () -> \"USER\"), Instant.now().plus(1, ChronoUnit.HOURS));\n    }\n\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/OwnerControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\nimport org.springframework.graphql.execution.ErrorType;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\npublic class OwnerControllerTests extends AbstractClinicGraphqlTests{\n\n    @Test\n    public void owners_no_sort_order() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 5) { edges { node { id } } }\n            }\n            \"\"\";\n\n        // by default results are orderd by id\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(5)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(1)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(2)\n            .path(\"owners.edges[2].node.id\").entity(Integer.class).isEqualTo(3)\n            .path(\"owners.edges[3].node.id\").entity(Integer.class).isEqualTo(4)\n            .path(\"owners.edges[4].node.id\").entity(Integer.class).isEqualTo(5)\n        ;\n    }\n\n    @Test\n    public void owners_after() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 5, after:\"T18z\") { edges { node { id } } }\n            }\n            \"\"\";\n\n        // by default results are orderd by id\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(5)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(4)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(5)\n            .path(\"owners.edges[2].node.id\").entity(Integer.class).isEqualTo(6)\n            .path(\"owners.edges[3].node.id\").entity(Integer.class).isEqualTo(7)\n            .path(\"owners.edges[4].node.id\").entity(Integer.class).isEqualTo(8)\n        ;\n    }\n\n    @Test\n    public void owners_order_by_lastname() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 3,\n                       after: \"T180\",\n                       order: [{field: lastName}])\n                       { edges { node { id lastName firstName } } }\n            }\n            \"\"\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(3)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(6)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(17)\n            .path(\"owners.edges[2].node.id\").entity(Integer.class).isEqualTo(2)\n        ;\n    }\n\n    @Test\n    public void owners_order_by_lastname_and_firstname() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 3,\n                       after: \"T180\",\n                       order: [{field: lastName}, {field:firstName, direction:DESC}])\n                       { edges { node { id lastName firstName } } }\n            }\n            \"\"\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(3)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(6)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(17)\n            .path(\"owners.edges[2].node.id\").entity(Integer.class).isEqualTo(4)\n        ;\n    }\n\n    @Test\n    public void owners_order_by_and_filter() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 10, order:\n                       [{field: lastName}]\n                       filter: {lastName: \"du\"},\n                       after: \"T18x\")\n                       { edges { node { id lastName firstName } } }\n            }\n            \"\"\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(2)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(30)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(21)\n        ;\n    }\n\n    @Test\n    public void owners_filter() {\n        // language=GraphQL\n        var query = \"\"\"\n            query {\n                owners(first: 10,\n                       filter: {lastName: \"du\"},\n                       after: \"T18x\")\n                       { edges { node { id lastName firstName } } }\n            }\n            \"\"\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"owners.edges\").entityList(Object.class).hasSize(2)\n            .path(\"owners.edges[0].node.id\").entity(Integer.class).isEqualTo(21)\n            .path(\"owners.edges[1].node.id\").entity(Integer.class).isEqualTo(30)\n        ;\n    }\n\n\n\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/PetControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.samples.petclinic.repository.PetRepository;\nimport org.springframework.test.annotation.DirtiesContext;\n\nimport java.util.Map;\n\npublic class PetControllerTests extends AbstractClinicGraphqlTests {\n\n    @Test\n    public void petsQuery_shouldReturnAllPets() {\n        userRoleGraphQlTester.document(\"query { pets { id name } }\")\n            .execute()\n            .path(\"data.pets[*]\").entityList(Object.class).hasSize(70)\n            .path(\"data.pets[0].id\").hasValue()\n            .path(\"data.pets[0].name\").hasValue();\n    }\n\n    @Test\n    public void petByIdQuery_shouldReturnPet() {\n        userRoleGraphQlTester.document(\"query { pet(id: 3) { id name } }\")\n            .execute()\n            .path(\"data.pet.id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"data.pet.name\").entity(String.class).isEqualTo(\"Rosy\");\n    }\n\n    @Test\n    public void petByIdQuery_shouldReturnNullForUnknownPet() {\n        userRoleGraphQlTester.document(\"query { pet(id: 666) { id name } }\")\n            .execute()\n            .path(\"data.pet\").valueIsNull();\n    }\n\n    @Test\n    public void pet_shouldIncludeVisits() {\n        userRoleGraphQlTester\n            .document(\"query { pet(id: 8) { id visits { totalCount visits { id  } } } }\")\n            .execute()\n            .path(\"data.pet.visits.totalCount\").entity(int.class).isEqualTo(2)\n            .path(\"data.pet.visits[*]\").entityList(Object.class).hasSize(2)\n            .path(\"data.pet.visits.visits[0].id\").entity(String.class).isEqualTo(\"2\")\n            .path(\"data.pet.visits.visits[1].id\").entity(String.class).isEqualTo(\"3\");\n    }\n\n    @Test\n    public void addPetMutation_shouldAddNewPet() {\n\n        userRoleGraphQlTester.documentName(\"addPetMutation\")\n            .execute()\n            .path(\"data.addPet.pet.id\").hasValue()\n            .path(\"data.addPet.pet.birthDate\").entity(String.class).isEqualTo(\"2019/03/17\")\n            .path(\"data.addPet.pet.owner.id\").entity(String.class).isEqualTo(\"2\")\n            .path(\"data.addPet.pet.type.id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"data.addPet.pet.visits.totalCount\").entity(int.class).isEqualTo(0);\n\n        userRoleGraphQlTester.document(\"query { pets { id } }\")\n            .execute()\n            .path(\"data.pets[*]\").entityList(Object.class).hasSize(71);\n    }\n\n    @Test\n    public void updatePetMutation_shouldUpdatePet() {\n        userRoleGraphQlTester.documentName(\"updatePetMutation\")\n            .variable(\"updatePetInput\", Map.of(\n                    \"petId\", 1, //\n                    \"birthDate\", \"2022/03/29\" //\n                )\n            )\n            .execute()\n            .path(\"data.updatePet.pet.id\").entity(String.class).isEqualTo(\"1\")\n            .path(\"data.updatePet.pet.birthDate\").entity(String.class).isEqualTo(\"2022/03/29\")\n            .path(\"data.updatePet.pet.owner.id\").entity(String.class).isEqualTo(\"1\")\n            .path(\"data.updatePet.pet.type.id\").entity(String.class).isEqualTo(\"1\");\n\n\n        userRoleGraphQlTester.documentName(\"updatePetMutation\")\n            .variable(\"updatePetInput\", Map.of(\n                    \"petId\", 4, //\n                    \"typeId\", 3\n                )\n            )\n            .execute()\n            .path(\"data.updatePet.pet.id\").entity(String.class).isEqualTo(\"4\")\n            .path(\"data.updatePet.pet.type.id\").entity(String.class).isEqualTo(\"3\");\n\n        userRoleGraphQlTester.documentName(\"updatePetMutation\")\n            .variable(\"updatePetInput\", Map.of(\n                    \"petId\", 4, //\n                    \"typeId\", 3\n                )\n            )\n            .execute()\n            .path(\"data.updatePet.pet.id\").entity(String.class).isEqualTo(\"4\")\n            .path(\"data.updatePet.pet.type.id\").entity(String.class).isEqualTo(\"3\");\n\n        userRoleGraphQlTester.documentName(\"updatePetMutation\")\n            .variable(\"updatePetInput\", Map.of(\n                    \"petId\", 5, //\n                    \"name\", \"Klaus-Dieter\"\n                )\n            )\n            .execute()\n            .path(\"data.updatePet.pet.id\").entity(String.class).isEqualTo(\"5\")\n            .path(\"data.updatePet.pet.name\").entity(String.class).isEqualTo(\"Klaus-Dieter\");\n\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/PetTypeControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\n\npublic class PetTypeControllerTests extends AbstractClinicGraphqlTests {\n\n    @Test\n    void pettypesQuery_shouldReturnAllPetTypes() {\n        this.userRoleGraphQlTester.document(\"query { pettypes { id name } }\")\n            .execute()\n            .path(\"data.pettypes[*]\").entityList(Object.class).hasSize(6)\n            .path(\"data.pettypes[1].id\").hasValue()\n            .path(\"data.pettypes[1].name\").hasValue();\n    }\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/SpecialtyControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Assertions;\nimport org.junit.jupiter.api.Test;\nimport org.springframework.graphql.test.tester.GraphQlTester;\nimport org.springframework.test.annotation.DirtiesContext;\n\npublic class SpecialtyControllerTests extends AbstractClinicGraphqlTests {\n\n    @Test\n    public void specialtiesQueryReturnsList() {\n        String query = \"query {\" +\n                       \"  specialties {\" +\n                       \"    id\" +\n                       \"    name\" +\n                       \"  }\" +\n                       \"}\";\n\n        userRoleGraphQlTester\n            .document(query)\n            .execute()\n            .path(\"specialties\").entityList(Object.class).hasSizeGreaterThan(2);\n        ;\n    }\n\n    @Test\n    public void updateSpecialtyWorks() {\n        String query = \"mutation {\" +\n                       \"  updateSpecialty(input: {specialtyId: 1, name: \\\"test\\\"}) {\" +\n                       \"    specialty {\" +\n                       \"      id\" +\n                       \"      name\" +\n                       \"    }\" +\n                       \"  }\" +\n                       \"}\";\n\n        userRoleGraphQlTester\n            .document(query)\n            .execute()\n            .path(\"updateSpecialty.specialty.name\").entity(String.class).isEqualTo(\"test\");\n        ;\n    }\n\n    @Test\n    public void addSpecialtyWorks() {\n        String query = \"mutation {\" +\n                       \"  addSpecialty(input: {name: \\\"xxx\\\"}) {\" +\n                       \"    specialty {\" +\n                       \"      id\" +\n                       \"      name\" +\n                       \"    }\" +\n                       \"  }\" +\n                       \"}\";\n\n        userRoleGraphQlTester\n            .document(query)\n            .execute()\n            .path(\"addSpecialty.specialty.name\").entity(String.class).isEqualTo(\"xxx\");\n        ;\n    }\n\n    @Test\n    public void addAndRemoveSpecialtyWorks() {\n        String getQuery = \"query {\" +\n                          \"  specialties {\" +\n                          \"    id\" +\n                          \"    name\" +\n                          \"  }\" +\n                          \"}\";\n\n        final int specialtyCount = userRoleGraphQlTester\n            .document(getQuery)\n            .execute()\n            .path(\"specialties\").entityList(Object.class).get().size();\n\n        String query = \"mutation {\" +\n                       \"  addSpecialty(input: {name: \\\"yyy\\\"}) {\" +\n                       \"    specialty {\" +\n                       \"      id\" +\n                       \"      name\" +\n                       \"    }\" +\n                       \"  }\" +\n                       \"}\";\n\n        GraphQlTester.Response response = userRoleGraphQlTester\n            .document(query)\n            .execute();\n        response\n            .path(\"addSpecialty.specialty.name\").entity(String.class).isEqualTo(\"yyy\");\n        String id = response.path(\"addSpecialty.specialty.id\").entity(String.class).get();\n        Assertions.assertNotNull(id);\n\n        String removeQuery = \"mutation {\" +\n                             \"  removeSpecialty(input: {specialtyId: \" + id + \"}) {\" +\n                             \"    specialties {\" +\n                             \"      id\" +\n                             \"    }\" +\n                             \"  }\" +\n                             \"}\";\n\n        this.userRoleGraphQlTester.document(removeQuery)\n            .execute()\n            .path(\"removeSpecialty.specialties\").entityList(Object.class).hasSize(specialtyCount);\n    }\n\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/VetControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\nimport org.springframework.graphql.execution.ErrorType;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\npublic class VetControllerTests extends AbstractClinicGraphqlTests{\n\n    /**\n     * EXAMPLE:\n     * --------------------------\n     *\n     * Mutation returning a union type (AddVetPayload) with data or error, returns data if invoked correctly\n     */\n    @Test\n    void shouldAddNewVet() {\n        managerRoleGraphQlTester\n            .documentName(\"addVetMutation\")\n            .variable(\"specialtyIds\", new int[]{1, 3})\n            .execute()\n            .path(\"addVet.vet.id\").hasValue()\n            .path(\"addVet.vet.firstName\").entity(String.class).isEqualTo(\"Klaus\")\n            .path(\"addVet.vet.lastName\").entity(String.class).isEqualTo(\"Smith\")\n            .path(\"addVet.vet.specialties[*]\").entityList(Object.class).hasSize(2)\n            .path(\"addVet.vet.specialties[0].id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"addVet.vet.specialties[1].id\").entity(String.class).isEqualTo(\"1\");\n    }\n\n    /**\n     * EXAMPLE:\n     * --------------------------\n     *\n     * Mutation returning a union type (AddVetPayload) with data or error, returns \"domain\" error\n     * type if invoked correctly\n     */\n    @Test\n    void shouldReturnErrorPayloadOnUnknownSpecialty() {\n        managerRoleGraphQlTester\n            .documentName(\"addVetMutation\")\n            .variable(\"specialtyIds\", new int[]{666})\n            .execute()\n            .path(\"addVet.vet\").pathDoesNotExist()\n            .path(\"addVet.error\").entity(String.class).isEqualTo(\"Specialty with Id '666' not found\");\n    }\n\n    /**\n     * EXAMPLE:\n     * --------------------------\n     *\n     * Mutation is secured using fine-grained security with @PreAuth\n     */\n    @Test\n    void shouldForbidAddingVetsAsUser() {\n        userRoleGraphQlTester\n            .documentName(\"addVetMutation\")\n            .variable(\"specialtyIds\", new int[]{1, 3})\n            .execute()\n            .errors()\n            .satisfy(errors -> {\n                assertThat(errors).hasSize(1);\n                assertThat(errors.get(0).getErrorType()).isEqualTo(ErrorType.FORBIDDEN);\n            });\n    }\n\n\n    @Test\n    public void vetsReturnsListOfAllVets() {\n        // language=GraphQL\n        String query = \"\"\"\n\n            query {\n              vets {\n                edges {\n                  node { id lastName firstName visits { visits { id pet { id } } } }\n                  cursor\n                }\n                pageInfo { hasNextPage }\n              }\n            }\n        \"\"\"\n        ;\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"vets.edges\").entityList(Object.class).hasSize(10)\n            .path(\"vets.edges[0].node.id\").entity(int.class).isEqualTo(1)\n            .path(\"vets.edges[1].node.id\").entity(int.class).isEqualTo(3)\n            .path(\"vets.edges[1].node.lastName\").entity(String.class).isEqualTo(\"Douglas\")\n            .path(\"vets.edges[5].node.id\").entity(int.class).isEqualTo(4)\n            .path(\"vets.edges[5].node.visits.visits\").entityList(Object.class).hasSize(2)\n            .path(\"vets.edges[5].node.visits.visits[0].id\").entity(int.class).isEqualTo(1)\n            .path(\"vets.edges[5].node.visits.visits[0].pet.id\").entity(int.class).isEqualTo(7)\n            .path(\"vets.edges[5].node.visits.visits[1].id\").entity(int.class).isEqualTo(3)\n            .path(\"vets.edges[5].node.visits.visits[1].pet.id\").entity(int.class).isEqualTo(8)\n            .path(\"vets.edges[8].node.id\").entity(int.class).isEqualTo(5)\n            .path(\"vets.edges[9].node.id\").entity(int.class).isEqualTo(9)\n            .path(\"vets.pageInfo.hasNextPage\").entity(boolean.class).isEqualTo(false)\n        ;\n    }\n\n    @Test\n    public void vetReturnsVetById() {\n        String query = \"query {\" +\n            \"  vet(id:4) {\" +\n            \"    id\" +\n            \"    specialties {\" +\n            \"      id\" +\n            \"    }\"+\n            \"    visits {\" +\n            \"      totalCount\" +\n            \"      visits {\" +\n            \"        id\" +\n            \"        pet {\" +\n            \"          id\" +\n            \"        }\" +\n            \"      }\" +\n            \"    }\" +\n            \"  }\" +\n            \"}\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"vet.specialties[0].id\").entity(int.class).isEqualTo(2)\n            .path(\"vet.visits.totalCount\").entity(int.class).isEqualTo(2)\n            .path(\"vet.visits.visits[0].id\").entity(String.class).isEqualTo(\"1\")\n            .path(\"vet.visits.visits[0].pet.id\").entity(String.class).isEqualTo(\"7\")\n        ;\n    }\n\n    @Test\n    public void vetReturnsNullIfNotFound() {\n        String query = \"query {\" +\n            \"  vet(id:666) {\" +\n            \"    id\" +\n            \"    specialties {\" +\n            \"      id\" +\n            \"    }\"+\n            \"    visits {\" +\n            \"      totalCount\" +\n            \"      visits {\" +\n            \"        id\" +\n            \"        pet {\" +\n            \"          id\" +\n            \"        }\" +\n            \"      }\" +\n            \"    }\" +\n            \"  }\" +\n            \"}\";\n\n        userRoleGraphQlTester.document(query)\n            .execute()\n            .path(\"vet\").valueIsNull();\n        ;\n    }\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/VisitControllerTests.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.autoconfigure.graphql.GraphQlProperties;\nimport org.springframework.boot.test.autoconfigure.graphql.tester.AutoConfigureHttpGraphQlTester;\nimport org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;\nimport org.springframework.boot.test.context.SpringBootTest;\nimport org.springframework.context.annotation.Import;\nimport org.springframework.graphql.server.WebGraphQlHandler;\nimport org.springframework.graphql.test.tester.GraphQlTester;\nimport org.springframework.graphql.test.tester.WebGraphQlTester;\nimport org.springframework.graphql.test.tester.WebSocketGraphQlTester;\nimport org.springframework.samples.petclinic.PetClinicTestDbConfiguration;\nimport org.springframework.test.web.reactive.server.WebTestClient;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.web.reactive.socket.client.ReactorNettyWebSocketClient;\nimport org.springframework.web.reactive.socket.client.WebSocketClient;\nimport reactor.core.publisher.Flux;\nimport reactor.test.StepVerifier;\n\nimport java.net.URI;\nimport java.util.Map;\n\npublic class VisitControllerTests extends AbstractClinicGraphqlTests {\n\n    private static final Logger log = LoggerFactory.getLogger( VisitControllerTests.class );\n\n    @Test\n    public void visit_shouldIncludeTreatingVet() {\n        userRoleGraphQlTester\n            .document(\"query { pet(id: 8) { id visits { visits { id treatingVet { id } } } } }\")\n            .execute()\n            .path(\"data.pet.visits.visits[*]\").entityList(Object.class).hasSize(2)\n            .path(\"data.pet.visits.visits[0].id\").entity(String.class).isEqualTo(\"2\")\n            .path(\"data.pet.visits.visits[0].treatingVet\").valueIsNull()\n            .path(\"data.pet.visits.visits[1].id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"data.pet.visits.visits[1].treatingVet.id\").entity(String.class).isEqualTo(\"4\");\n    }\n\n    @Test\n    void shouldAddNewVisit() {\n        userRoleGraphQlTester\n            .documentName(\"addVisitMutation\")\n            .execute()\n            .path(\"addVisit.visit.description\").entity(String.class).isEqualTo(\"hurray\")\n            .path(\"addVisit.visit.date\").entity(String.class).isEqualTo(\"2020/12/31\")\n            .path(\"addVisit.visit.pet.id\").entity(String.class).isEqualTo(\"1\");\n\n    }\n\n    @Test\n    void shouldAddNewVisitFromVariables_And_HandlesDateCoercingInVariables(@Autowired WebGraphQlTester graphQlTester) {\n        userRoleGraphQlTester\n            .documentName(\"addVisitMutationWithVariables\")\n            .variable(\"addVisitInput\", Map.of(\n                \"petId\", 3,//\n                \"description\", \"Another visit\", //\n                \"date\", \"2022/03/25\"\n            ))\n            .execute()\n            .path(\"addVisit.visit.description\").entity(String.class).isEqualTo(\"Another visit\")\n            .path(\"addVisit.visit.date\").entity(String.class).isEqualTo(\"2022/03/25\")\n            .path(\"addVisit.visit.pet.id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"addVisit.visit.treatingVet\").valueIsNull();\n\n    }\n\n    @Test\n    void shouldAddNewVisitFromVariablesWithVetId(@Autowired WebGraphQlTester graphQlTester) {\n        userRoleGraphQlTester\n            .documentName(\"addVisitMutationWithVariables\")\n            .variable(\"addVisitInput\", Map.of(\n                \"petId\", 3,//\n                \"description\", \"Another visit\", //\n                \"date\", \"2022/03/25\",\n                \"vetId\", 1\n            ))\n            .execute()\n            .path(\"addVisit.visit.description\").entity(String.class).isEqualTo(\"Another visit\")\n            .path(\"addVisit.visit.date\").entity(String.class).isEqualTo(\"2022/03/25\")\n            .path(\"addVisit.visit.pet.id\").entity(String.class).isEqualTo(\"3\")\n            .path(\"addVisit.visit.treatingVet.id\").entity(String.class).isEqualTo(\"1\");\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/graphql/VisitSubscriptionTest.java",
    "content": "package org.springframework.samples.petclinic.graphql;\n\nimport org.junit.jupiter.api.Test;\nimport org.slf4j.Logger;\nimport org.slf4j.LoggerFactory;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.autoconfigure.graphql.GraphQlProperties;\nimport org.springframework.boot.test.autoconfigure.graphql.tester.AutoConfigureHttpGraphQlTester;\nimport org.springframework.boot.test.autoconfigure.web.servlet.AutoConfigureMockMvc;\nimport org.springframework.boot.test.context.SpringBootTest;\nimport org.springframework.boot.test.web.server.LocalServerPort;\nimport org.springframework.context.annotation.Import;\nimport org.springframework.graphql.server.WebGraphQlHandler;\nimport org.springframework.graphql.test.tester.GraphQlTester;\nimport org.springframework.graphql.test.tester.WebGraphQlTester;\nimport org.springframework.graphql.test.tester.WebSocketGraphQlTester;\nimport org.springframework.samples.petclinic.PetClinicTestDbConfiguration;\nimport org.springframework.samples.petclinic.model.VisitService;\nimport org.springframework.test.web.reactive.server.WebTestClient;\nimport org.springframework.transaction.annotation.Transactional;\nimport org.springframework.web.reactive.socket.client.ReactorNettyWebSocketClient;\nimport org.springframework.web.reactive.socket.client.WebSocketClient;\nimport reactor.core.publisher.Flux;\nimport reactor.test.StepVerifier;\n\nimport java.time.LocalDate;\nimport java.util.Optional;\n\nimport static java.lang.String.format;\n\n@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)\n@Import(PetClinicTestDbConfiguration.class)\npublic class VisitSubscriptionTest extends GraphQlTokenProvider {\n\n    private static final Logger log = LoggerFactory.getLogger(VisitSubscriptionTest.class);\n\n    @LocalServerPort\n    int port;\n\n    @Autowired\n    VisitService visitService;\n\n    @Test\n    void onNewVisit_for_new_visits(@Autowired GraphQlProperties graphQlProperties) {\n        String url = format(\"http://localhost:%s/%s?access_token=%s\",\n            port,\n            graphQlProperties.getWebsocket().getPath(),\n            createUserToken());\n\n        // https://docs.spring.io/spring-graphql/reference/testing.html#testing.subscriptions\n        WebSocketClient client = new ReactorNettyWebSocketClient();\n        WebSocketGraphQlTester tester = WebSocketGraphQlTester.builder(url, client).build();\n\n        Flux<GraphQlTester.Response> visitSubscription = tester.\n            // language=GraphQL\n                document(\"\"\"\n                    subscription {\n                        onNewVisit {\n                            id description pet { id } treatingVet { id }\n                        }\n                    }\n                \"\"\")\n            .executeSubscription()\n            .toFlux();  //\n\n        var newVisit = visitService.addVisit(2,\n            \"New Visit for Subscription\",\n            LocalDate.now(),\n            Optional.of(1));\n\n        StepVerifier.\n            create(visitSubscription)\n            .consumeNextWith(r -> {\n                r.path(\"onNewVisit.id\").entity(Integer.class).isEqualTo(newVisit.getId())\n                    .path(\"onNewVisit.description\").entity(String.class).isEqualTo(\"New Visit for Subscription\")\n                    .path(\"onNewVisit.pet.id\").entity(Integer.class).isEqualTo(2)\n                    .path(\"onNewVisit.treatingVet.id\").entity(Integer.class).isEqualTo(1);\n            }).thenCancel().verify();\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/model/ValidatorTests.java",
    "content": "/*\n * Copyright 2012-2019 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\npackage org.springframework.samples.petclinic.model;\n\nimport org.junit.jupiter.api.Test;\nimport org.springframework.context.i18n.LocaleContextHolder;\nimport org.springframework.validation.beanvalidation.LocalValidatorFactoryBean;\n\nimport jakarta.validation.ConstraintViolation;\nimport jakarta.validation.Validator;\nimport java.util.Locale;\nimport java.util.Set;\n\nimport static org.assertj.core.api.Assertions.assertThat;\n\n/**\n * @author Michael Isvy Simple test to make sure that Bean Validation is working (useful\n * when upgrading to a new version of Hibernate Validator/ Bean Validation)\n */\nclass ValidatorTests {\n\n    private Validator createValidator() {\n        LocalValidatorFactoryBean localValidatorFactoryBean = new LocalValidatorFactoryBean();\n        localValidatorFactoryBean.afterPropertiesSet();\n        return localValidatorFactoryBean;\n    }\n\n    @Test\n    void shouldNotValidateWhenFirstNameEmpty() {\n\n        LocaleContextHolder.setLocale(Locale.ENGLISH);\n        Person person = new Person();\n        person.setFirstName(\"\");\n        person.setLastName(\"smith\");\n\n        Validator validator = createValidator();\n        Set<ConstraintViolation<Person>> constraintViolations = validator.validate(person);\n\n        assertThat(constraintViolations).hasSize(1);\n        ConstraintViolation<Person> violation = constraintViolations.iterator().next();\n        assertThat(violation.getPropertyPath().toString()).isEqualTo(\"firstName\");\n        assertThat(violation.getMessage()).isEqualTo(\"must not be empty\");\n    }\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/repository/ApplicationTestConfig.java",
    "content": "package org.springframework.samples.petclinic.repository;\n\nimport org.mockito.MockitoAnnotations;\nimport org.springframework.boot.test.context.TestConfiguration;\n\n@TestConfiguration\npublic class ApplicationTestConfig {\n\n\tpublic ApplicationTestConfig(){\n\t\tMockitoAnnotations.openMocks(this);\n\t}\n\n}\n"
  },
  {
    "path": "backend/src/test/java/org/springframework/samples/petclinic/repository/ClinicRepositorySpringDataJpaTests.java",
    "content": "/*\n * Copyright 2002-2017 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *      http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.springframework.samples.petclinic.repository;\n\nimport jakarta.persistence.EntityManager;\nimport org.junit.jupiter.api.BeforeEach;\nimport org.junit.jupiter.api.Test;\nimport org.mockito.MockitoAnnotations;\nimport org.springframework.beans.factory.annotation.Autowired;\nimport org.springframework.boot.test.context.SpringBootTest;\nimport org.springframework.context.annotation.Import;\nimport org.springframework.data.domain.*;\nimport org.springframework.data.jpa.domain.Specification;\nimport org.springframework.samples.petclinic.PetClinicTestDbConfiguration;\nimport org.springframework.samples.petclinic.model.*;\nimport org.springframework.samples.petclinic.util.EntityUtils;\nimport org.springframework.test.context.ContextConfiguration;\nimport org.springframework.transaction.annotation.Transactional;\n\nimport java.util.Collection;\nimport java.util.Date;\nimport java.util.Optional;\n\nimport static org.assertj.core.api.Assertions.assertThat;\nimport static org.junit.jupiter.api.Assertions.assertEquals;\nimport static org.junit.jupiter.api.Assertions.assertFalse;\nimport static org.springframework.samples.petclinic.model.OwnerFilter.NO_FILTER;\n\n/**\n * <p> Base class for Repository integration tests. </p> <p> Subclasses should specify Spring context\n * configuration using {@link ContextConfiguration @ContextConfiguration} annotation </p> <p>\n * AbstractclinicServiceTests and its subclasses benefit from the following services provided by the Spring\n * TestContext Framework: </p> <ul> <li><strong>Spring IoC container caching</strong> which spares us unnecessary set up\n * time between test execution.</li> <li><strong>Dependency Injection</strong> of test fixture instances, meaning that\n * we don't need to perform application context lookups.\n * <li><strong>Transaction management</strong>, meaning each test method is executed in its own transaction,\n * which is automatically rolled back by default. Thus, even if tests insert or otherwise change database state, there\n * is no need for a teardown or cleanup script. <li> An {@link org.springframework.context.ApplicationContext\n * ApplicationContext} is also inherited and can be used for explicit bean lookup if necessary. </li> </ul>\n *\n * @author Ken Krebs\n * @author Rod Johnson\n * @author Juergen Hoeller\n * @author Sam Brannen\n * @author Michael Isvy\n * @author Vitaliy Fedoriv\n */\n@SpringBootTest\n@Transactional\n@Import(PetClinicTestDbConfiguration.class)\nclass ClinicRepositorySpringDataJpaTests {\n\n    @Autowired\n    EntityManager entityManager;\n\n    @Autowired\n    private PetRepository petRepository;\n\n    @Autowired\n    private VetRepository vetRepository;\n\n    @Autowired\n    private OwnerRepository ownerRepository;\n\n    @Autowired\n    private VisitRepository visitRepository;\n\n    @Autowired\n    private SpecialtyRepository specialtyRepository;\n\n    @Autowired\n    private PetTypeRepository petTypeRepository;\n\n    @BeforeEach\n    void init() {\n        MockitoAnnotations.openMocks(this);\n    }\n\n    @Test\n    void shouldFindFall() {\n        OwnerFilter filter = new OwnerFilter();\n        filter.setLastName(\"Escobito\");\n        var page = ownerRepository.findAll(filter, PageRequest.ofSize(10));\n        assertThat(page.getTotalElements()).isEqualTo(1L);\n        assertThat(page.getContent().get(0).getLastName()).isEqualTo(\"Escobito\");\n\n        filter = new OwnerFilter();\n        // lastname search is \"Starts with\", i.e. all names that start\n        // with \"es\" should be returned (case insensitive)\n        filter.setLastName(\"es\");\n        page = ownerRepository.findAll(filter, PageRequest.ofSize(10));\n        assertThat(page.getTotalElements()).isEqualTo(2L);\n    }\n\n    @Test\n    void shouldFindSingleOwnerWithPet() {\n        Owner owner = this.ownerRepository.findById(1).orElseThrow();\n        assertThat(owner.getLastName()).startsWith(\"Franklin\");\n        assertThat(owner.getPets().size()).isEqualTo(1);\n        assertThat(owner.getPets().get(0).getType()).isNotNull();\n        assertThat(owner.getPets().get(0).getType().getName()).isEqualTo(\"Cat\");\n    }\n\n    @Test\n    void shouldInsertOwner() {\n        Owner owner = new Owner();\n        owner.setFirstName(\"Sam\");\n        owner.setLastName(\"Schultz\");\n        owner.setAddress(\"4, Evans Street\");\n        owner.setCity(\"Wollongong\");\n        owner.setTelephone(\"4444444444\");\n        this.ownerRepository.save(owner);\n        assertThat(owner.getId().longValue()).isNotEqualTo(0);\n    }\n\n    @Test\n    void shouldUpdateOwner() {\n        Owner owner = this.ownerRepository.findById(1).orElseThrow();\n        String oldLastName = owner.getLastName();\n        String newLastName = oldLastName + \"X\";\n\n        owner.setLastName(newLastName);\n        this.ownerRepository.save(owner);\n\n        // retrieving new name from database\n        owner = this.ownerRepository.findById(1).orElseThrow();\n        assertThat(owner.getLastName()).isEqualTo(newLastName);\n    }\n\n    @Test\n    void shouldFindPetWithCorrectId() {\n        Pet pet7 = this.petRepository.findById(7).orElseThrow();\n        assertThat(pet7.getName()).startsWith(\"Samantha\");\n        assertThat(pet7.getOwner().getFirstName()).isEqualTo(\"Jean\");\n    }\n\n    @Test\n    void shouldReturnEmptyOnMissingPet() {\n        var unknownPet = this.petRepository.findById(7777);\n        assertFalse(unknownPet.isPresent());\n    }\n\n    @Test\n    void shouldInsertPetIntoDatabaseAndGenerateId() {\n        Owner owner6 = this.ownerRepository.findById(6).orElseThrow();\n        int found = owner6.getPets().size();\n\n        Pet pet = new Pet();\n        pet.setName(\"bowser\");\n        Collection<PetType> types = this.petRepository.findPetTypes();\n        pet.setType(EntityUtils.getById(types, PetType.class, 2));\n        pet.setBirthDate(EntityUtils.asDateTime(new Date()));\n        owner6.addPet(pet);\n        assertThat(owner6.getPets().size()).isEqualTo(found + 1);\n\n        this.petRepository.save(pet);\n        this.ownerRepository.save(owner6);\n\n        owner6 = this.ownerRepository.findById(6).orElseThrow();\n        assertThat(owner6.getPets().size()).isEqualTo(found + 1);\n        // checks that id has been generated\n        assertThat(pet.getId()).isNotNull();\n    }\n\n    @Test\n    void shouldUpdatePetName() {\n        Pet pet7 = this.petRepository.findById(7).orElseThrow();\n        String oldName = pet7.getName();\n\n        String newName = oldName + \"X\";\n        pet7.setName(newName);\n        this.petRepository.save(pet7);\n\n        pet7 = this.petRepository.findById(7).orElseThrow();\n        assertThat(pet7.getName()).isEqualTo(newName);\n    }\n\n    @Test\n    void shouldFindVets() {\n        var vets = this.vetRepository.findBy(ScrollPosition.offset(), Sort.by(\"lastName\", \"firstName\"), Limit.of(2));\n\n        assertThat(vets.size()).isEqualTo(2);\n        assertThat(vets.getContent().get(0).getId()).isEqualTo(1);\n        assertThat(vets.getContent().get(1).getId()).isEqualTo(3);\n    }\n\n    @Test\n    void shouldAddNewVisitForPet() {\n        Pet pet7 = this.petRepository.findById(7).orElseThrow();\n        int found = pet7.getVisits().size();\n        Visit visit = new Visit();\n        pet7.addVisit(visit);\n        visit.setDescription(\"test\");\n        this.visitRepository.save(visit);\n        this.petRepository.save(pet7);\n\n        pet7 = this.petRepository.findById(7).orElseThrow();\n        assertThat(pet7.getVisits().size()).isEqualTo(found + 1);\n        assertThat(visit.getId()).isNotNull();\n    }\n\n    @Test\n    void shouldFindVisitsByPetId() throws Exception {\n        Collection<Visit> visits = this.visitRepository.findByPetIdOrderById(7);\n        assertThat(visits.size()).isEqualTo(2);\n        Visit[] visitArr = visits.toArray(new Visit[visits.size()]);\n        assertThat(visitArr[0].getPet()).isNotNull();\n        assertThat(visitArr[0].getDate()).isNotNull();\n        assertThat(visitArr[0].getPet().getId()).isEqualTo(7);\n    }\n\n    @Test\n    void shouldFindAllPets() {\n        Collection<Pet> pets = this.petRepository.findAll();\n        Pet pet1 = EntityUtils.getById(pets, Pet.class, 1);\n        assertThat(pet1.getName()).isEqualTo(\"Leo\");\n        Pet pet3 = EntityUtils.getById(pets, Pet.class, 3);\n        assertThat(pet3.getName()).isEqualTo(\"Rosy\");\n    }\n\n    @Test\n    void shouldDeletePet() {\n        Pet pet = this.petRepository.findById(1).orElseThrow();\n        this.petRepository.delete(pet);\n        try {\n            pet = this.petRepository.findById(1).orElseThrow();\n        } catch (Exception e) {\n            pet = null;\n        }\n        assertThat(pet).isNull();\n    }\n\n    @Test\n    void shouldFindVisitDyId() {\n        Visit visit = this.visitRepository.findById(1).orElseThrow();\n        assertThat(visit.getId()).isEqualTo(1);\n        assertThat(visit.getPet().getName()).isEqualTo(\"Samantha\");\n    }\n\n    @Test\n    void shouldFindAllVisits() {\n        Collection<Visit> visits = this.visitRepository.findAll();\n        Visit visit1 = EntityUtils.getById(visits, Visit.class, 1);\n        assertThat(visit1.getPet().getName()).isEqualTo(\"Samantha\");\n        Visit visit3 = EntityUtils.getById(visits, Visit.class, 3);\n        assertThat(visit3.getPet().getName()).isEqualTo(\"Max\");\n    }\n\n    @Test\n    void shouldInsertVisit() {\n        Collection<Visit> visits = this.visitRepository.findAll();\n        int found = visits.size();\n\n        Pet pet = this.petRepository.findById(1).orElseThrow();\n\n        Visit visit = new Visit();\n        visit.setPet(pet);\n        visit.setDate(EntityUtils.asDateTime(new Date()));\n        visit.setDescription(\"new visit\");\n\n\n        this.visitRepository.save(visit);\n        assertThat(visit.getId().longValue()).isNotEqualTo(0);\n\n        visits = this.visitRepository.findAll();\n        assertThat(visits.size()).isEqualTo(found + 1);\n    }\n\n    @Test\n    void shouldUpdateVisit() {\n        Visit visit = this.visitRepository.findById(1).orElseThrow();\n        String oldDesc = visit.getDescription();\n        String newDesc = oldDesc + \"X\";\n        visit.setDescription(newDesc);\n        this.visitRepository.save(visit);\n        visit = this.visitRepository.findById(1).orElseThrow();\n        assertThat(visit.getDescription()).isEqualTo(newDesc);\n    }\n\n    @Test\n    void shouldDeleteVisit() {\n        Visit visit = this.visitRepository.findById(1).orElseThrow();\n        this.visitRepository.delete(visit);\n        visit = this.visitRepository.findById(1).orElse(null);\n        assertThat(visit).isNull();\n    }\n\n    @Test\n    void shouldFindVetDyId() {\n        Vet vet = this.vetRepository.findById(1).orElseThrow();\n        assertThat(vet.getFirstName()).isEqualTo(\"James\");\n        assertThat(vet.getLastName()).isEqualTo(\"Carter\");\n    }\n\n    @Test\n    void shouldInsertVet() {\n        Vet vet = new Vet();\n        vet.setFirstName(\"John\");\n        vet.setLastName(\"Dow\");\n\n        var newVet = this.vetRepository.save(vet);\n        assertThat(newVet.getId()).isNotNull();\n\n        var foundVet = this.vetRepository.findById(newVet.getId());\n        assertThat(foundVet.isPresent()).isTrue();\n    }\n\n    @Test\n    void shouldUpdateVet() {\n        Vet vet = this.vetRepository.findById(1).orElseThrow();\n        String oldLastName = vet.getLastName();\n        String newLastName = oldLastName + \"X\";\n        vet.setLastName(newLastName);\n        this.vetRepository.save(vet);\n        vet = this.vetRepository.findById(1).orElseThrow();\n        assertThat(vet.getLastName()).isEqualTo(newLastName);\n    }\n\n    @Test\n    void shouldDeleteVet() {\n        Vet vet = this.vetRepository.findById(1).orElseThrow();\n        this.vetRepository.delete(vet);\n        vet = this.vetRepository.findById(1).orElse(null);\n        assertThat(vet).isNull();\n    }\n\n    @Test\n    void shouldFindAllOwners() {\n        Collection<Owner> owners = this.ownerRepository.findAll();\n        Owner owner1 = EntityUtils.getById(owners, Owner.class, 1);\n        assertThat(owner1.getFirstName()).isEqualTo(\"George\");\n        Owner owner3 = EntityUtils.getById(owners, Owner.class, 3);\n        assertThat(owner3.getFirstName()).isEqualTo(\"Eduardo\");\n    }\n\n    @Test\n    void shouldFindOwnersPaginated() {\n        var owners = this.ownerRepository.findBy(NO_FILTER, c -> c.\n            limit(5)\n            .sortBy(Sort.by(\"lastName\"))\n            .scroll(ScrollPosition.offset()));\n\n        assertThat(owners.size()).isEqualTo(5);\n        assertThat(owners.getContent().get(0).getId()).isEqualTo(48);\n        assertThat(owners.getContent().get(1).getId()).isEqualTo(7);\n        assertThat(owners.getContent().get(2).getId()).isEqualTo(55);\n        assertThat(owners.getContent().get(3).getId()).isEqualTo(19);\n        assertThat(owners.getContent().get(4).getId()).isEqualTo(6);\n\n        var newPosition = owners.positionAt(2);\n        owners = this.ownerRepository.findBy(NO_FILTER, c -> c.\n            limit(5)\n            .sortBy(Sort.by(\"lastName\"))\n            .scroll(newPosition));\n        assertThat(owners.size()).isEqualTo(5);\n        assertThat(owners.getContent().get(0).getId()).isEqualTo(19);\n        assertThat(owners.getContent().get(1).getId()).isEqualTo(6);\n        assertThat(owners.getContent().get(2).getId()).isEqualTo(17);\n        assertThat(owners.getContent().get(3).getId()).isEqualTo(2);\n        assertThat(owners.getContent().get(4).getId()).isEqualTo(4);\n\n        // with filter\n        var filter = new OwnerFilter();\n        filter.setLastName(\"da\");\n        owners = this.ownerRepository.findBy(filter, c -> c.\n            limit(5)\n            .sortBy(Sort.by(\"lastName\"))\n            .scroll(ScrollPosition.offset(1)));\n        assertThat(owners.size()).isEqualTo(2);\n        assertThat(owners.getContent().get(0).getId()).isEqualTo(2);\n        assertThat(owners.getContent().get(1).getId()).isEqualTo(4);\n\n    }\n\n    @Test\n    void shouldDeleteOwner() {\n        Owner owner = this.ownerRepository.findById(1).orElseThrow();\n        this.ownerRepository.delete(owner);\n        try {\n            owner = this.ownerRepository.findById(1).orElseThrow();\n        } catch (Exception e) {\n            owner = null;\n        }\n        assertThat(owner).isNull();\n    }\n\n    @Test\n    void shouldFindPetTypeById() {\n        PetType petType = findPetTypeById(1);\n        assertThat(petType.getName()).isEqualTo(\"Cat\");\n    }\n\n    private PetType findPetTypeById(int petTypeId) {\n        return petTypeRepository.findById(petTypeId).orElse(null);\n    }\n\n    @Test\n    public void shouldFindAllPetTypes() {\n        Collection<PetType> petTypes = this.petRepository.findPetTypes();\n        PetType petType1 = EntityUtils.getById(petTypes, PetType.class, 1);\n        assertThat(petType1.getName()).isEqualTo(\"Cat\");\n        PetType petType3 = EntityUtils.getById(petTypes, PetType.class, 3);\n        assertThat(petType3.getName()).isEqualTo(\"Lizard\");\n    }\n\n    @Test\n    public void shouldInsertPetType() {\n        Collection<PetType> petTypes = this.petTypeRepository.findAll();\n        int found = petTypes.size();\n\n        PetType petType = new PetType();\n        petType.setName(\"tiger\");\n\n        this.petTypeRepository.save(petType);\n        assertThat(petType.getId().longValue()).isNotEqualTo(0);\n\n        petTypes = this.petTypeRepository.findAll();\n        assertThat(petTypes.size()).isEqualTo(found + 1);\n    }\n\n    @Test\n    public void shouldUpdatePetType() {\n        PetType petType = this.petTypeRepository.findById(1).orElseThrow();\n        String oldLastName = petType.getName();\n        String newLastName = oldLastName + \"X\";\n        petType.setName(newLastName);\n        this.petTypeRepository.save(petType);\n        petType = this.petTypeRepository.findById(1).orElseThrow();\n        assertThat(petType.getName()).isEqualTo(newLastName);\n    }\n\n    @Test\n    public void shouldFindSpecialtyById() {\n        Specialty specialty = this.specialtyRepository.findById(1).orElseThrow();\n        assertThat(specialty.getName()).isEqualTo(\"radiology\");\n\n    }\n\n    @Test\n    public void shouldFindAllSpecialtys() {\n        Collection<Specialty> specialties = this.specialtyRepository.findAll();\n        Specialty specialty1 = EntityUtils.getById(specialties, Specialty.class, 1);\n        assertThat(specialty1.getName()).isEqualTo(\"radiology\");\n        Specialty specialty3 = EntityUtils.getById(specialties, Specialty.class, 3);\n        assertThat(specialty3.getName()).isEqualTo(\"dentistry\");\n    }\n\n    @Test\n    public void shouldInsertSpecialty() {\n        Collection<Specialty> specialties = this.specialtyRepository.findAll();\n        int found = specialties.size();\n\n        Specialty specialty = new Specialty();\n        specialty.setName(\"dermatologist\");\n\n        this.specialtyRepository.save(specialty);\n        assertThat(specialty.getId().longValue()).isNotEqualTo(0);\n\n        specialties = this.specialtyRepository.findAll();\n        assertThat(specialties.size()).isEqualTo(found + 1);\n    }\n\n    @Test\n    public void shouldUpdateSpecialty() {\n        Specialty specialty = this.specialtyRepository.findById(1).orElseThrow();\n        String oldLastName = specialty.getName();\n\n        String newLastName = oldLastName + \"X\";\n        specialty.setName(newLastName);\n        this.specialtyRepository.save(specialty);\n        specialty = this.specialtyRepository.findById(1).orElseThrow();\n        assertThat(specialty.getName()).isEqualTo(newLastName);\n\n    }\n\n    @Test\n    public void shouldDeleteSpecialty() {\n        Specialty specialty = this.specialtyRepository.findById(1).orElseThrow();\n        this.specialtyRepository.delete(specialty);\n        specialty = this.specialtyRepository.findById(1).orElse(null);\n        assertThat(specialty).isNull();\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/addPetMutation.graphql",
    "content": "mutation {\n    addPet(input: {\n        name: \"Susi\",\n        birthDate: \"2019/03/17\",\n        ownerId: 2,\n        typeId: 3\n    }) {\n        pet {\n            birthDate\n            name\n            id\n            type {\n                id\n            }\n\n            owner {\n                id\n            }\n\n            visits {\n                totalCount\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/addVetMutation.graphql",
    "content": "mutation($specialtyIds: [Int!]!) {\n    addVet(input: {\n        firstName: \"Klaus\", lastName: \"Smith\"\n        specialtyIds: $specialtyIds\n    }) {\n        ... on AddVetErrorPayload {\n            error\n        }\n\n        ... on AddVetSuccessPayload {\n            vet {\n                id\n                firstName\n                lastName\n                specialties {\n                    id\n                    name\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/addVisitMutation.graphql",
    "content": "mutation {\n    addVisit(input:{\n        petId:1,\n        description:\"hurray\",\n        date:\"2020/12/31\",\n    }) {\n        visit {\n            date\n            id\n            description\n\n            pet {\n                id\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/addVisitMutationWithVariables.graphql",
    "content": "mutation($addVisitInput: AddVisitInput!) {\n    addVisit(input:$addVisitInput) {\n        visit {\n            date\n            id\n            description\n\n            pet {\n                id\n            }\n\n            treatingVet {\n                id\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/meQuery.graphql",
    "content": "query {\n    me {\n        username\n        fullname\n    }\n}\n"
  },
  {
    "path": "backend/src/test/resources/graphql-test/updatePetMutation.graphql",
    "content": "mutation($updatePetInput: UpdatePetInput!) {\n    updatePet(input: $updatePetInput) {\n        pet {\n            birthDate\n            name\n            id\n            type {\n                id\n            }\n\n            owner {\n                id\n            }\n\n            visits {\n                totalCount\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "build-local.sh",
    "content": "#! /bin/bash\n\ncd petclinic-graphiql && rm -rf ./dist && pnpm build && pnpm copy-to-backend && cd ..\n\n./mvnw -DskipTests -pl backend spring-boot:build-image -Dspring-boot.build-image.imageName=spring-petclinic/petclinic-graphql-backend:0.0.1\n\ncd frontend && rm -rf ./dist && pnpm build && docker build . --tag spring-petclinic/petclinic-graphql-frontend:0.0.1 && cd ..\n\necho \"Docker images have been built\"\necho \"You can run the docker-compose file with\"\necho \"docker-compose -f docker-compose-petclinic.yml up -d\"\n\n"
  },
  {
    "path": "docker-compose-petclinic.yml",
    "content": "version: \"3\"\nservices:\n  petclinic_graphql_db:\n    image: postgres:16.1-alpine\n    command: [\"postgres\", \"-c\", \"log_statement=all\"]\n    container_name: petclinic_graphql_db\n    environment:\n      - POSTGRES_PASSWORD=secretpw\n      - POSTGRES_USER=klaus\n      - POSTGRES_DB=petclinic_graphql_db\n      - POSTGRES_INITDB_ARGS=--locale-provider=icu --icu-locale=en\n  petclinic_graphql_backend:\n    image: spring-petclinic/petclinic-graphql-backend:0.0.1\n    container_name: petclinic_graphql_backend\n    depends_on:\n      - petclinic_graphql_db\n    environment:\n      - SPRING_DATASOURCE_URL=jdbc:postgresql://petclinic_graphql_db:5432/petclinic_graphql_db\n      - SPRING_DATASOURCE_USERNAME=klaus\n      - SPRING_DATASOURCE_PASSWORD=secretpw\n    ports:\n      - \"3091:9977\"\n  petclinic_graphql_frontend:\n    image: spring-petclinic/petclinic-graphql-frontend:0.0.1\n    container_name: petclinic_graphql_frontend\n    depends_on:\n      - petclinic_graphql_backend\n    ports:\n      - \"3090:3090\"\n"
  },
  {
    "path": "docker-compose.yml",
    "content": "version: \"3\"\nservices:\n  petclinic_graphql_db:\n    image: postgres:16.1-alpine\n    command: [\"postgres\", \"-c\", \"log_statement=all\"]\n    container_name: petclinic_graphql_db\n    ports:\n      - 5432\n    environment:\n      - POSTGRES_PASSWORD=secretpw\n      - POSTGRES_USER=klaus\n      - POSTGRES_DB=petclinic_graphql_db\n      # https://stackoverflow.com/a/74095511/6134498\n      - POSTGRES_INITDB_ARGS=--locale-provider=icu --icu-locale=en\n"
  },
  {
    "path": "e2e-tests/.github/workflows/playwright.yml",
    "content": "name: Playwright Tests\non:\n  push:\n    branches: [ main, master ]\n  pull_request:\n    branches: [ main, master ]\njobs:\n  test:\n    timeout-minutes: 60\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@v3\n    - uses: actions/setup-node@v3\n      with:\n        node-version: 18\n    - name: Install dependencies\n      run: pnpm install\n    - name: Install Playwright Browsers\n      run: pnpm exec playwright install --with-deps\n    - name: Run Playwright tests\n      run: pnpm exec playwright test\n    - uses: actions/upload-artifact@v3\n      if: always()\n      with:\n        name: playwright-report\n        path: playwright-report/\n        retention-days: 30\n"
  },
  {
    "path": "e2e-tests/.gitignore",
    "content": "node_modules/\n/test-results/\n/playwright-report/\n/playwright/.cache/\n"
  },
  {
    "path": "e2e-tests/.prettierrc",
    "content": "{\n  \"printWidth\": 130\n}\n"
  },
  {
    "path": "e2e-tests/package.json",
    "content": "{\n  \"name\": \"e2e-tests\",\n  \"version\": \"1.0.0\",\n  \"description\": \"\",\n  \"main\": \"index.js\",\n  \"scripts\": {\n    \"test\": \"playwright test\",\n    \"test:ui\": \"playwright test --ui\",\n    \"test:headed\": \"playwright test --headed --project chromium\",\n    \"test:docker-compose\": \"PW_FRONTEND_URL=http://localhost:3090 PW_GRAPHIQL_URL=http://localhost:3091 playwright test\"\n  },\n  \"keywords\": [],\n  \"author\": \"\",\n  \"license\": \"ISC\",\n  \"devDependencies\": {\n    \"@playwright/test\": \"^1.39.0\",\n    \"@types/node\": \"^20.8.9\"\n  },\n  \"dependencies\": {\n    \"uuid\": \"^9.0.1\"\n  }\n}\n"
  },
  {
    "path": "e2e-tests/playwright.config.ts",
    "content": "import { defineConfig, devices } from \"@playwright/test\";\n\n/**\n * Read environment variables from file.\n * https://github.com/motdotla/dotenv\n */\n// require('dotenv').config();\n\n/**\n * See https://playwright.dev/docs/test-configuration.\n */\nexport default defineConfig({\n  testDir: \"./tests\",\n  /* Run tests in files in parallel */\n  fullyParallel: true,\n  /* Fail the build on CI if you accidentally left test.only in the source code. */\n  forbidOnly: !!process.env.CI,\n  /* Retry on CI only */\n  retries: process.env.CI ? 2 : 0,\n  /* Opt out of parallel tests on CI. */\n  workers: process.env.CI ? 1 : undefined,\n  /* Reporter to use. See https://playwright.dev/docs/test-reporters */\n  reporter: process.env.CI\n    ? [[\"github\"], [\"junit\", { outputFile: \"test-results.xml\" }], [\"html\"]]\n    : \"html\",\n  /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */\n  use: {\n    /* Base URL to use in actions like `await page.goto('/')`. */\n    baseURL: process.env.PW_FRONTEND_URL || \"http://localhost:3080\",\n\n    /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */\n    trace: \"on-first-retry\",\n  },\n\n  /* Configure projects for major browsers */\n  projects: [\n    {\n      name: \"chromium\",\n      use: { ...devices[\"Desktop Chrome\"] },\n    },\n\n    {\n      name: \"firefox\",\n      use: { ...devices[\"Desktop Firefox\"] },\n    },\n\n    {\n      name: \"webkit\",\n      use: { ...devices[\"Desktop Safari\"] },\n    },\n\n    /* Test against mobile viewports. */\n    // {\n    //   name: 'Mobile Chrome',\n    //   use: { ...devices['Pixel 5'] },\n    // },\n    // {\n    //   name: 'Mobile Safari',\n    //   use: { ...devices['iPhone 12'] },\n    // },\n\n    /* Test against branded browsers. */\n    // {\n    //   name: 'Microsoft Edge',\n    //   use: { ...devices['Desktop Edge'], channel: 'msedge' },\n    // },\n    // {\n    //   name: 'Google Chrome',\n    //   use: { ...devices['Desktop Chrome'], channel: 'chrome' },\n    // },\n  ],\n\n  /* Run your local dev server before starting the tests */\n  // webServer: {\n  //   command: 'npm run start',\n  //   url: 'http://127.0.0.1:3000',\n  //   reuseExistingServer: !process.env.CI,\n  // },\n});\n"
  },
  {
    "path": "e2e-tests/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n\n    <groupId>org.springframework.samples.petclinic-graphql</groupId>\n    <artifactId>e2e-tests</artifactId>\n    <version>2.0.0</version>\n    <name>end-to-end tests</name>\n    <description>End-to-end-tests for Spring Petclinic GraphQL Example</description>\n\n</project>"
  },
  {
    "path": "e2e-tests/tests/graphiql.spec.ts",
    "content": "import os from \"os\";\nimport { test, expect } from \"@playwright/test\";\n\nconst graphiqlUrl = process.env.PW_GRAPHIQL_URL || \"http://localhost:9977\";\n\nconst platform = os.platform();\n\n// https://github.com/microsoft/playwright/issues/16459#issuecomment-1242423005\nconst controlKey = platform === \"darwin\" ? \"Meta\" : \"Control\";\nconsole.log(\"platform\", platform, \"using controlkey\", controlKey);\n\ntest(`customized graphiql at '${graphiqlUrl}' works`, async ({ page }) => {\n  await page.goto(graphiqlUrl);\n\n  await expect(page).toHaveTitle(/GraphiQL :: Spring PetClinic/i);\n\n  await page.getByRole(\"textbox\", { name: /username/i }).fill(\"susi\");\n  await page.getByRole(\"textbox\", { name: /password/i }).fill(\"susi\");\n  await page.getByRole(\"button\", { name: /login/i }).click();\n  await page.getByRole(\"button\", { name: /Prettify query/i }).click();\n\n  await expect(page.getByText(/query me/i)).toHaveCount(1);\n  await expect(page.getByText(/query twoowners/i)).toHaveCount(1);\n\n  // Clear editor\n  // await page.getByLabel(/query editor/i).click();\n  await page.getByLabel(\"Query Editor\").getByRole(\"textbox\").fill(`\n    query MyUsername { \n      me {\n        username\n      }\n    } \n  `);\n\n  await page.getByRole(\"button\", { name: /headers/i }).click();\n  await page.getByRole(\"button\", { name: /execute query/i }).click();\n\n  await expect(page.getByRole(\"menuitem\", { name: \"MyUsername\" })).toBeVisible();\n  await page.getByRole(\"menuitem\", { name: \"MyUsername\" }).click();\n\n  await expect(page.getByLabel(\"Result Window\")).toHaveText(/\"username\": \"susi\"/i);\n});\n"
  },
  {
    "path": "e2e-tests/tests/owner-detail.spec.ts",
    "content": "import { expect } from \"@playwright/test\";\nimport { petclinicTest } from \"./petclinic.fixtures\";\nimport { v4 as uuidv4 } from \"uuid\";\n\npetclinicTest(\"owner detail works\", async ({ page, loginPage, tableModel }) => {\n  await page.goto(\"/owners/6\"); // \"Jean Coleman\"\n  await loginPage.login(\"susi\", \"susi\", /Owners - Jean Coleman/);\n\n  const contactTable = tableModel(page.getByRole(\"region\", { name: /contact data/i }).locator(\"table\"));\n  await contactTable.expectTableRowContent(0, /name/i, /Jean Coleman/i);\n  await contactTable.expectTableRowContent(1, /Address/i, /105 N. Lake St./i);\n  await contactTable.expectTableRowContent(2, /city/i, /Monona/i);\n  await contactTable.expectTableRowContent(3, /Telephone/i, /6085552654/i);\n\n  const maxVisitsTable = tableModel(page.getByRole(\"region\", { name: /visits of max/i }).locator(\"table\"));\n  await expect(maxVisitsTable.tableLocator).toBeVisible();\n\n  await maxVisitsTable.expectTableRowContent(0, \"2013/01/02\", \"\", /rabies shot/);\n  await maxVisitsTable.expectTableRowContent(1, \"2013/01/03\", \"Rafael Ortega\", /neutered/);\n});\n\npetclinicTest(\"add visit\", async ({ context, page, loginPage, tableModel }) => {\n  await page.goto(\"/owners/7\"); // \"Jeff Black\"\n  await loginPage.login(\"susi\", \"susi\", /Owners - Jeff Black/);\n\n  const secondPage = await context.newPage();\n  await secondPage.goto(\"/owners/7\"); // \"Jeff Black\"\n\n  const luckyVisitsTable = tableModel(page.getByRole(\"region\", { name: /visits of lucky/i }).locator(\"table\"));\n  await luckyVisitsTable.tableLocator.isVisible();\n\n  const oldVisitCount = await luckyVisitsTable.rows.count();\n\n  const secondLuckyVisitsTable = tableModel(secondPage.getByRole(\"region\", { name: /visits of lucky/i }).locator(\"table\"));\n  await expect(secondLuckyVisitsTable.rows).toHaveCount(oldVisitCount);\n\n  await page.getByRole(\"button\", { name: /Add visit for pet Lucky/i }).click();\n\n  const form = page.getByRole(\"region\", { name: /Add visit for pet Lucky/i });\n  await expect(form).toBeVisible();\n\n  const description = `description-${uuidv4()}`;\n\n  await form.getByLabel(/date/i).fill(\"2024-08-20\");\n  await form.getByLabel(/description/i).fill(description);\n  await form.getByLabel(/vet/i).selectOption({\n    label: \"Linda Douglas\",\n  });\n  await form.getByRole(\"button\", { name: /save/i }).click();\n\n  await luckyVisitsTable.expectTableRowContent(oldVisitCount, \"2024/08/20\", \"Linda Douglas\", description);\n\n  // Check subscription: new created visit\n  //  should automatically be visible in second browser tab\n  await secondLuckyVisitsTable.expectTableRowContent(oldVisitCount, \"2024/08/20\", \"Linda Douglas\", description);\n});\n"
  },
  {
    "path": "e2e-tests/tests/owner-search-page.spec.ts",
    "content": "import { Locator, Page, expect } from \"@playwright/test\";\nimport { TableModel, petclinicTest } from \"./petclinic.fixtures\";\n\nclass OwnerSearchPage {\n  readonly loadMoreButton: Locator;\n  readonly orderAscButton: Locator;\n  readonly orderDescButton: Locator;\n  readonly resultTable: TableModel;\n\n  constructor(readonly page: Page) {\n    this.loadMoreButton = this.page.getByRole(\"button\", { name: /load more/i });\n    this.orderAscButton = this.page.getByRole(\"button\", {\n      name: /Order owners by lastname, ascending/i,\n    });\n    this.orderDescButton = this.page.getByRole(\"button\", {\n      name: /Order owners by lastname, descending/i,\n    });\n    this.resultTable = new TableModel(page, page.getByRole(\"table\", { name: /Owners/i }));\n  }\n\n  heading() {\n    return this.page.getByRole(\"heading\", { name: /Search owner/i });\n  }\n\n  async find(term: string) {\n    await this.page.getByRole(\"textbox\", { name: /last name/i }).fill(term);\n    await this.page.getByRole(\"button\", { name: /find/i }).click();\n  }\n}\n\npetclinicTest(\"owner search works\", async ({ page, loginPage }) => {\n  await page.goto(\"/\");\n\n  await loginPage.login(\"susi\", \"susi\");\n  await page.getByRole(\"link\", { name: \"Owners\" }).click();\n\n  const ownerSearchPage = new OwnerSearchPage(page);\n  await expect(ownerSearchPage.heading()).toBeVisible();\n\n  await ownerSearchPage.find(\"du\");\n  await expect(ownerSearchPage.orderAscButton).toBeDisabled();\n  await expect(ownerSearchPage.orderDescButton).toBeEnabled();\n  await expect(ownerSearchPage.loadMoreButton).toBeDisabled();\n  await expect(ownerSearchPage.resultTable.rows).toHaveCount(3);\n\n  await ownerSearchPage.resultTable.expectTableRowContent(\n    0,\n    \"Dubois\",\n    \"Sophie\",\n    \"456 Rue de la Paix\",\n    \"Paris\",\n    \"+33 6 12 34 56 78\",\n    \"Luna, Ollie\"\n  );\n  await ownerSearchPage.resultTable.expectTableRowContent(1, \"Dufresne\", \"Antoine\");\n  await ownerSearchPage.resultTable.expectTableRowContent(2, \"Dupont\", \"François\");\n\n  await ownerSearchPage.orderDescButton.click();\n  await expect(ownerSearchPage.orderAscButton).toBeEnabled();\n  await expect(ownerSearchPage.orderDescButton).toBeDisabled();\n  await ownerSearchPage.resultTable.expectTableRowContent(0, \"Dupont\", \"François\");\n  await ownerSearchPage.resultTable.expectTableRowContent(1, \"Dufresne\", \"Antoine\");\n  await ownerSearchPage.resultTable.expectTableRowContent(2, \"Dubois\", \"Sophie\");\n\n  await ownerSearchPage.orderAscButton.click();\n  await ownerSearchPage.find(\"d\");\n  await expect(ownerSearchPage.loadMoreButton).toBeEnabled();\n  await expect(ownerSearchPage.resultTable.rows).toHaveCount(5);\n  await ownerSearchPage.resultTable.expectTableRowContent(0, \"da Silva\");\n  await ownerSearchPage.resultTable.expectTableRowContent(1, \"Davis\");\n  await ownerSearchPage.resultTable.expectTableRowContent(2, \"Davis\");\n  await ownerSearchPage.resultTable.expectTableRowContent(3, \"Dubois\");\n  await ownerSearchPage.resultTable.expectTableRowContent(4, \"Dufresne\");\n\n  await ownerSearchPage.loadMoreButton.click();\n  await expect(ownerSearchPage.loadMoreButton).toBeDisabled();\n  await expect(ownerSearchPage.resultTable.rows).toHaveCount(6);\n  await ownerSearchPage.resultTable.expectTableRowContent(0, \"da Silva\"); // should be unchanged\n  await ownerSearchPage.resultTable.expectTableRowContent(5, \"Dupont\"); // new fetched item\n});\n"
  },
  {
    "path": "e2e-tests/tests/petclinic.fixtures.ts",
    "content": "import { test as base } from \"@playwright/test\";\n\nimport { expect, type Locator, type Page } from \"@playwright/test\";\n\nclass LoginPage {\n  constructor(readonly page: Page) {}\n\n  async login(username: string, password: string, expectedAfterLoginHeading: string | RegExp = \"Welcome to PetClinic!\") {\n    await expect(this.page.getByRole(\"heading\", { name: \"Login to PetClinic\" })).toBeVisible();\n\n    await this.page.getByRole(\"textbox\", { name: /username/i }).fill(username);\n    await this.page.getByRole(\"textbox\", { name: /password/i }).fill(password);\n    await this.page.getByRole(\"button\", { name: /login/i }).click();\n\n    await expect(this.page.getByRole(\"heading\", { name: expectedAfterLoginHeading })).toHaveCount(1);\n  }\n}\n\nexport class TableModel {\n  readonly rows: Locator;\n\n  constructor(readonly page: Page, readonly tableLocator: Locator) {\n    this.rows = tableLocator.locator(\"tbody tr\");\n  }\n\n  async expectTableRowContent(rowIx: number, ...cellContents: Array<string | RegExp>) {\n    const row = this.tableLocator.locator(\"tbody tr\").nth(rowIx);\n    await expect(row).toBeVisible();\n\n    for (const [ix, content] of cellContents.entries()) {\n      await expect(row.locator(\"td\").nth(ix)).toHaveText(content);\n    }\n  }\n}\n\ntype TableFactoryFunction = (tableLocator: Locator) => TableModel;\n\nexport const petclinicTest = base.extend<{\n  loginPage: LoginPage;\n  tableModel: TableFactoryFunction;\n}>({\n  loginPage: async ({ page }, use) => {\n    const loginPage = new LoginPage(page);\n    await use(loginPage);\n  },\n\n  tableModel: async ({ page }, use) => {\n    const table: TableFactoryFunction = (tableLocator) => new TableModel(page, tableLocator);\n    await use(table);\n  },\n});\n"
  },
  {
    "path": "e2e-tests/tests/vets.spec.ts",
    "content": "import { expect } from \"@playwright/test\";\nimport { petclinicTest } from \"./petclinic.fixtures\";\n\npetclinicTest(\"vet list works\", async ({ page, loginPage, tableModel }) => {\n  await page.goto(\"/\");\n  await loginPage.login(\"susi\", \"susi\");\n  await page.getByRole(\"link\", { name: /VETERINARIANS/i }).click();\n\n  const vetTable = tableModel(page.getByRole(\"table\", { name: /All Veterinarians/i }));\n  await expect(vetTable.tableLocator).toBeVisible();\n\n  // just a random sample, to make sure table displays anything\n  //  and graphql request was successful\n  await vetTable.expectTableRowContent(0, \"Carter, James\");\n  await vetTable.expectTableRowContent(1, \"Douglas, Linda\", \"dentistry, surgery\");\n  await vetTable.expectTableRowContent(9, \"Tanaka, Akira\");\n});\n\npetclinicTest(\"adding vet works\", async ({ page, loginPage, tableModel }) => {\n  await page.goto(\"/vets\");\n  await loginPage.login(\"susi\", \"susi\", \"Manage Veterinarians\");\n  const vetTable = tableModel(page.getByRole(\"table\", { name: /All Veterinarians/i }));\n  await vetTable.expectTableRowContent(0, \"Carter, James\");\n  const oldVetCount = await vetTable.rows.count();\n\n  // generate a new last name that is for sure at the end of the list of vets\n  //  (for the case this tests runs more than one time with the same database)\n  const newLastName = `XXXX-${Date.now()}`;\n\n  await page.getByRole(\"button\", { name: /add veterinary/i }).click();\n  await page.getByLabel(/first name/i).fill(\"Miller\");\n  await page.getByLabel(/last name/i).fill(newLastName);\n\n  await page.getByLabel(/Specialties/i).selectOption([\n    {\n      label: \"surgery\",\n    },\n    {\n      label: \"dentistry\",\n    },\n  ]);\n\n  await page.getByRole(\"button\", { name: /save/i }).click();\n  await expect(vetTable.tableLocator).toBeVisible();\n  await vetTable.expectTableRowContent(oldVetCount, `${newLastName}, Miller`, \"dentistry, surgery\");\n});\n\npetclinicTest(\"adding vet as user is forbidden\", async ({ page, loginPage, tableModel }) => {\n  await page.goto(\"/vets\");\n  await loginPage.login(\"joe\", \"joe\", \"Manage Veterinarians\");\n  const vetTable = tableModel(page.getByRole(\"table\", { name: /All Veterinarians/i }));\n\n  await page.getByRole(\"button\", { name: /add veterinary/i }).click();\n  await page.getByLabel(/first name/i).fill(\"No\");\n  await page.getByLabel(/last name/i).fill(\"Way\");\n\n  await page.getByLabel(/Specialties/i).selectOption([\n    {\n      label: \"surgery\",\n    },\n  ]);\n\n  await page.getByRole(\"button\", { name: /save/i }).click();\n  await expect(page.getByText(/forbidden/i)).toBeVisible();\n  await expect(vetTable.tableLocator).toHaveCount(0);\n});\n"
  },
  {
    "path": "frontend/.eslintrc.cjs",
    "content": "module.exports = {\n  root: true,\n  env: { browser: true, es2020: true },\n  extends: [\n    \"eslint:recommended\",\n    \"plugin:@typescript-eslint/recommended\",\n    \"plugin:react-hooks/recommended\",\n  ],\n  ignorePatterns: [\"dist\", \".eslintrc.cjs\", \"patch-index-html.js\"],\n  parser: \"@typescript-eslint/parser\",\n  plugins: [\"react-refresh\"],\n  rules: {\n    \"react-refresh/only-export-components\": [\n      \"off\",\n      { allowConstantExport: true },\n    ],\n    \"@typescript-eslint/no-unused-vars\": \"off\",\n    \"@typescript-eslint/ban-ts-comment\": \"off\",\n    \"@typescript-eslint/no-explicit-any\": \"off\",\n  },\n};\n"
  },
  {
    "path": "frontend/.gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\ndist\ndist-ssr\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n"
  },
  {
    "path": "frontend/.prettierignore",
    "content": ".eslintrc.jcs\npnpm-lock.yaml\n./src/assets/*\nsrc/fonts/**\n"
  },
  {
    "path": "frontend/Dockerfile",
    "content": "FROM nginx:stable-alpine\nWORKDIR frontend\nCOPY dist /frontend\nCOPY docker/nginx.conf /etc/nginx/conf.d/default.conf\n\nEXPOSE 3090\nCMD [\"nginx\", \"-g\", \"daemon off;\"]"
  },
  {
    "path": "frontend/README.md",
    "content": "# React + TypeScript + Vite\n\nThis template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.\n\nCurrently, two official plugins are available:\n\n- [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/README.md) uses [Babel](https://babeljs.io/) for Fast Refresh\n- [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh\n\n## Expanding the ESLint configuration\n\nIf you are developing a production application, we recommend updating the configuration to enable type aware lint rules:\n\n- Configure the top-level `parserOptions` property like this:\n\n```js\n   parserOptions: {\n    ecmaVersion: 'latest',\n    sourceType: 'module',\n    project: ['./tsconfig.json', './tsconfig.node.json'],\n    tsconfigRootDir: __dirname,\n   },\n```\n\n- Replace `plugin:@typescript-eslint/recommended` to `plugin:@typescript-eslint/recommended-type-checked` or `plugin:@typescript-eslint/strict-type-checked`\n- Optionally add `plugin:@typescript-eslint/stylistic-type-checked`\n- Install [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) and add `plugin:react/recommended` & `plugin:react/jsx-runtime` to the `extends` list\n"
  },
  {
    "path": "frontend/codegen.ts",
    "content": "import type { CodegenConfig } from \"@graphql-codegen/cli\";\n\nconst config: CodegenConfig = {\n  overwrite: true,\n  schema: \"../backend/src/main/resources/graphql/petclinic.graphqls\",\n  documents: [\"src/**/*.tsx\", \"src/**/*.graphql\"],\n  ignoreNoDocuments: true,\n  generates: {\n    \"src/generated/graphql-types.ts\": {\n      plugins: [\n        \"typescript\",\n        \"typescript-operations\",\n        \"typescript-react-apollo\",\n      ],\n      config: {\n        skipTypename: true,\n        preResolveTypes: true,\n        declarationKind: \"interface\",\n        onlyOperationTypes: true,\n      },\n    },\n  },\n};\n\nexport default config;\n"
  },
  {
    "path": "frontend/docker/nginx.conf",
    "content": "server {\n    listen 3090;\n    server_name localhost;\n\n    root /frontend;\n\n    access_log /var/log/nginx/access.log;\n    error_log /var/log/nginx/error.log;\n\n    location / {\n        try_files $uri $uri/ /index.html;\n    }\n\n    location /graphql {\n        proxy_pass http://petclinic_graphql_backend:9977;\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n\n        access_log /dev/stdout;\n        error_log /dev/stderr;\n    }\n\n    location /graphqlws {\n        proxy_pass http://petclinic_graphql_backend:9977;\n        proxy_http_version 1.1;\n        proxy_set_header Upgrade $http_upgrade;\n        proxy_set_header Connection \"upgrade\";\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n\n        access_log /dev/stdout;\n        error_log /dev/stderr;\n\n        # Optional: Increase the timeout values for WebSocket connections\n        proxy_read_timeout 86400;\n        proxy_send_timeout 86400;\n    }\n\n\n    location /api {\n        proxy_pass http://petclinic_graphql_backend:9977;\n        proxy_set_header Host $host;\n        proxy_set_header X-Real-IP $remote_addr;\n        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;\n        proxy_set_header X-Forwarded-Proto $scheme;\n\n        access_log /dev/stdout;\n        error_log /dev/stderr;\n    }\n\n    location ~* \\.(js|css|png|jpg|jpeg|gif|ico|svg)$ {\n        expires 1y;\n        add_header Cache-Control \"public, max-age=31536000\";\n    }\n}\n"
  },
  {
    "path": "frontend/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <link rel=\"icon\" type=\"image/svg+xml\" href=\"/vite.svg\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n\n    <title>Spring PetClinic :: GraphQL Edition</title>\n  </head>\n  <body>\n    <div id=\"root\"></div>\n    <script type=\"module\" src=\"/src/main.tsx\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "frontend/package.json",
    "content": "{\n  \"name\": \"frontend-vite\",\n  \"private\": true,\n  \"version\": \"0.0.0\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"pnpm codegen && tsc && vite build\",\n    \"lint\": \"eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0\",\n    \"preview\": \"vite preview\",\n    \"check\": \"pnpm lint && pnpm prettier:check\",\n    \"prettier:check\": \"prettier --check .\",\n    \"prettier:write\": \"prettier --write .\",\n    \"codegen\": \"graphql-codegen --config codegen.ts && prettier --write src/generated/\"\n  },\n  \"dependencies\": {\n    \"@apollo/client\": \"^3.8.6\",\n    \"clsx\": \"^2.0.0\",\n    \"dayjs\": \"^1.11.10\",\n    \"graphql\": \"^16.8.1\",\n    \"graphql-ws\": \"^5.14.2\",\n    \"immer\": \"^10.0.3\",\n    \"react\": \"^18.2.0\",\n    \"react-dom\": \"^18.2.0\",\n    \"react-hook-form\": \"^7.47.0\",\n    \"react-router-dom\": \"^6.17.0\",\n    \"tiny-invariant\": \"^1.3.1\"\n  },\n  \"devDependencies\": {\n    \"@graphql-codegen/cli\": \"5.0.0\",\n    \"@graphql-codegen/client-preset\": \"4.1.0\",\n    \"@graphql-codegen/typescript-operations\": \"^4.0.1\",\n    \"@graphql-codegen/typescript-react-apollo\": \"^4.0.0\",\n    \"@tailwindcss/forms\": \"^0.5.6\",\n    \"@types/node\": \"^20.8.7\",\n    \"@types/react\": \"^18.2.15\",\n    \"@types/react-dom\": \"^18.2.7\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.0.0\",\n    \"@typescript-eslint/parser\": \"^6.0.0\",\n    \"@vitejs/plugin-react\": \"^4.0.3\",\n    \"autoprefixer\": \"^10.4.16\",\n    \"eslint\": \"^8.45.0\",\n    \"eslint-plugin-react-hooks\": \"^4.6.0\",\n    \"eslint-plugin-react-refresh\": \"^0.4.3\",\n    \"postcss\": \"^8.4.31\",\n    \"prettier\": \"^3.0.3\",\n    \"prettier-plugin-tailwindcss\": \"^0.5.6\",\n    \"tailwindcss\": \"^3.3.3\",\n    \"typescript\": \"^5.0.2\",\n    \"vite\": \"^4.4.5\"\n  }\n}\n"
  },
  {
    "path": "frontend/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n\n    <groupId>org.springframework.samples.petclinic-graphql</groupId>\n    <artifactId>frontend</artifactId>\n    <version>2.0.0</version>\n    <name>spring-petclinic-graphql-frontend</name>\n    <description>Frontend for Spring Petclinic GraphQL Example</description>\n\n</project>"
  },
  {
    "path": "frontend/postcss.config.js",
    "content": "export default {\n  plugins: {\n    tailwindcss: {},\n    autoprefixer: {},\n  },\n};\n"
  },
  {
    "path": "frontend/prettier.config.cjs",
    "content": "/** @type {import(\"prettier\").Options} */\nconst config = {\n  plugins: [\"prettier-plugin-tailwindcss\"],\n  tailwindFunctions: [\"clsx\"],\n};\n\nmodule.exports = config;\n"
  },
  {
    "path": "frontend/src/App.css",
    "content": "#root {\n  max-width: 1280px;\n  margin: 0 auto;\n  padding: 2rem;\n  text-align: center;\n}\n\n.logo {\n  height: 6em;\n  padding: 1.5em;\n  will-change: filter;\n  transition: filter 300ms;\n}\n.logo:hover {\n  filter: drop-shadow(0 0 2em #646cffaa);\n}\n.logo.react:hover {\n  filter: drop-shadow(0 0 2em #61dafbaa);\n}\n\n@keyframes logo-spin {\n  from {\n    transform: rotate(0deg);\n  }\n  to {\n    transform: rotate(360deg);\n  }\n}\n\n@media (prefers-reduced-motion: no-preference) {\n  a:nth-of-type(2) .logo {\n    animation: logo-spin infinite 20s linear;\n  }\n}\n\n.card {\n  padding: 2em;\n}\n\n.read-the-docs {\n  color: #888;\n}\n"
  },
  {
    "path": "frontend/src/App.tsx",
    "content": "import { useAuthToken } from \"@/login/AuthTokenProvider.tsx\";\nimport { useMeLazyQuery } from \"@/generated/graphql-types.ts\";\nimport LoginPage from \"@/login/LoginPage.tsx\";\nimport { AnonymousPageLayout } from \"@/components/PageLayout.tsx\";\nimport { Route, Routes } from \"react-router-dom\";\nimport WelcomePage from \"@/WelcomePage.tsx\";\nimport OwnersPage from \"@/owners/OwnerSearchPage.tsx\";\nimport OwnerPage from \"@/owners/OwnerPage.tsx\";\nimport VetsPage from \"@/vets/VetsPage.tsx\";\nimport NotFoundPage from \"@/NotFoundPage.tsx\";\nimport { useEffect } from \"react\";\n\nfunction App() {\n  const [token] = useAuthToken();\n  const [queryMe, { called, loading, error }] = useMeLazyQuery();\n\n  useEffect(() => {\n    // don't try to read user data if we don't have token.\n    if (token) {\n      queryMe();\n    }\n  }, [queryMe, token]);\n\n  if (!token || error) {\n    return <LoginPage />;\n  }\n\n  if (loading || !called) {\n    return <AnonymousPageLayout title=\"Initializing...\"></AnonymousPageLayout>;\n  }\n\n  return (\n    <Routes>\n      <Route path=\"/\">\n        <Route index element={<WelcomePage />} />\n        <Route path={\"owners\"}>\n          <Route index element={<OwnersPage />} />\n          <Route path={\":ownerId\"} element={<OwnerPage />} />\n        </Route>\n        <Route path=\"/vets/:vetId?\" element={<VetsPage />} />\n      </Route>\n      <Route path={\"*\"} element={<NotFoundPage />} />\n    </Routes>\n  );\n}\n\nexport default App;\n"
  },
  {
    "path": "frontend/src/NotFoundPage.tsx",
    "content": "import Heading from \"./components/Heading\";\nimport PageLayout from \"./components/PageLayout\";\n\nexport default function NotFoundPage() {\n  return (\n    <PageLayout title=\"Not Found\">\n      <Heading>Sorry, the requested page could not be found</Heading>\n    </PageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/WelcomePage.tsx",
    "content": "import Heading from \"./components/Heading\";\nimport PageLayout from \"./components/PageLayout\";\nimport petsImage from \"@/assets/pets.png\";\n\nexport default function WelcomePage() {\n  return (\n    <PageLayout title=\"Welcome to PetClinic!\">\n      <Heading>Welcome</Heading>\n      <img src={petsImage} alt=\"Pets\" />\n    </PageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/assets/readme.md",
    "content": "Source of Spring Logo SVG:\n\nhttps://upload.wikimedia.org/wikipedia/commons/4/44/Spring_Framework_Logo_2018.svg\n"
  },
  {
    "path": "frontend/src/components/Button.tsx",
    "content": "import * as React from \"react\";\nimport clsx from \"clsx\";\n\ntype ButtonProps = {\n  children: React.ReactNode;\n  disabled?: boolean;\n  onClick?(): void;\n  type?: \"primary\" | \"secondary\" | \"link\";\n};\n\nexport default function Button({\n  children,\n  disabled,\n  onClick,\n  type = \"primary\",\n  ...props\n}: ButtonProps) {\n  const className = clsx(\n    type === \"primary\" &&\n      `rounded border border-spr-green bg-spr-green px-3.5 py-1.5 font-medium uppercase text-spr-white hover:bg-spr-green-dark\n      disabled:cursor-default disabled:border-spr-green-light disabled:bg-spr-green-light disabled:text-gray-400\n      `,\n    type === \"secondary\" &&\n      \"rounded border border-gray-500 bg-gray-50 px-3.5 py-1.5 font-medium uppercase text-spr-black hover:border-spr-green hover:bg-spr-green-dark hover:text-spr-white\",\n    type === \"link\" &&\n      \"px-3.5 py-1.5 font-bold uppercase text-spr-blue hover:bg-spr-white hover:underline\",\n  );\n\n  //const class=\"hover:text-spr-white disabled:cursor-default disabled:\"\n  // const className =\n  //   type === \"primary\"\n  //     ? \"bg-spr-white text-spr-black uppercase py-1.5 px-3.5 hover:bg-spr-green hover:text-spr-white font-medium font-semibold hover:border-spr-green border-spr-black border rounded disabled:cursor-default\"\n  //     : \"bg-spr-black text-spr-white uppercase py-1 px-3.5 hover:bg-spr-green font-helvetica hover:border-spr-green border-spr-black border disabled:cursor-default \";\n  return (\n    <button\n      {...props}\n      onClick={onClick}\n      className={className}\n      disabled={disabled}\n    >\n      {children}\n    </button>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/ButtonBar.tsx",
    "content": "import * as React from \"react\";\n\ntype ButtonBarProps = {\n  align?: \"left\" | \"right\" | \"center\";\n  children: React.ReactNode;\n};\n\nexport default function ButtonBar({\n  align = \"right\",\n  children,\n}: ButtonBarProps) {\n  const className = `py-3.5 space-x-4 flex flex-row ${\n    align === \"right\"\n      ? \"justify-end\"\n      : align === \"center\"\n      ? \"justify-center\"\n      : \"\"\n  }`;\n  return <div className={className}>{children}</div>;\n}\n"
  },
  {
    "path": "frontend/src/components/Card.tsx",
    "content": "import * as React from \"react\";\n\ntype CardProps = {\n  children: React.ReactNode;\n  fullWidth?: boolean;\n};\nexport default function Card({ children, fullWidth }: CardProps) {\n  return (\n    <div\n      className={`${\n        fullWidth ? \"\" : \"max-w-2xl\"\n      } mx-auto mb-3.5 flex items-center justify-between rounded border-4 border-gray-100 p-4`}\n    >\n      {children}\n    </div>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/Heading.tsx",
    "content": "import * as React from \"react\";\n\ntype HeadingProps = {\n  children: React.ReactNode;\n  level?: \"2\" | \"3\" | \"4\";\n  id?: string;\n};\n\nexport default function Heading({ children, id, level = \"2\" }: HeadingProps) {\n  switch (level) {\n    case \"2\":\n      return (\n        <h2 id={id} className=\"pb-2 font-metro text-2xl font-semibold\">\n          {children}\n        </h2>\n      );\n    case \"3\":\n      return (\n        <h3 id={id} className=\"pb-2 font-metro text-xl font-semibold\">\n          {children}\n        </h3>\n      );\n    case \"4\":\n      return (\n        <h4 id={id} className=\"pb-2 font-metro font-semibold\">\n          {children}\n        </h4>\n      );\n  }\n\n  return <>{children}</>;\n}\n"
  },
  {
    "path": "frontend/src/components/Input.tsx",
    "content": "import * as React from \"react\";\n\ntype InputProps = {\n  action?: React.ReactNode;\n  disabled?: boolean;\n  error?: string | boolean | null;\n  id?: string;\n  label: string;\n  name?: string;\n  type?: \"text\" | \"password\" | \"date\";\n};\n\nconst Input = React.forwardRef<HTMLInputElement, InputProps>(function Input(\n  { action, disabled, error, id, label, name, type = \"text\", ...rest },\n  ref,\n) {\n  return (\n    <div className=\"w-full py-3.5\">\n      <div className=\"col-span-3 sm:col-span-2\">\n        <label className=\"block\">\n          {label}\n          <div className=\"mt-1 flex rounded-md shadow-sm\">\n            <input\n              ref={ref}\n              type={type}\n              name={name}\n              id={id}\n              disabled={disabled}\n              className=\"focus:ring-3 flex-1 hover:border-spr-green focus:border-spr-green focus:ring-spr-green\"\n              {...rest}\n            />\n            {action}\n          </div>\n        </label>\n        {typeof error === \"string\" && <p className=\"text-spr-red\">{error}</p>}\n      </div>\n    </div>\n  );\n});\n\nexport default Input;\n"
  },
  {
    "path": "frontend/src/components/Label.tsx",
    "content": "import * as React from \"react\";\n\ntype LabelProps = {\n  children: React.ReactNode;\n  type?: \"error\" | \"info\";\n};\nexport default function Label({ children, type = \"error\" }: LabelProps) {\n  return type === \"error\" ? (\n    <p className=\"text-spr-red\">{children}</p>\n  ) : (\n    <p>{children}</p>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/Link.tsx",
    "content": "import * as React from \"react\";\nimport { Link as RouterLink } from \"react-router-dom\";\n\ntype LinkProps = {\n  to: string;\n  children: React.ReactNode;\n};\n\nexport default function Link({ to, children }: LinkProps) {\n  return (\n    <RouterLink className=\"text-spr-blue hover:text-spr-gray-dark\" to={to}>\n      {children}\n    </RouterLink>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/Nav.tsx",
    "content": "import * as React from \"react\";\nimport { NavLink as RouterNavLink } from \"react-router-dom\";\nimport SpringLogo from \"@/assets/Spring_Framework_Logo_2018.svg\";\nimport Link from \"./Link\";\nimport { useAuthToken } from \"@/login/AuthTokenProvider\";\nimport { useLogout } from \"@/use-logout\";\nimport { useCurrentUser } from \"@/use-current-user-fullname\";\nimport clsx from \"clsx\";\nimport { useEffect, useState } from \"react\";\n\nfunction NavLogo() {\n  return (\n    <div className=\"flex items-center\">\n      <div className=\"flex-shrink-0\">\n        <Link to=\"/\">\n          <img className=\"h-12\" src={SpringLogo} alt=\"Spring Framework logo\" />\n        </Link>\n      </div>\n    </div>\n  );\n}\n\ntype NavBarProps = {\n  nav?: React.ReactElement;\n  mobileMenu?: React.ReactElement;\n};\nexport function NavBar({ nav, mobileMenu }: NavBarProps) {\n  return (\n    <nav className=\"bg-spr-green-light\">\n      <div className=\"mx-auto max-w-7xl px-4 sm:px-6 lg:px-8\">\n        <div className=\"flex h-16 items-center justify-between\">\n          <NavLogo />\n          {nav}\n        </div>\n      </div>\n      {mobileMenu}\n    </nav>\n  );\n}\n\ntype NavLinkProps = {\n  to: string;\n  children: React.ReactNode;\n  exact?: boolean;\n};\nfunction NavLink({ children, to }: NavLinkProps) {\n  return (\n    <RouterNavLink\n      to={to}\n      className={({ isActive }) =>\n        clsx(\n          \"h-12  px-4 py-2 text-sm font-bold uppercase text-spr-black hover:border-spr-green  hover:bg-spr-white\",\n          isActive || \"border-t-4 border-spr-green-light\",\n          isActive && \"border-t-4  border-spr-green  bg-spr-white\",\n        )\n      }\n    >\n      {children}\n    </RouterNavLink>\n  );\n}\n\nexport function DefaultNavBar() {\n  const handleSignOut = useLogout();\n  const { username, fullname } = useCurrentUser();\n  const [profileMenuOpen, setProfileMenuOpen] = React.useState(false);\n\n  return (\n    <NavBar\n      nav={\n        <div className=\"hidden md:block\">\n          <div className=\"ml-10 flex space-x-4\">\n            <NavLink to=\"/\" exact>\n              Home\n            </NavLink>\n            <NavLink to=\"/owners\">Owners</NavLink>\n            <NavLink to=\"/vets\">Veterinarians</NavLink>\n            <div className=\"ml-4 flex items-center md:ml-6\">\n              {!!username && (\n                <div className=\"relative ml-3 \">\n                  <div className=\"\">\n                    <button\n                      onClick={() => setProfileMenuOpen(!profileMenuOpen)}\n                      className=\"focus:ring-white flex max-w-xs items-center rounded-full text-sm focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-offset-spr-gray-dark\"\n                      id=\"user-menu\"\n                      aria-haspopup=\"true\"\n                    >\n                      <span className=\"sr-only\">Open user menu</span>\n                      <ProfileImage\n                        url={`/images/${username}.png`}\n                        alt={`Profile image of ${username}`}\n                      />\n                    </button>\n                  </div>\n\n                  {profileMenuOpen && (\n                    <div\n                      className=\"bg-white absolute right-0 mt-2 w-48 origin-top-right rounded-md bg-spr-white py-1 shadow-lg ring-1 ring-spr-gray-dark ring-opacity-5\"\n                      role=\"menu\"\n                      aria-orientation=\"vertical\"\n                      aria-labelledby=\"user-menu\"\n                    >\n                      <span className=\"block cursor-pointer border-b px-4 py-2 text-sm text-spr-black\">\n                        Signed in as <b>{fullname}</b>\n                      </span>\n\n                      <button\n                        className=\"block w-full px-4 py-2 text-left text-sm text-spr-black hover:bg-gray-100\"\n                        role=\"menuitem\"\n                        onClick={handleSignOut}\n                      >\n                        Sign out\n                      </button>\n                    </div>\n                  )}\n                </div>\n              )}\n            </div>\n          </div>\n        </div>\n      }\n      mobileMenu={\n        <div className=\"hidden md:hidden\">\n          <div className=\"space-y-1 px-2 pb-3 pt-2 sm:px-3\">\n            <a\n              href=\"#\"\n              className=\"text-white block rounded-md bg-gray-900 px-3 py-2 text-base font-medium\"\n            >\n              Home\n            </a>\n\n            <a\n              href=\"#\"\n              className=\"hover:text-white block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700\"\n            >\n              Owners\n            </a>\n\n            <a\n              href=\"#\"\n              className=\"hover:text-white block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700\"\n            >\n              Veterinarians\n            </a>\n\n            <a\n              href=\"#\"\n              className=\"hover:text-white block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700\"\n            >\n              Specialities\n            </a>\n\n            <a\n              href=\"#\"\n              className=\"hover:text-white block rounded-md px-3 py-2 text-base font-medium text-gray-300 hover:bg-gray-700\"\n            >\n              Reports\n            </a>\n          </div>\n        </div>\n      }\n    />\n  );\n}\n\ntype ProfileImageProps = {\n  url: string;\n  alt: string;\n};\nfunction ProfileImage({ url, alt }: ProfileImageProps) {\n  const [token] = useAuthToken();\n  const [imageData, setImageData] = useState<string | null>(null);\n\n  useEffect(() => {\n    if (!token) {\n      setImageData(null);\n      return;\n    }\n    const reader = new FileReader();\n\n    fetch(url, {\n      headers: {\n        Authorization: `Bearer ${token}`,\n      },\n    })\n      .then((res) => res.blob())\n      .then(\n        (blob) =>\n          new Promise((resolve, reject) => {\n            reader.onload = resolve;\n            reader.onerror = reject;\n            reader.readAsDataURL(blob);\n          }),\n      )\n      .then((_) => reader.result)\n      .then((imageData) =>\n        typeof imageData === \"string\"\n          ? setImageData(imageData)\n          : setImageData(null),\n      );\n  }, [token, url]);\n\n  if (imageData) {\n    return <img src={imageData} className=\"h-8 w-8 rounded-full\" alt={alt} />;\n  }\n\n  return null;\n}\n"
  },
  {
    "path": "frontend/src/components/PageHeader.tsx",
    "content": "import * as React from \"react\";\n\ntype PageHeaderProps = {\n  children: React.ReactNode;\n};\n\nexport default function PageHeader({ children }: PageHeaderProps) {\n  return (\n    <header className=\"bg-white shadow\">\n      <div className=\"mx-auto max-w-7xl px-4 py-6 sm:px-6 lg:px-8\">\n        <h1 className=\"text-3xl font-bold leading-tight text-spr-black\">\n          {children}\n        </h1>\n      </div>\n    </header>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/PageLayout.tsx",
    "content": "import * as React from \"react\";\nimport PageHeader from \"./PageHeader\";\nimport { DefaultNavBar, NavBar } from \"./Nav\";\n\ntype PageLayoutProps = {\n  children?: React.ReactNode;\n  title: string;\n  narrow?: boolean;\n};\n\nexport default function PageLayout({\n  children,\n  title,\n  narrow,\n}: PageLayoutProps) {\n  const maxWith = narrow ? \"max-w-2xl\" : \"max-w-7xl\";\n  const className = `${maxWith} mx-auto py-6 sm:px-6 lg:px-8`;\n  return (\n    <div>\n      <DefaultNavBar />\n      <PageHeader>{title}</PageHeader>\n      <main className={className}>{children}</main>\n    </div>\n  );\n}\n\nexport function AnonymousPageLayout({\n  children,\n  title,\n  narrow,\n}: PageLayoutProps) {\n  const maxWith = narrow ? \"max-w-2xl\" : \"max-w-7xl\";\n  const className = `${maxWith} mx-auto py-6 sm:px-6 lg:px-8`;\n  return (\n    <div>\n      <NavBar />\n      <PageHeader>{title}</PageHeader>\n      <main className={className}>{children}</main>\n    </div>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/Section.tsx",
    "content": "import * as React from \"react\";\nimport clsx from \"clsx\";\n\ntype SectionProps = {\n  invert?: boolean;\n  narrow?: boolean;\n  children: React.ReactNode;\n};\nexport function Section({ children, invert, narrow, ...props }: SectionProps) {\n  const className = clsx(\n    invert ? \"mb-4 bg-gray-100 p-4\" : \"px-4 pb-8 sm:px-0\",\n    narrow && \"mx-auto max-w-2xl\",\n  );\n\n  return (\n    <section className={className} {...props}>\n      {children}\n    </section>\n  );\n}\n\ntype SectionHeadingProps = {\n  children: React.ReactNode;\n};\n\nexport function SectionHeading({ children }: SectionHeadingProps) {\n  return (\n    <div className=\"mb-2 items-baseline justify-between border-b-4 border-spr-white pb-2 md:flex\">\n      {children}\n    </div>\n  );\n}\n"
  },
  {
    "path": "frontend/src/components/Select.tsx",
    "content": "import * as React from \"react\";\n\ntype SelectOption = {\n  value: string | number;\n  label: string;\n};\n\ntype SelectProps = {\n  defaultValue?: string | number;\n  disabled?: boolean;\n  error?: string | boolean | null;\n  id?: string;\n  label: string;\n  multiple?: boolean;\n  options: SelectOption[];\n};\n\nconst Select = React.forwardRef<HTMLSelectElement, SelectProps>(function Input(\n  { defaultValue, disabled, error, id, label, multiple, options, ...rest },\n  ref,\n) {\n  return (\n    <div className=\"w-full py-3.5\">\n      <div className=\"col-span-3 sm:col-span-2\">\n        <label className=\"block\">\n          {label}\n          <div className=\"mt-1 flex rounded-md shadow-sm\">\n            <select\n              className=\"w-full\"\n              defaultValue={defaultValue}\n              id={id}\n              ref={ref}\n              disabled={disabled}\n              multiple={multiple}\n              {...rest}\n            >\n              {options.map((option) => (\n                <option key={option.value} value={option.value}>\n                  {option.label}\n                </option>\n              ))}\n            </select>\n          </div>\n        </label>\n        {typeof error === \"string\" && <p className=\"text-spr-red\">{error}</p>}\n      </div>\n    </div>\n  );\n});\n\nexport default Select;\n"
  },
  {
    "path": "frontend/src/components/Table.tsx",
    "content": "import * as React from \"react\";\nimport Heading from \"./Heading\";\nimport { useId } from \"react\";\n\ntype TableProps = {\n  title?: string;\n  actions?: React.ReactNode;\n  labels?: string[];\n  values: React.ReactNode[][];\n};\n\nexport default function Table({ title, actions, labels, values }: TableProps) {\n  const headingId = useId();\n  return (\n    <>\n      {(title || actions) && (\n        <div className={\"flex justify-between\"}>\n          {title && <Heading id={headingId}>{title}</Heading>}\n          {actions}\n        </div>\n      )}\n\n      <table className=\"mb-3.5 w-full\" aria-labelledby={headingId}>\n        {labels && labels.length && (\n          <thead>\n            <tr>\n              {labels.map((label, ix) => (\n                <td key={ix} className=\"border-b py-3.5 pr-1 font-bold\">\n                  {label}\n                </td>\n              ))}\n            </tr>\n          </thead>\n        )}\n        <tbody>\n          {values.map((row, ix) => (\n            <tr key={ix}>\n              {row.map((col, ix) => (\n                <td key={ix} className=\"border-b py-3.5 pr-1\">\n                  {col}\n                </td>\n              ))}\n            </tr>\n          ))}\n        </tbody>\n      </table>\n    </>\n  );\n}\n"
  },
  {
    "path": "frontend/src/create-graphql-client.ts",
    "content": "import {\n  ApolloClient,\n  createHttpLink,\n  InMemoryCache,\n  split,\n} from \"@apollo/client\";\nimport { graphqlApiUrl, graphqlWsApiUrl } from \"@/urls.ts\";\nimport { setContext } from \"@apollo/client/link/context\";\nimport { createClient } from \"graphql-ws\";\nimport { GraphQLWsLink } from \"@apollo/client/link/subscriptions\";\nimport {\n  getMainDefinition,\n  relayStylePagination,\n} from \"@apollo/client/utilities\";\n\n// noinspection JSUnusedLocalSymbols\n// const token =\n//   \"eyJraWQiOiJmYTg5ZmU1OC02ZDk2LTQxNzYtODVmYy1jZmE2ODAzY2IzOWQiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJzZWxmIiwic3ViIjoic3VzaSIsImV4cCI6MjAxNTc0NjkwNywiaWF0IjoxNzAwMzg2OTA3LCJzY29wZSI6Ik1BTkFHRVIifQ.ZD_08AtPvJvDfraULVZgH07cgG0OqYRHC8Ie6aWLb802rnpgKjv83l6UE7uSBpMgmqHr2BFGuSwYI5L9wjXuImygF_f4U2sote7zv0M5I2Ou_9CgXaLbAN-NQP19aCaHcRLEQfBH11vGoBsnBtZ_qrmUBdaj-RCrqpuzmmlJAlDYmwhE5hFWt9qSU-SadudBV9rlIikWFEAbUAjJk-m2vdRu_dSVnCQb8DQLnniuSSR11szkmi-BD0BoL0nJQ5PqQ8G2JQUxwQDq2-VPmMPNOX_pbFEPuvKhlgUClqPNW1QWM1A3Vw74KPgGw-9-uUuIia6enxzpOVz69vhKHIxrOr7qebzQ_XwEt46RkKXeA1Vzb-Xemy3Q5ESESN-J1tnwPvJJKwL8UgHUvghLk-ya8uiY7bfORAJZ8nN7riE6eO1UYelpuK6Euk3eTP94De9MjnnV7yvKmay65PIDNO7jqA8UOwJ74LuQ483DJdHog3qh6NafW1IxaOEzrEbSvgGCv_VoypHs5vpITD3sNky1HikNqzVtiptoQaX2Hi5OI-laAq8itqvpF5l5I9lbivy2rReXhj3_m_U_HVDxW8v8zD5PCYxGFEA2GOK9Qu_gVTcMgLJJE-D0e-IkvIk85nC5JimuCsmddGxcxmN_ILeRdZLyM60t7fz8-y-Yx53i5YM\";\n\nexport function createGraphqlClient() {\n  const httpLink = createHttpLink({\n    uri: graphqlApiUrl,\n  });\n\n  const wsLink = new GraphQLWsLink(\n    createClient({\n      url: () => {\n        const token = localStorage.getItem(\"petclinic.token\");\n        console.log(\"Create WS Link\", token);\n        return `${graphqlWsApiUrl}?access_token=${token}`;\n      },\n      on: {\n        closed: () => console.log(\"WS closed\"),\n      },\n    }),\n  );\n\n  const authLink = setContext((op, { headers }) => {\n    const token = localStorage.getItem(\"petclinic.token\");\n    console.log(\"AUTH LINK\", op.operationName);\n    return {\n      headers: {\n        ...headers,\n        authorization: token ? `Bearer ${token}` : \"\",\n      },\n    };\n  });\n\n  const splitLink = split(\n    ({ query }) => {\n      const definition = getMainDefinition(query);\n      return (\n        definition.kind === \"OperationDefinition\" &&\n        definition.operation === \"subscription\"\n      );\n    },\n    wsLink,\n    httpLink,\n  );\n\n  const client = new ApolloClient({\n    link: authLink.concat(splitLink),\n    cache: new InMemoryCache({\n      typePolicies: {\n        Query: {\n          fields: {\n            //https://www.apollographql.com/docs/react/pagination/cursor-based/#relay-style-cursor-pagination\n            owners: relayStylePagination(),\n          },\n        },\n        User: {\n          keyFields: [\"username\"],\n        },\n      },\n    }),\n  });\n\n  return client;\n}\n"
  },
  {
    "path": "frontend/src/fonts/README.txt",
    "content": "TAKEN FROM https://github.com/spring-io/sagan/tree/master/sagan-client/src/fonts\n"
  },
  {
    "path": "frontend/src/fonts/generator_config.txt",
    "content": "# Font Squirrel Font-face Generator Configuration File\n# Upload this file to the generator to recreate the settings\n# you used to create these fonts.\n\n{\"mode\":\"optimal\",\"formats\":[\"woff\",\"woff2\"],\"tt_instructor\":\"default\",\"fix_gasp\":\"xy\",\"fix_vertical_metrics\":\"Y\",\"metrics_ascent\":\"\",\"metrics_descent\":\"\",\"metrics_linegap\":\"\",\"add_spaces\":\"Y\",\"add_hyphens\":\"Y\",\"fallback\":\"none\",\"fallback_custom\":\"100\",\"options_subset\":\"basic\",\"subset_custom\":\"\",\"subset_custom_range\":\"\",\"subset_ot_features_list\":\"\",\"css_stylesheet\":\"stylesheet.css\",\"filename_suffix\":\"-webfont\",\"emsquare\":\"2048\",\"spacing_adjustment\":\"0\"}"
  },
  {
    "path": "frontend/src/fonts/metropolis-bold-demo.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\t\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n\t<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\" type=\"text/javascript\" charset=\"utf-8\"></script>\n\t<script type=\"text/javascript\">\n\t(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:\"fast\",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId=\"#\"+this.id;if(param.defaultContent==''){param.defaultContent=1;}\n\tif(typeof param.defaultContent==\"number\")\n\t{var defaultTab=$(thisId+\" .tabs li:eq(\"+(param.defaultContent-1)+\") a\").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}\n\t$(thisId+\" .tabs li a\").each(function(){var tabToHide=$(this).attr('href').substr(1);$(\"#\"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+\" .easytabs-tab-content\").hide();}\n\tfunction changeContent(tabId){hideAll();$(thisId+\" .tabs li\").removeClass(param.activeClass);$(thisId+\" .tabs li a[href=#\"+tabId+\"]\").closest('li').addClass(param.activeClass);if(param.fadeSpeed!=\"none\")\n\t{$(thisId+\" #\"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+\" #\"+tabId).show();}}\n\t$(thisId+\" .tabs li\").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);\n\t</script>\n\t<link rel=\"stylesheet\" href=\"specimen_files/specimen_stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\t<link rel=\"stylesheet\" href=\"stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\n\t<style type=\"text/css\">\n\t\t\t\t\tbody{\n\t\t\t\tfont-family: 'metropolisbold';\n\t\t\t\t\t\t\t}\n\t\t</style>\n\n\t<title>Metropolis Bold Specimen</title>\n\t\n\t\n\t<script type=\"text/javascript\" charset=\"utf-8\">\n\t\t$(document).ready(function() {\n\t\t\t$('#container').easyTabs({defaultContent:1});\n\t\t});\n\t</script>\n</head>\n\n<body>\n<div id=\"container\">\n\t<div id=\"header\">\n\t\tMetropolis Bold\t</div>\n\t<ul class=\"tabs\">\n\t\t<li><a href=\"#specimen\">Specimen</a></li>\n\t\t<li><a href=\"#layout\">Sample Layout</a></li>\n\t\t\t\t<li><a href=\"#glyphs\">Glyphs &amp; Languages</a></li>\n\t\t<li><a href=\"#installing\">Installing Webfonts</a></li>\n\t\t\n\t</ul>\n\t\n\t<div id=\"main_content\">\n\n\t\t\n\t\t\t<div id=\"specimen\">\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<div class=\"huge\">AaBb</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"glyph_range\">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<table class=\"sample_table\">\n\t\t\t\t\t\t\t<tr><td>10</td><td class=\"size10\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>11</td><td class=\"size11\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>12</td><td class=\"size12\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>13</td><td class=\"size13\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>14</td><td class=\"size14\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>16</td><td class=\"size16\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>18</td><td class=\"size18\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>20</td><td class=\"size20\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>24</td><td class=\"size24\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>30</td><td class=\"size30\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>36</td><td class=\"size36\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>48</td><td class=\"size48\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>60</td><td class=\"size60\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>72</td><td class=\"size72\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>90</td><td class=\"size90\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t</table>\n\t\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\n\t\t\t\t\t\t\t\t<div class=\"section\" id=\"bodycomparison\">\n\n\n\t\t\t\t\t\t\t\t\t\t<div id=\"xheight\">\n\t\t\t\t<div class=\"fontbody\">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class=\"arialbody\">body</div><div class=\"verdanabody\">body</div><div class=\"georgiabody\">body</div></div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"fontbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Metropolis Bold</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"arialbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Arial</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"verdanabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Verdana</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"georgiabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Georgia</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\n\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t\t<div class=\"section psample psample_row1\" id=\"\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section psample psample_row2\" id=\"\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row4\" id=\"\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row1 fullreverse\">\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row2 fullreverse\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row4\" id=\"\" style=\"border-bottom: 20px #000 solid;\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t</div>\n\t\t\t\n\t\t\t<div id=\"layout\">\n\t\t\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<h1>Lorem Ipsum Dolor</h1>\n\t\t\t\t\t\t<h2>Etiam porta sem malesuada magna mollis euismod</h2>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"byline\">By <a href=\"#link\">Aenean Lacinia</a></p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid8 firstcol\">\n\t\t\t\t\t\t<p class=\"large\">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<h3>Pellentesque ornare sem</h3>\n\n\t\t\t\t\t\t<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>\n\n\t\t\t\t\t\t<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>\n\n\t\t\t\t\t\t<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>\n\n\t\t\t\t\t\t<h3>Cras mattis consectetur</h3>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>\n\n\t\t\t\t\t\t<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid4 sidebar\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"box reverse\">\n\t\t\t\t\t\t\t<p class=\"last\">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"caption\">Maecenas sed diam eget risus varius.</p>\n\n\t\t\t\t\t\t<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\n\n\t\t\t\t\t\t<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>\n\n\t\t\t\t\t\t<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t</div>\n\n\n\t\t\t\n\n\n\n\t\t<div id=\"glyphs\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\n\t\t\t\t<h1>Language Support</h1>\n\t\t\t\t<p>The subset of Metropolis Bold in this kit supports the following languages:<br />\n\t\t\t\n\t\t\t\t\tAlbanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo\t\t\t\t</p>\n\t\t\t\t<h1>Glyph Chart</h1>\n\t\t\t\t<p>The subset of Metropolis Bold in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>\n\t\t\t\t<div id=\"glyph_chart\">\n\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#32;</p>&#32;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#33;</p>&#33;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#34;</p>&#34;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#35;</p>&#35;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#36;</p>&#36;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#37;</p>&#37;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#38;</p>&#38;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#39;</p>&#39;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#40;</p>&#40;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#41;</p>&#41;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#42;</p>&#42;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#43;</p>&#43;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#44;</p>&#44;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#45;</p>&#45;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#46;</p>&#46;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#47;</p>&#47;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#48;</p>&#48;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#49;</p>&#49;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#50;</p>&#50;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#51;</p>&#51;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#52;</p>&#52;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#53;</p>&#53;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#54;</p>&#54;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#55;</p>&#55;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#56;</p>&#56;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#57;</p>&#57;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#58;</p>&#58;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#59;</p>&#59;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#60;</p>&#60;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#61;</p>&#61;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#62;</p>&#62;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#63;</p>&#63;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#64;</p>&#64;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#65;</p>&#65;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#66;</p>&#66;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#67;</p>&#67;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#68;</p>&#68;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#69;</p>&#69;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#70;</p>&#70;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#71;</p>&#71;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#72;</p>&#72;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#73;</p>&#73;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#74;</p>&#74;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#75;</p>&#75;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#76;</p>&#76;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#77;</p>&#77;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#78;</p>&#78;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#79;</p>&#79;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#80;</p>&#80;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#81;</p>&#81;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#82;</p>&#82;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#83;</p>&#83;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#84;</p>&#84;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#85;</p>&#85;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#86;</p>&#86;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#87;</p>&#87;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#88;</p>&#88;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#89;</p>&#89;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#90;</p>&#90;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#91;</p>&#91;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#92;</p>&#92;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#93;</p>&#93;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#94;</p>&#94;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#95;</p>&#95;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#96;</p>&#96;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#97;</p>&#97;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#98;</p>&#98;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#99;</p>&#99;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#100;</p>&#100;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#101;</p>&#101;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#102;</p>&#102;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#103;</p>&#103;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#104;</p>&#104;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#105;</p>&#105;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#106;</p>&#106;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#107;</p>&#107;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#108;</p>&#108;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#109;</p>&#109;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#110;</p>&#110;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#111;</p>&#111;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#112;</p>&#112;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#113;</p>&#113;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#114;</p>&#114;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#115;</p>&#115;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#116;</p>&#116;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#117;</p>&#117;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#118;</p>&#118;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#119;</p>&#119;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#120;</p>&#120;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#121;</p>&#121;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#122;</p>&#122;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#123;</p>&#123;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#124;</p>&#124;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#125;</p>&#125;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#126;</p>&#126;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#160;</p>&#160;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#161;</p>&#161;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#162;</p>&#162;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#163;</p>&#163;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#165;</p>&#165;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#168;</p>&#168;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#173;</p>&#173;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#175;</p>&#175;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#180;</p>&#180;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#184;</p>&#184;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#191;</p>&#191;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#192;</p>&#192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#193;</p>&#193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#194;</p>&#194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#195;</p>&#195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#196;</p>&#196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#197;</p>&#197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#198;</p>&#198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#199;</p>&#199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#200;</p>&#200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#201;</p>&#201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#202;</p>&#202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#203;</p>&#203;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#204;</p>&#204;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#205;</p>&#205;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#206;</p>&#206;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#207;</p>&#207;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#208;</p>&#208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#209;</p>&#209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#210;</p>&#210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#211;</p>&#211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#212;</p>&#212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#213;</p>&#213;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#214;</p>&#214;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#215;</p>&#215;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#216;</p>&#216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#217;</p>&#217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#218;</p>&#218;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#219;</p>&#219;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#220;</p>&#220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#221;</p>&#221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#222;</p>&#222;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#223;</p>&#223;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#224;</p>&#224;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#225;</p>&#225;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#226;</p>&#226;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#227;</p>&#227;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#228;</p>&#228;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#229;</p>&#229;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#230;</p>&#230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#231;</p>&#231;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#232;</p>&#232;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#233;</p>&#233;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#234;</p>&#234;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#235;</p>&#235;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#236;</p>&#236;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#237;</p>&#237;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#238;</p>&#238;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#239;</p>&#239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#240;</p>&#240;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#241;</p>&#241;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#242;</p>&#242;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#243;</p>&#243;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#244;</p>&#244;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#245;</p>&#245;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#246;</p>&#246;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#247;</p>&#247;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#248;</p>&#248;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#249;</p>&#249;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#250;</p>&#250;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#251;</p>&#251;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#252;</p>&#252;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#253;</p>&#253;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#254;</p>&#254;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#255;</p>&#255;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#338;</p>&#338;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#339;</p>&#339;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#376;</p>&#376;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#710;</p>&#710;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#732;</p>&#732;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8192;</p>&#8192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8193;</p>&#8193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8194;</p>&#8194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8195;</p>&#8195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8196;</p>&#8196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8197;</p>&#8197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8198;</p>&#8198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8199;</p>&#8199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8200;</p>&#8200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8201;</p>&#8201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8202;</p>&#8202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8208;</p>&#8208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8209;</p>&#8209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8210;</p>&#8210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8211;</p>&#8211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8212;</p>&#8212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8216;</p>&#8216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8217;</p>&#8217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8220;</p>&#8220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8221;</p>&#8221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8230;</p>&#8230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8239;</p>&#8239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8287;</p>&#8287;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8364;</p>&#8364;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#9724;</p>&#9724;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t\n\t\t<div id=\"specs\">\n\t\t\t\n\t\t</div>\n\t\n\t\t<div id=\"installing\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid7 firstcol\">\n\t\t\t\t\t<h1>Installing Webfonts</h1>\n\t\t\t\t\t\n\t\t\t\t\t<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>1. Upload your webfonts</h2>\n\t\t\t\t\t<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>2. Include the webfont stylesheet</h2>\n\t\t\t\t\t<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href=\"https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax\">Fontspring blog post</a> about it. The code for it is as follows:</p>\n\n\n<code>\n@font-face{ \n\tfont-family: 'MyWebFont';\n\tsrc: url('WebFont.eot');\n\tsrc: url('WebFont.eot?#iefix') format('embedded-opentype'),\n\t     url('WebFont.woff') format('woff'),\n\t     url('WebFont.ttf') format('truetype'),\n\t     url('WebFont.svg#webfont') format('svg');\n}\n</code>\n\n\t<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>\n\t<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>\n\n\t\t\t\t\t<h2>3. Modify your own stylesheet</h2>\n\t\t\t\t\t<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called \"font-family.\" The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the \"font-family\" property, inside the selector you want to change. For example:</p>\n<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>\n\n<h2>4. Test</h2>\n<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"grid5 sidebar\">\n\t\t\t\t\t<div class=\"box\">\n\t\t\t\t\t\t<h2>Troubleshooting<br />Font-Face Problems</h2>\n\t\t\t\t\t\t<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>\n\n\t\t\t\t\t\t<h3>Fonts not showing in any browser</h3>\n\n\t\t\t\t\t\t<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in iPhone or iPad</h3>\n\n\t\t\t\t\t\t<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to \"image/svg+xml\" in the server settings. Follow these instructions from Microsoft if you need help.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in Firefox</h3>\n\n\t\t\t\t\t\t<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE</h3>\n\n\t\t\t\t\t\t<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE9</h3>\n\n\t\t\t\t\t\t<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t\n\t\t</div>\n\t\n\t</div>\n\t<div id=\"footer\">\n\t\t<p>&copy;2010-2017 Font Squirrel. All rights reserved.</p>\n\t</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "frontend/src/fonts/metropolis-extrabold-demo.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\t\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n\t<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\" type=\"text/javascript\" charset=\"utf-8\"></script>\n\t<script type=\"text/javascript\">\n\t(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:\"fast\",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId=\"#\"+this.id;if(param.defaultContent==''){param.defaultContent=1;}\n\tif(typeof param.defaultContent==\"number\")\n\t{var defaultTab=$(thisId+\" .tabs li:eq(\"+(param.defaultContent-1)+\") a\").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}\n\t$(thisId+\" .tabs li a\").each(function(){var tabToHide=$(this).attr('href').substr(1);$(\"#\"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+\" .easytabs-tab-content\").hide();}\n\tfunction changeContent(tabId){hideAll();$(thisId+\" .tabs li\").removeClass(param.activeClass);$(thisId+\" .tabs li a[href=#\"+tabId+\"]\").closest('li').addClass(param.activeClass);if(param.fadeSpeed!=\"none\")\n\t{$(thisId+\" #\"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+\" #\"+tabId).show();}}\n\t$(thisId+\" .tabs li\").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);\n\t</script>\n\t<link rel=\"stylesheet\" href=\"specimen_files/specimen_stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\t<link rel=\"stylesheet\" href=\"stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\n\t<style type=\"text/css\">\n\t\t\t\t\tbody{\n\t\t\t\tfont-family: 'metropolisextra_bold';\n\t\t\t\t\t\t\t}\n\t\t</style>\n\n\t<title>Metropolis Extra Bold Regular Specimen</title>\n\t\n\t\n\t<script type=\"text/javascript\" charset=\"utf-8\">\n\t\t$(document).ready(function() {\n\t\t\t$('#container').easyTabs({defaultContent:1});\n\t\t});\n\t</script>\n</head>\n\n<body>\n<div id=\"container\">\n\t<div id=\"header\">\n\t\tMetropolis Extra Bold Regular\t</div>\n\t<ul class=\"tabs\">\n\t\t<li><a href=\"#specimen\">Specimen</a></li>\n\t\t<li><a href=\"#layout\">Sample Layout</a></li>\n\t\t\t\t<li><a href=\"#glyphs\">Glyphs &amp; Languages</a></li>\n\t\t<li><a href=\"#installing\">Installing Webfonts</a></li>\n\t\t\n\t</ul>\n\t\n\t<div id=\"main_content\">\n\n\t\t\n\t\t\t<div id=\"specimen\">\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<div class=\"huge\">AaBb</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"glyph_range\">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<table class=\"sample_table\">\n\t\t\t\t\t\t\t<tr><td>10</td><td class=\"size10\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>11</td><td class=\"size11\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>12</td><td class=\"size12\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>13</td><td class=\"size13\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>14</td><td class=\"size14\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>16</td><td class=\"size16\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>18</td><td class=\"size18\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>20</td><td class=\"size20\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>24</td><td class=\"size24\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>30</td><td class=\"size30\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>36</td><td class=\"size36\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>48</td><td class=\"size48\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>60</td><td class=\"size60\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>72</td><td class=\"size72\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>90</td><td class=\"size90\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t</table>\n\t\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\n\t\t\t\t\t\t\t\t<div class=\"section\" id=\"bodycomparison\">\n\n\n\t\t\t\t\t\t\t\t\t\t<div id=\"xheight\">\n\t\t\t\t<div class=\"fontbody\">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class=\"arialbody\">body</div><div class=\"verdanabody\">body</div><div class=\"georgiabody\">body</div></div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"fontbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Metropolis Extra Bold Regular</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"arialbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Arial</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"verdanabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Verdana</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"georgiabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Georgia</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\n\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t\t<div class=\"section psample psample_row1\" id=\"\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section psample psample_row2\" id=\"\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row4\" id=\"\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row1 fullreverse\">\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row2 fullreverse\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row4\" id=\"\" style=\"border-bottom: 20px #000 solid;\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t</div>\n\t\t\t\n\t\t\t<div id=\"layout\">\n\t\t\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<h1>Lorem Ipsum Dolor</h1>\n\t\t\t\t\t\t<h2>Etiam porta sem malesuada magna mollis euismod</h2>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"byline\">By <a href=\"#link\">Aenean Lacinia</a></p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid8 firstcol\">\n\t\t\t\t\t\t<p class=\"large\">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<h3>Pellentesque ornare sem</h3>\n\n\t\t\t\t\t\t<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>\n\n\t\t\t\t\t\t<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>\n\n\t\t\t\t\t\t<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>\n\n\t\t\t\t\t\t<h3>Cras mattis consectetur</h3>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>\n\n\t\t\t\t\t\t<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid4 sidebar\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"box reverse\">\n\t\t\t\t\t\t\t<p class=\"last\">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"caption\">Maecenas sed diam eget risus varius.</p>\n\n\t\t\t\t\t\t<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\n\n\t\t\t\t\t\t<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>\n\n\t\t\t\t\t\t<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t</div>\n\n\n\t\t\t\n\n\n\n\t\t<div id=\"glyphs\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\n\t\t\t\t<h1>Language Support</h1>\n\t\t\t\t<p>The subset of Metropolis Extra Bold Regular in this kit supports the following languages:<br />\n\t\t\t\n\t\t\t\t\tAlbanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo\t\t\t\t</p>\n\t\t\t\t<h1>Glyph Chart</h1>\n\t\t\t\t<p>The subset of Metropolis Extra Bold Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>\n\t\t\t\t<div id=\"glyph_chart\">\n\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#32;</p>&#32;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#33;</p>&#33;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#34;</p>&#34;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#35;</p>&#35;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#36;</p>&#36;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#37;</p>&#37;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#38;</p>&#38;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#39;</p>&#39;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#40;</p>&#40;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#41;</p>&#41;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#42;</p>&#42;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#43;</p>&#43;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#44;</p>&#44;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#45;</p>&#45;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#46;</p>&#46;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#47;</p>&#47;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#48;</p>&#48;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#49;</p>&#49;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#50;</p>&#50;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#51;</p>&#51;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#52;</p>&#52;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#53;</p>&#53;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#54;</p>&#54;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#55;</p>&#55;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#56;</p>&#56;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#57;</p>&#57;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#58;</p>&#58;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#59;</p>&#59;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#60;</p>&#60;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#61;</p>&#61;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#62;</p>&#62;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#63;</p>&#63;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#64;</p>&#64;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#65;</p>&#65;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#66;</p>&#66;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#67;</p>&#67;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#68;</p>&#68;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#69;</p>&#69;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#70;</p>&#70;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#71;</p>&#71;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#72;</p>&#72;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#73;</p>&#73;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#74;</p>&#74;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#75;</p>&#75;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#76;</p>&#76;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#77;</p>&#77;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#78;</p>&#78;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#79;</p>&#79;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#80;</p>&#80;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#81;</p>&#81;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#82;</p>&#82;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#83;</p>&#83;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#84;</p>&#84;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#85;</p>&#85;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#86;</p>&#86;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#87;</p>&#87;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#88;</p>&#88;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#89;</p>&#89;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#90;</p>&#90;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#91;</p>&#91;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#92;</p>&#92;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#93;</p>&#93;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#94;</p>&#94;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#95;</p>&#95;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#96;</p>&#96;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#97;</p>&#97;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#98;</p>&#98;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#99;</p>&#99;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#100;</p>&#100;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#101;</p>&#101;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#102;</p>&#102;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#103;</p>&#103;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#104;</p>&#104;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#105;</p>&#105;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#106;</p>&#106;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#107;</p>&#107;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#108;</p>&#108;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#109;</p>&#109;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#110;</p>&#110;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#111;</p>&#111;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#112;</p>&#112;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#113;</p>&#113;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#114;</p>&#114;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#115;</p>&#115;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#116;</p>&#116;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#117;</p>&#117;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#118;</p>&#118;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#119;</p>&#119;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#120;</p>&#120;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#121;</p>&#121;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#122;</p>&#122;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#123;</p>&#123;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#124;</p>&#124;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#125;</p>&#125;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#126;</p>&#126;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#160;</p>&#160;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#161;</p>&#161;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#162;</p>&#162;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#163;</p>&#163;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#165;</p>&#165;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#168;</p>&#168;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#173;</p>&#173;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#175;</p>&#175;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#180;</p>&#180;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#184;</p>&#184;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#191;</p>&#191;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#192;</p>&#192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#193;</p>&#193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#194;</p>&#194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#195;</p>&#195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#196;</p>&#196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#197;</p>&#197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#198;</p>&#198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#199;</p>&#199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#200;</p>&#200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#201;</p>&#201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#202;</p>&#202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#203;</p>&#203;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#204;</p>&#204;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#205;</p>&#205;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#206;</p>&#206;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#207;</p>&#207;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#208;</p>&#208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#209;</p>&#209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#210;</p>&#210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#211;</p>&#211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#212;</p>&#212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#213;</p>&#213;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#214;</p>&#214;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#215;</p>&#215;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#216;</p>&#216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#217;</p>&#217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#218;</p>&#218;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#219;</p>&#219;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#220;</p>&#220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#221;</p>&#221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#222;</p>&#222;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#223;</p>&#223;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#224;</p>&#224;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#225;</p>&#225;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#226;</p>&#226;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#227;</p>&#227;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#228;</p>&#228;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#229;</p>&#229;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#230;</p>&#230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#231;</p>&#231;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#232;</p>&#232;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#233;</p>&#233;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#234;</p>&#234;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#235;</p>&#235;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#236;</p>&#236;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#237;</p>&#237;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#238;</p>&#238;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#239;</p>&#239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#240;</p>&#240;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#241;</p>&#241;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#242;</p>&#242;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#243;</p>&#243;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#244;</p>&#244;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#245;</p>&#245;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#246;</p>&#246;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#247;</p>&#247;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#248;</p>&#248;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#249;</p>&#249;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#250;</p>&#250;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#251;</p>&#251;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#252;</p>&#252;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#253;</p>&#253;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#254;</p>&#254;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#255;</p>&#255;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#338;</p>&#338;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#339;</p>&#339;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#376;</p>&#376;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#710;</p>&#710;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#732;</p>&#732;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8192;</p>&#8192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8193;</p>&#8193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8194;</p>&#8194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8195;</p>&#8195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8196;</p>&#8196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8197;</p>&#8197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8198;</p>&#8198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8199;</p>&#8199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8200;</p>&#8200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8201;</p>&#8201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8202;</p>&#8202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8208;</p>&#8208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8209;</p>&#8209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8210;</p>&#8210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8211;</p>&#8211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8212;</p>&#8212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8216;</p>&#8216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8217;</p>&#8217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8220;</p>&#8220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8221;</p>&#8221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8230;</p>&#8230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8239;</p>&#8239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8287;</p>&#8287;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8364;</p>&#8364;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#9724;</p>&#9724;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t\n\t\t<div id=\"specs\">\n\t\t\t\n\t\t</div>\n\t\n\t\t<div id=\"installing\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid7 firstcol\">\n\t\t\t\t\t<h1>Installing Webfonts</h1>\n\t\t\t\t\t\n\t\t\t\t\t<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>1. Upload your webfonts</h2>\n\t\t\t\t\t<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>2. Include the webfont stylesheet</h2>\n\t\t\t\t\t<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href=\"https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax\">Fontspring blog post</a> about it. The code for it is as follows:</p>\n\n\n<code>\n@font-face{ \n\tfont-family: 'MyWebFont';\n\tsrc: url('WebFont.eot');\n\tsrc: url('WebFont.eot?#iefix') format('embedded-opentype'),\n\t     url('WebFont.woff') format('woff'),\n\t     url('WebFont.ttf') format('truetype'),\n\t     url('WebFont.svg#webfont') format('svg');\n}\n</code>\n\n\t<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>\n\t<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>\n\n\t\t\t\t\t<h2>3. Modify your own stylesheet</h2>\n\t\t\t\t\t<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called \"font-family.\" The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the \"font-family\" property, inside the selector you want to change. For example:</p>\n<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>\n\n<h2>4. Test</h2>\n<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"grid5 sidebar\">\n\t\t\t\t\t<div class=\"box\">\n\t\t\t\t\t\t<h2>Troubleshooting<br />Font-Face Problems</h2>\n\t\t\t\t\t\t<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>\n\n\t\t\t\t\t\t<h3>Fonts not showing in any browser</h3>\n\n\t\t\t\t\t\t<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in iPhone or iPad</h3>\n\n\t\t\t\t\t\t<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to \"image/svg+xml\" in the server settings. Follow these instructions from Microsoft if you need help.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in Firefox</h3>\n\n\t\t\t\t\t\t<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE</h3>\n\n\t\t\t\t\t\t<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE9</h3>\n\n\t\t\t\t\t\t<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t\n\t\t</div>\n\t\n\t</div>\n\t<div id=\"footer\">\n\t\t<p>&copy;2010-2017 Font Squirrel. All rights reserved.</p>\n\t</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "frontend/src/fonts/metropolis-regular-demo.html",
    "content": "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\"\n\t\"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">\n\n<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\">\n<head>\n\t<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />\n\t<script src=\"http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js\" type=\"text/javascript\" charset=\"utf-8\"></script>\n\t<script type=\"text/javascript\">\n\t(function($){$.fn.easyTabs=function(option){var param=jQuery.extend({fadeSpeed:\"fast\",defaultContent:1,activeClass:'active'},option);$(this).each(function(){var thisId=\"#\"+this.id;if(param.defaultContent==''){param.defaultContent=1;}\n\tif(typeof param.defaultContent==\"number\")\n\t{var defaultTab=$(thisId+\" .tabs li:eq(\"+(param.defaultContent-1)+\") a\").attr('href').substr(1);}else{var defaultTab=param.defaultContent;}\n\t$(thisId+\" .tabs li a\").each(function(){var tabToHide=$(this).attr('href').substr(1);$(\"#\"+tabToHide).addClass('easytabs-tab-content');});hideAll();changeContent(defaultTab);function hideAll(){$(thisId+\" .easytabs-tab-content\").hide();}\n\tfunction changeContent(tabId){hideAll();$(thisId+\" .tabs li\").removeClass(param.activeClass);$(thisId+\" .tabs li a[href=#\"+tabId+\"]\").closest('li').addClass(param.activeClass);if(param.fadeSpeed!=\"none\")\n\t{$(thisId+\" #\"+tabId).fadeIn(param.fadeSpeed);}else{$(thisId+\" #\"+tabId).show();}}\n\t$(thisId+\" .tabs li\").click(function(){var tabId=$(this).find('a').attr('href').substr(1);changeContent(tabId);return false;});});}})(jQuery);\n\t</script>\n\t<link rel=\"stylesheet\" href=\"specimen_files/specimen_stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\t<link rel=\"stylesheet\" href=\"stylesheet.css\" type=\"text/css\" charset=\"utf-8\" />\n\n\t<style type=\"text/css\">\n\t\t\t\t\tbody{\n\t\t\t\tfont-family: 'metropolisregular';\n\t\t\t\t\t\t\t}\n\t\t</style>\n\n\t<title>Metropolis Regular Specimen</title>\n\t\n\t\n\t<script type=\"text/javascript\" charset=\"utf-8\">\n\t\t$(document).ready(function() {\n\t\t\t$('#container').easyTabs({defaultContent:1});\n\t\t});\n\t</script>\n</head>\n\n<body>\n<div id=\"container\">\n\t<div id=\"header\">\n\t\tMetropolis Regular\t</div>\n\t<ul class=\"tabs\">\n\t\t<li><a href=\"#specimen\">Specimen</a></li>\n\t\t<li><a href=\"#layout\">Sample Layout</a></li>\n\t\t\t\t<li><a href=\"#glyphs\">Glyphs &amp; Languages</a></li>\n\t\t<li><a href=\"#installing\">Installing Webfonts</a></li>\n\t\t\n\t</ul>\n\t\n\t<div id=\"main_content\">\n\n\t\t\n\t\t\t<div id=\"specimen\">\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<div class=\"huge\">AaBb</div>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"glyph_range\">A&#x200B;B&#x200b;C&#x200b;D&#x200b;E&#x200b;F&#x200b;G&#x200b;H&#x200b;I&#x200b;J&#x200b;K&#x200b;L&#x200b;M&#x200b;N&#x200b;O&#x200b;P&#x200b;Q&#x200b;R&#x200b;S&#x200b;T&#x200b;U&#x200b;V&#x200b;W&#x200b;X&#x200b;Y&#x200b;Z&#x200b;a&#x200b;b&#x200b;c&#x200b;d&#x200b;e&#x200b;f&#x200b;g&#x200b;h&#x200b;i&#x200b;j&#x200b;k&#x200b;l&#x200b;m&#x200b;n&#x200b;o&#x200b;p&#x200b;q&#x200b;r&#x200b;s&#x200b;t&#x200b;u&#x200b;v&#x200b;w&#x200b;x&#x200b;y&#x200b;z&#x200b;1&#x200b;2&#x200b;3&#x200b;4&#x200b;5&#x200b;6&#x200b;7&#x200b;8&#x200b;9&#x200b;0&#x200b;&amp;&#x200b;.&#x200b;,&#x200b;?&#x200b;!&#x200b;&#64;&#x200b;(&#x200b;)&#x200b;#&#x200b;$&#x200b;%&#x200b;*&#x200b;+&#x200b;-&#x200b;=&#x200b;:&#x200b;;</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<table class=\"sample_table\">\n\t\t\t\t\t\t\t<tr><td>10</td><td class=\"size10\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>11</td><td class=\"size11\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>12</td><td class=\"size12\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>13</td><td class=\"size13\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>14</td><td class=\"size14\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>16</td><td class=\"size16\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>18</td><td class=\"size18\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>20</td><td class=\"size20\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>24</td><td class=\"size24\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>30</td><td class=\"size30\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>36</td><td class=\"size36\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>48</td><td class=\"size48\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>60</td><td class=\"size60\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>72</td><td class=\"size72\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t\t<tr><td>90</td><td class=\"size90\">abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ</td></tr>\n\t\t\t\t\t\t</table>\n\t\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\n\t\t\t\t\t\t\t\t<div class=\"section\" id=\"bodycomparison\">\n\n\n\t\t\t\t\t\t\t\t\t\t<div id=\"xheight\">\n\t\t\t\t<div class=\"fontbody\">&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;&#x25FC;body</div><div class=\"arialbody\">body</div><div class=\"verdanabody\">body</div><div class=\"georgiabody\">body</div></div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"fontbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Metropolis Regular</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"arialbody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Arial</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"verdanabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Verdana</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t\t\t\t<div class=\"georgiabody\" style=\"z-index:1\">\n\t\t\t\t\t\t\t\t\t\t\tbody<span>Georgia</span>\n\t\t\t\t\t\t\t\t\t\t</div>\n\n\n\n\t\t\t\t\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t\t<div class=\"section psample psample_row1\" id=\"\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section psample psample_row2\" id=\"\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row4\" id=\"\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"white_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row1 fullreverse\">\n\t\t\t\t\t<div class=\"grid2 firstcol\">\n\t\t\t\t\t\t<p class=\"size10\"><span>10.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size11\"><span>11.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid3\">\n\t\t\t\t\t\t<p class=\"size12\"><span>12.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size13\"><span>13.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample psample_row2 fullreverse\">\n\t\t\t\t\t<div class=\"grid3 firstcol\">\n\t\t\t\t\t\t<p class=\"size14\"><span>14.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid4\">\n\t\t\t\t\t\t<p class=\"size16\"><span>16.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid5\">\n\t\t\t\t\t\t<p class=\"size18\"><span>18.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row3\" id=\"\">\n\t\t\t\t\t<div class=\"grid5 firstcol\">\n\t\t\t\t\t\t<p class=\"size20\"><span>20.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"grid7\">\n\t\t\t\t\t\t<p class=\"size24\"><span>24.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"section psample fullreverse psample_row4\" id=\"\" style=\"border-bottom: 20px #000 solid;\">\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<p class=\"size30\"><span>30.</span>Aenean lacinia bibendum nulla sed consectetur. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. Nullam id dolor id nibh ultricies vehicula ut id elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nulla vitae elit libero, a pharetra augue.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"black_blend\"></div>\n\t\t\t\t\t\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\n\t\t\t</div>\n\t\t\t\n\t\t\t<div id=\"layout\">\n\t\t\t\t\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\t\t\t<h1>Lorem Ipsum Dolor</h1>\n\t\t\t\t\t\t<h2>Etiam porta sem malesuada magna mollis euismod</h2>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"byline\">By <a href=\"#link\">Aenean Lacinia</a></p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"section\">\n\t\t\t\t\t<div class=\"grid8 firstcol\">\n\t\t\t\t\t\t<p class=\"large\">Donec sed odio dui. Morbi leo risus, porta ac consectetur ac, vestibulum at eros. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\t\n\t\t\t\t\t\t<h3>Pellentesque ornare sem</h3>\n\n\t\t\t\t\t\t<p>Maecenas sed diam eget risus varius blandit sit amet non magna. Maecenas faucibus mollis interdum. Donec ullamcorper nulla non metus auctor fringilla. Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam id dolor id nibh ultricies vehicula ut id elit. </p>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. </p>\n\n\t\t\t\t\t\t<p>Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur. </p>\n\n\t\t\t\t\t\t<p>Nullam quis risus eget urna mollis ornare vel eu leo. Nullam quis risus eget urna mollis ornare vel eu leo. Maecenas sed diam eget risus varius blandit sit amet non magna. Donec ullamcorper nulla non metus auctor fringilla. </p>\n\n\t\t\t\t\t\t<h3>Cras mattis consectetur</h3>\n\n\t\t\t\t\t\t<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. Aenean lacinia bibendum nulla sed consectetur. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Cras mattis consectetur purus sit amet fermentum. </p>\n\n\t\t\t\t\t\t<p>Nullam id dolor id nibh ultricies vehicula ut id elit. Nullam quis risus eget urna mollis ornare vel eu leo. Cras mattis consectetur purus sit amet fermentum.</p>\n\t\t\t\t\t</div>\n\t\t\t\t\t\n\t\t\t\t\t<div class=\"grid4 sidebar\">\n\t\t\t\t\t\t\n\t\t\t\t\t\t<div class=\"box reverse\">\n\t\t\t\t\t\t\t<p class=\"last\">Nullam quis risus eget urna mollis ornare vel eu leo. Donec ullamcorper nulla non metus auctor fringilla. Cras mattis consectetur purus sit amet fermentum. Sed posuere consectetur est at lobortis. Lorem ipsum dolor sit amet, consectetur adipiscing elit. </p>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\n\t\t\t\t\t\t<p class=\"caption\">Maecenas sed diam eget risus varius.</p>\n\n\t\t\t\t\t\t<p>Vestibulum id ligula porta felis euismod semper. Integer posuere erat a ante venenatis dapibus posuere velit aliquet. Vestibulum id ligula porta felis euismod semper. Sed posuere consectetur est at lobortis. Maecenas sed diam eget risus varius blandit sit amet non magna. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t\n\n\t\t\t\t\t\t<p>Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur. Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Aenean lacinia bibendum nulla sed consectetur. Nullam quis risus eget urna mollis ornare vel eu leo. </p>\n\n\t\t\t\t\t\t<p>Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Donec ullamcorper nulla non metus auctor fringilla. Maecenas faucibus mollis interdum. Fusce dapibus, tellus ac cursus commodo, tortor mauris condimentum nibh, ut fermentum massa justo sit amet risus. </p>\n\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t</div>\n\n\n\t\t\t\n\n\n\n\t\t<div id=\"glyphs\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid12 firstcol\">\n\t\t\t\n\t\t\t\t<h1>Language Support</h1>\n\t\t\t\t<p>The subset of Metropolis Regular in this kit supports the following languages:<br />\n\t\t\t\n\t\t\t\t\tAlbanian, Basque, Breton, Chamorro, Danish, Dutch, English, Faroese, Finnish, French, Frisian, Galician, German, Icelandic, Italian, Malagasy, Norwegian, Portuguese, Spanish, Alsatian, Aragonese, Arapaho, Arrernte, Asturian, Aymara, Bislama, Cebuano, Corsican, Fijian, French_creole, Genoese, Gilbertese, Greenlandic, Haitian_creole, Hiligaynon, Hmong, Hopi, Ibanag, Iloko_ilokano, Indonesian, Interglossa_glosa, Interlingua, Irish_gaelic, Jerriais, Lojban, Lombard, Luxembourgeois, Manx, Mohawk, Norfolk_pitcairnese, Occitan, Oromo, Pangasinan, Papiamento, Piedmontese, Potawatomi, Rhaeto-romance, Romansh, Rotokas, Sami_lule, Samoan, Sardinian, Scots_gaelic, Seychelles_creole, Shona, Sicilian, Somali, Southern_ndebele, Swahili, Swati_swazi, Tagalog_filipino_pilipino, Tetum, Tok_pisin, Uyghur_latinized, Volapuk, Walloon, Warlpiri, Xhosa, Yapese, Zulu, Latinbasic, Ubasic, Demo\t\t\t\t</p>\n\t\t\t\t<h1>Glyph Chart</h1>\n\t\t\t\t<p>The subset of Metropolis Regular in this kit includes all the glyphs listed below. Unicode entities are included above each glyph to help you insert individual characters into your layout.</p>\n\t\t\t\t<div id=\"glyph_chart\">\n\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#32;</p>&#32;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#33;</p>&#33;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#34;</p>&#34;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#35;</p>&#35;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#36;</p>&#36;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#37;</p>&#37;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#38;</p>&#38;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#39;</p>&#39;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#40;</p>&#40;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#41;</p>&#41;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#42;</p>&#42;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#43;</p>&#43;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#44;</p>&#44;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#45;</p>&#45;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#46;</p>&#46;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#47;</p>&#47;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#48;</p>&#48;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#49;</p>&#49;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#50;</p>&#50;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#51;</p>&#51;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#52;</p>&#52;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#53;</p>&#53;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#54;</p>&#54;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#55;</p>&#55;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#56;</p>&#56;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#57;</p>&#57;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#58;</p>&#58;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#59;</p>&#59;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#60;</p>&#60;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#61;</p>&#61;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#62;</p>&#62;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#63;</p>&#63;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#64;</p>&#64;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#65;</p>&#65;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#66;</p>&#66;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#67;</p>&#67;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#68;</p>&#68;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#69;</p>&#69;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#70;</p>&#70;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#71;</p>&#71;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#72;</p>&#72;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#73;</p>&#73;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#74;</p>&#74;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#75;</p>&#75;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#76;</p>&#76;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#77;</p>&#77;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#78;</p>&#78;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#79;</p>&#79;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#80;</p>&#80;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#81;</p>&#81;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#82;</p>&#82;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#83;</p>&#83;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#84;</p>&#84;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#85;</p>&#85;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#86;</p>&#86;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#87;</p>&#87;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#88;</p>&#88;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#89;</p>&#89;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#90;</p>&#90;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#91;</p>&#91;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#92;</p>&#92;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#93;</p>&#93;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#94;</p>&#94;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#95;</p>&#95;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#96;</p>&#96;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#97;</p>&#97;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#98;</p>&#98;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#99;</p>&#99;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#100;</p>&#100;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#101;</p>&#101;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#102;</p>&#102;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#103;</p>&#103;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#104;</p>&#104;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#105;</p>&#105;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#106;</p>&#106;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#107;</p>&#107;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#108;</p>&#108;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#109;</p>&#109;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#110;</p>&#110;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#111;</p>&#111;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#112;</p>&#112;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#113;</p>&#113;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#114;</p>&#114;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#115;</p>&#115;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#116;</p>&#116;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#117;</p>&#117;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#118;</p>&#118;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#119;</p>&#119;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#120;</p>&#120;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#121;</p>&#121;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#122;</p>&#122;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#123;</p>&#123;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#124;</p>&#124;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#125;</p>&#125;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#126;</p>&#126;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#160;</p>&#160;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#161;</p>&#161;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#162;</p>&#162;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#163;</p>&#163;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#165;</p>&#165;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#168;</p>&#168;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#173;</p>&#173;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#175;</p>&#175;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#180;</p>&#180;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#184;</p>&#184;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#191;</p>&#191;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#192;</p>&#192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#193;</p>&#193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#194;</p>&#194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#195;</p>&#195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#196;</p>&#196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#197;</p>&#197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#198;</p>&#198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#199;</p>&#199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#200;</p>&#200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#201;</p>&#201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#202;</p>&#202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#203;</p>&#203;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#204;</p>&#204;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#205;</p>&#205;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#206;</p>&#206;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#207;</p>&#207;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#208;</p>&#208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#209;</p>&#209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#210;</p>&#210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#211;</p>&#211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#212;</p>&#212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#213;</p>&#213;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#214;</p>&#214;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#215;</p>&#215;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#216;</p>&#216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#217;</p>&#217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#218;</p>&#218;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#219;</p>&#219;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#220;</p>&#220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#221;</p>&#221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#222;</p>&#222;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#223;</p>&#223;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#224;</p>&#224;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#225;</p>&#225;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#226;</p>&#226;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#227;</p>&#227;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#228;</p>&#228;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#229;</p>&#229;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#230;</p>&#230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#231;</p>&#231;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#232;</p>&#232;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#233;</p>&#233;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#234;</p>&#234;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#235;</p>&#235;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#236;</p>&#236;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#237;</p>&#237;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#238;</p>&#238;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#239;</p>&#239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#240;</p>&#240;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#241;</p>&#241;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#242;</p>&#242;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#243;</p>&#243;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#244;</p>&#244;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#245;</p>&#245;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#246;</p>&#246;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#247;</p>&#247;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#248;</p>&#248;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#249;</p>&#249;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#250;</p>&#250;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#251;</p>&#251;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#252;</p>&#252;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#253;</p>&#253;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#254;</p>&#254;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#255;</p>&#255;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#338;</p>&#338;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#339;</p>&#339;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#376;</p>&#376;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#710;</p>&#710;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#732;</p>&#732;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8192;</p>&#8192;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8193;</p>&#8193;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8194;</p>&#8194;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8195;</p>&#8195;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8196;</p>&#8196;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8197;</p>&#8197;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8198;</p>&#8198;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8199;</p>&#8199;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8200;</p>&#8200;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8201;</p>&#8201;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8202;</p>&#8202;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8208;</p>&#8208;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8209;</p>&#8209;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8210;</p>&#8210;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8211;</p>&#8211;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8212;</p>&#8212;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8216;</p>&#8216;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8217;</p>&#8217;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8220;</p>&#8220;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8221;</p>&#8221;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8230;</p>&#8230;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8239;</p>&#8239;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8287;</p>&#8287;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#8364;</p>&#8364;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t <div><p>&amp;#9724;</p>&#9724;</div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t</div>\t\n\t\t\t\t</div>\n\t\t\n\t\t\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t\n\t\t<div id=\"specs\">\n\t\t\t\n\t\t</div>\n\t\n\t\t<div id=\"installing\">\n\t\t\t<div class=\"section\">\n\t\t\t\t<div class=\"grid7 firstcol\">\n\t\t\t\t\t<h1>Installing Webfonts</h1>\n\t\t\t\t\t\n\t\t\t\t\t<p>Webfonts are supported by all major browser platforms but not all in the same way. There are currently four different font formats that must be included in order to target all browsers. This includes TTF, WOFF, EOT and SVG.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>1. Upload your webfonts</h2>\n\t\t\t\t\t<p>You must upload your webfont kit to your website. They should be in or near the same directory as your CSS files.</p>\n\t\t\t\t\t\n\t\t\t\t\t<h2>2. Include the webfont stylesheet</h2>\n\t\t\t\t\t<p>A special CSS @font-face declaration helps the various browsers select the appropriate font it needs without causing you a bunch of headaches. Learn more about this syntax by reading the <a href=\"https://www.fontspring.com/blog/further-hardening-of-the-bulletproof-syntax\">Fontspring blog post</a> about it. The code for it is as follows:</p>\n\n\n<code>\n@font-face{ \n\tfont-family: 'MyWebFont';\n\tsrc: url('WebFont.eot');\n\tsrc: url('WebFont.eot?#iefix') format('embedded-opentype'),\n\t     url('WebFont.woff') format('woff'),\n\t     url('WebFont.ttf') format('truetype'),\n\t     url('WebFont.svg#webfont') format('svg');\n}\n</code>\n\n\t<p>We've already gone ahead and generated the code for you. All you have to do is link to the stylesheet in your HTML, like this:</p>\n\t<code>&lt;link rel=&quot;stylesheet&quot; href=&quot;stylesheet.css&quot; type=&quot;text/css&quot; charset=&quot;utf-8&quot; /&gt;</code>\n\n\t\t\t\t\t<h2>3. Modify your own stylesheet</h2>\n\t\t\t\t\t<p>To take advantage of your new fonts, you must tell your stylesheet to use them. Look at the original @font-face declaration above and find the property called \"font-family.\" The name linked there will be what you use to reference the font. Prepend that webfont name to the font stack in the \"font-family\" property, inside the selector you want to change. For example:</p>\n<code>p { font-family: 'WebFont', Arial, sans-serif; }</code>\n\n<h2>4. Test</h2>\n<p>Getting webfonts to work cross-browser <em>can</em> be tricky. Use the information in the sidebar to help you if you find that fonts aren't loading in a particular browser.</p>\n\t\t\t\t</div>\n\t\t\t\t\n\t\t\t\t<div class=\"grid5 sidebar\">\n\t\t\t\t\t<div class=\"box\">\n\t\t\t\t\t\t<h2>Troubleshooting<br />Font-Face Problems</h2>\n\t\t\t\t\t\t<p>Having trouble getting your webfonts to load in your new website? Here are some tips to sort out what might be the problem.</p>\n\n\t\t\t\t\t\t<h3>Fonts not showing in any browser</h3>\n\n\t\t\t\t\t\t<p>This sounds like you need to work on the plumbing. You either did not upload the fonts to the correct directory, or you did not link the fonts properly in the CSS. If you've confirmed that all this is correct and you still have a problem, take a look at your .htaccess file and see if requests are getting intercepted.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in iPhone or iPad</h3>\n\n\t\t\t\t\t\t<p>The most common problem here is that you are serving the fonts from an IIS server. IIS refuses to serve files that have unknown MIME types. If that is the case, you must set the MIME type for SVG to \"image/svg+xml\" in the server settings. Follow these instructions from Microsoft if you need help.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in Firefox</h3>\n\n\t\t\t\t\t\t<p>The primary reason for this failure? You are still using a version Firefox older than 3.5. So upgrade already! If that isn't it, then you are very likely serving fonts from a different domain. Firefox requires that all font assets be served from the same domain. Lastly it is possible that you need to add WOFF to your list of MIME types (if you are serving via IIS.)</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE</h3>\n\n\t\t\t\t\t\t<p>Are you looking at Internet Explorer on an actual Windows machine or are you cheating by using a service like Adobe BrowserLab? Many of these screenshot services do not render @font-face for IE. Best to test it on a real machine.</p>\n\n\t\t\t\t\t\t<h3>Fonts not loading in IE9</h3>\n\n\t\t\t\t\t\t<p>IE9, like Firefox, requires that fonts be served from the same domain as the website. Make sure that is the case.</p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t\t\n\t\t</div>\n\t\n\t</div>\n\t<div id=\"footer\">\n\t\t<p>&copy;2010-2017 Font Squirrel. All rights reserved.</p>\n\t</div>\n</div>\n</body>\n</html>\n"
  },
  {
    "path": "frontend/src/fonts/specimen_files/grid_12-825-55-15.css",
    "content": "/*Notes about grid:\nColumns:      12\nGrid Width:   825px\nColumn Width: 55px\nGutter Width: 15px\n-------------------------------*/\n \n \n \n.section \t\t{margin-bottom: 18px;\n}\n.section:after\t{content: \".\";display: block;height: 0;clear: both;visibility: hidden;}\n.section \t\t{*zoom: 1;}\n \n.section .firstcolumn,\n.section .firstcol {margin-left: 0;}\n \n \n/* Border on left hand side of a column. */\n.border {\n  padding-left: 7px;\n  margin-left: 7px;\n  border-left: 1px solid #eee;\n}\n \n/* Border with more whitespace, spans one column. */\n.colborder {\n    padding-left: 42px;\n  margin-left: 42px;\n  border-left: 1px solid #eee;\n}\n \n\n \n/* The Grid Classes */\n.grid1, .grid1_2cols, .grid1_3cols, .grid1_4cols, .grid2, .grid2_3cols, .grid2_4cols, .grid3, .grid3_2cols, .grid3_4cols, .grid4, .grid4_3cols, .grid5, .grid5_2cols, .grid5_3cols, .grid5_4cols, .grid6, .grid6_4cols, .grid7, .grid7_2cols, .grid7_3cols, .grid7_4cols, .grid8, .grid8_3cols, .grid9, .grid9_2cols, .grid9_4cols, .grid10, .grid10_3cols, .grid10_4cols, .grid11, .grid11_2cols, .grid11_3cols, .grid11_4cols, .grid12\n{margin-left: 15px;float: left;display: inline; overflow: hidden;}\n \n \n.width1, .grid1, .span-1 {width: 55px;}\n.width1_2cols,.grid1_2cols {width: 20px;}\n.width1_3cols,.grid1_3cols  {width: 8px;}\n.width1_4cols,.grid1_4cols  {width: 2px;}\n.input_width1 {width: 49px;}\n \n.width2, .grid2, .span-2 {width: 125px;}\n.width2_3cols,.grid2_3cols  {width: 31px;}\n.width2_4cols,.grid2_4cols  {width: 20px;}\n.input_width2 {width: 119px;}\n \n.width3, .grid3, .span-3 {width: 195px;}\n.width3_2cols,.grid3_2cols {width: 90px;}\n.width3_4cols,.grid3_4cols  {width: 37px;}\n.input_width3 {width: 189px;}\n \n.width4, .grid4, .span-4 {width: 265px;}\n.width4_3cols,.grid4_3cols  {width: 78px;}\n.input_width4 {width: 259px;}\n \n.width5, .grid5, .span-5 {width: 335px;}\n.width5_2cols,.grid5_2cols {width: 160px;}\n.width5_3cols,.grid5_3cols  {width: 101px;}\n.width5_4cols,.grid5_4cols  {width: 72px;}\n.input_width5 {width: 329px;}\n \n.width6, .grid6, .span-6 {width: 405px;}\n.width6_4cols,.grid6_4cols  {width: 90px;}\n.input_width6 {width: 399px;}\n \n.width7, .grid7, .span-7 {width: 475px;}\n.width7_2cols,.grid7_2cols {width: 230px;}\n.width7_3cols,.grid7_3cols  {width: 148px;}\n.width7_4cols,.grid7_4cols  {width: 107px;}\n.input_width7 {width: 469px;}\n \n.width8, .grid8, .span-8 {width: 545px;}\n.width8_3cols,.grid8_3cols  {width: 171px;}\n.input_width8 {width: 539px;}\n \n.width9, .grid9, .span-9 {width: 615px;}\n.width9_2cols,.grid9_2cols {width: 300px;}\n.width9_4cols,.grid9_4cols  {width: 142px;}\n.input_width9 {width: 609px;}\n \n.width10, .grid10, .span-10 {width: 685px;}\n.width10_3cols,.grid10_3cols  {width: 218px;}\n.width10_4cols,.grid10_4cols  {width: 160px;}\n.input_width10 {width: 679px;}\n \n.width11, .grid11, .span-11 {width: 755px;}\n.width11_2cols,.grid11_2cols {width: 370px;}\n.width11_3cols,.grid11_3cols  {width: 241px;}\n.width11_4cols,.grid11_4cols  {width: 177px;}\n.input_width11 {width: 749px;}\n \n.width12, .grid12, .span-12 {width: 825px;}\n.input_width12 {width: 819px;}\n \n/* Subdivided grid spaces */\n.emptycols_left1, .prepend-1 {padding-left: 70px;}\n.emptycols_right1, .append-1 {padding-right: 70px;}\n.emptycols_left2, .prepend-2 {padding-left: 140px;}\n.emptycols_right2, .append-2 {padding-right: 140px;}\n.emptycols_left3, .prepend-3 {padding-left: 210px;}\n.emptycols_right3, .append-3 {padding-right: 210px;}\n.emptycols_left4, .prepend-4 {padding-left: 280px;}\n.emptycols_right4, .append-4 {padding-right: 280px;}\n.emptycols_left5, .prepend-5 {padding-left: 350px;}\n.emptycols_right5, .append-5 {padding-right: 350px;}\n.emptycols_left6, .prepend-6 {padding-left: 420px;}\n.emptycols_right6, .append-6 {padding-right: 420px;}\n.emptycols_left7, .prepend-7 {padding-left: 490px;}\n.emptycols_right7, .append-7 {padding-right: 490px;}\n.emptycols_left8, .prepend-8 {padding-left: 560px;}\n.emptycols_right8, .append-8 {padding-right: 560px;}\n.emptycols_left9, .prepend-9 {padding-left: 630px;}\n.emptycols_right9, .append-9 {padding-right: 630px;}\n.emptycols_left10, .prepend-10 {padding-left: 700px;}\n.emptycols_right10, .append-10 {padding-right: 700px;}\n.emptycols_left11, .prepend-11 {padding-left: 770px;}\n.emptycols_right11, .append-11 {padding-right: 770px;}\n.pull-1 {margin-left: -70px;}\n.push-1 {margin-right: -70px;margin-left: 18px;float: right;}\n.pull-2 {margin-left: -140px;}\n.push-2 {margin-right: -140px;margin-left: 18px;float: right;}\n.pull-3 {margin-left: -210px;}\n.push-3 {margin-right: -210px;margin-left: 18px;float: right;}\n.pull-4 {margin-left: -280px;}\n.push-4 {margin-right: -280px;margin-left: 18px;float: right;}"
  },
  {
    "path": "frontend/src/fonts/specimen_files/specimen_stylesheet.css",
    "content": "@import url('grid_12-825-55-15.css');\n\n/*  \n\tCSS Reset by Eric Meyer - Released under Public Domain\n    http://meyerweb.com/eric/tools/css/reset/\n*/\nhtml, body, div, span, applet, object, iframe,\nh1, h2, h3, h4, h5, h6, p, blockquote, pre,\na, abbr, acronym, address, big, cite, code,\ndel, dfn, em, font, img, ins, kbd, q, s, samp,\nsmall, strike, strong, sub, sup, tt, var,\nb, u, i, center, dl, dt, dd, ol, ul, li,\nfieldset, form, label, legend, table, \ncaption, tbody, tfoot, thead, tr, th, td \n                  {margin: 0;padding: 0;border: 0;outline: 0;\n                  font-size: 100%;vertical-align: baseline;\n                  background: transparent;}\nbody              {line-height: 1;}\nol, ul            {list-style: none;}\nblockquote, q     {quotes: none;}\nblockquote:before, blockquote:after,\nq:before, q:after {content: '';\tcontent: none;}\n:focus            {outline: 0;}\nins               {text-decoration: none;}\ndel               {text-decoration: line-through;}\ntable             {border-collapse: collapse;border-spacing: 0;}\n\n\n\n\nbody {\n\tcolor: #000;\n\tbackground-color: #dcdcdc;\n}\n\na {\n\ttext-decoration: none;\n\tcolor: #1883ba;\n}\n\nh1{\n\tfont-size: 32px;\n\tfont-weight: normal;\n\tfont-style: normal;\n\tmargin-bottom: 18px;\n}\n\nh2{\n\tfont-size: 18px;\n}\n\n#container {\n\twidth: 865px;\n\tmargin: 0px auto;\n}\n\n\n#header {\n\tpadding: 20px;\n\tfont-size: 36px;\n\tbackground-color: #000;\n\tcolor: #fff;\n}\n\n#header span {\n\tcolor: #666;\n}\n#main_content {\n\tbackground-color: #fff;\n\tpadding: 60px 20px 20px;\n}\n\n\n#footer p {\n\tmargin: 0;\n\tpadding-top: 10px;\n\tpadding-bottom: 50px;\n\tcolor: #333;\n\tfont: 10px Arial, sans-serif;\n}\n\n.tabs {\n\twidth: 100%;\n\theight: 31px;\n\tbackground-color: #444;\n}\n.tabs li {\n\tfloat:  left;\n\tmargin: 0;\n\toverflow: hidden;\n\tbackground-color: #444;\n}\n.tabs li a {\n\tdisplay: block;\n\tcolor: #fff;\n\ttext-decoration: none;\n\tfont: bold 11px/11px 'Arial';\n\ttext-transform: uppercase;\n\tpadding: 10px 15px;\n\tborder-right: 1px solid #fff;\n}\n\n.tabs li a:hover {\n\t\tbackground-color: #00b3ff;\n\n}\n\n.tabs li.active a {\n\tcolor:  #000;\n\tbackground-color: #fff;\n}\n\n\n\ndiv.huge {\n\t\n\tfont-size: 300px;\n\tline-height: 1em;\n\tpadding: 0;\n\tletter-spacing: -.02em;\n\toverflow: hidden;\n}\ndiv.glyph_range {\n\tfont-size: 72px;\n\tline-height: 1.1em;\n}\n\n.size10{ font-size: 10px; }\n.size11{ font-size: 11px; }\n.size12{ font-size: 12px; }\n.size13{ font-size: 13px; }\n.size14{ font-size: 14px; }\n.size16{ font-size: 16px; }\n.size18{ font-size: 18px; }\n.size20{ font-size: 20px; }\n.size24{ font-size: 24px; }\n.size30{ font-size: 30px; }\n.size36{ font-size: 36px; }\n.size48{ font-size: 48px; }\n.size60{ font-size: 60px; }\n.size72{ font-size: 72px; }\n.size90{ font-size: 90px; }\n\n\n.psample_row1 {\theight: 120px;}\n.psample_row1 {\theight: 120px;}\n.psample_row2 {\theight: 160px;}\n.psample_row3 {\theight: 160px;}\n.psample_row4 {\theight: 160px;}\n\n.psample {\n\toverflow: hidden;\n\tposition: relative;\n}\n.psample p {\n\tline-height: 1.3em;\n\tdisplay: block;\n\toverflow: hidden;\n\tmargin: 0;\n}\n\n.psample span {\n\tmargin-right: .5em;\n}\n\n.white_blend {\n\twidth: 100%;\n\theight: 61px;\n\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAO1JREFUeNrs3TsKgFAMRUE/eer+NxztxMYuEWQG3ECKwwUF58ycAKixOAGAyAKILAAiCyCyACILgMgCiCyAyAIgsgAiCyCyAIgsgMgCiCwAIgsgsgAiC4DIAogsACIL0CWuZ3UGgLrIhjMA1EV2OAOAJQtgyQLwjOzmDAAiCyCyAIgsQFtkd2cAEFkAkQVAZAHaIns4A4AlC2DJAiCyACILILIAiCzAV5H1dQGAJQsgsgCILIDIAvwisl58AViyAJYsACILILIAIgvAe2T9EhxAZAFEFgCRBeiL7HAGgLrIhjMAWLIAliwAt1OAAQDwygTBulLIlQAAAABJRU5ErkJggg==);\n\tposition: absolute;\n\tbottom: 0;\n}\n.black_blend {\n\twidth: 100%;\n\theight: 61px;\n\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAVkAAAA9CAYAAAAH4BojAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPJJREFUeNrs3TEKhTAQRVGjibr/9QoxhY2N3Ywo50A28IrLwP9g6b1PAMSYTQAgsgAiC4DIAogsgMgCILIAIgsgsgCILIDIAogsACILILIAIguAyAKILIDIAiCyACILgMgCZCnjLWYAiFGvB0BQZJsZAFyyAC5ZAO6RXc0AILIAIguAyAKkRXYzA4DIAogsACILkBbZ3QwALlkAlywAIgsgsgAiC4DIArwVWf8uAHDJAogsACILILIAv4isH74AXLIALlkARBZAZAFEFoDnyPokOIDIAogsACILkBfZZgaAuMhWMwC4ZAE+p4x3mAEgxinAAJ+XBbPWGkwAAAAAAElFTkSuQmCC);\n\tposition: absolute;\n\tbottom: 0;\n}\n.fullreverse {\n\tbackground:  #000 !important;\n\tcolor:  #fff !important;\n\tmargin-left: -20px;\n\tpadding-left: 20px;\n\tmargin-right: -20px;\n\tpadding-right: 20px;\n\tpadding: 20px;\n\tmargin-bottom:0;\n}\n\n\n.sample_table td {\n\tpadding-top: 3px;\n\tpadding-bottom:5px;\n\tpadding-left: 5px;\n\tvertical-align: middle;\n\tline-height: 1.2em;\n}\n\n.sample_table td:first-child {\n\tbackground-color: #eee;\n\ttext-align: right;\n\tpadding-right: 5px;\n\tpadding-left: 0;\n\tpadding: 5px;\n\tfont: 11px/12px \"Courier New\", Courier, mono;\n}\n\ncode {\n\twhite-space: pre;\n\tbackground-color: #eee;\n\tdisplay: block;\n\tpadding: 10px;\n\tmargin-bottom: 18px;\n\toverflow: auto;\n}\n\n\n.bottom,.last \t{margin-bottom:0 !important; padding-bottom:0 !important;}\n\n.box  { \n  padding: 18px; \n  margin-bottom: 18px; \n  background: #eee; \n}\n\n.reverse,.reversed { background:  #000 !important;color:  #fff !important; border: none !important;}\n\n#bodycomparison {\n\tposition: relative;\n\toverflow: hidden;\n\tfont-size: 72px;\n\theight: 90px;\n\twhite-space: nowrap;\n}\n\n#bodycomparison div{\n\tfont-size: 72px;\n\tline-height: 90px;\n\tdisplay: inline;\n\tmargin: 0 15px 0 0;\n\tpadding: 0;\n}\n\n#bodycomparison div span{\n\tfont: 10px Arial;\n\tposition: absolute;\n\tleft: 0;\n}\n#xheight {\n\tfloat: none;\n\tposition: absolute;\n\tcolor: #d9f3ff;\n\tfont-size: 72px;\n\tline-height: 90px;\n}\n\n.fontbody {\n position: relative;\n}\n.arialbody{\n\tfont-family: Arial;\n\tposition: relative;\n}\n.verdanabody{\n\tfont-family: Verdana;\n\tposition: relative;\n}\n.georgiabody{\n\tfont-family: Georgia;\n\tposition: relative;\n}\n\n/* @group Layout page\n */\n\n#layout h1 {\n\tfont-size: 36px;\n\tline-height: 42px;\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n#layout h2 {\n\tfont-size: 24px;\n\tline-height: 23px;\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n#layout h3 {\n\tfont-size: 22px;\n\tline-height: 1.4em;\n\tmargin-top: 1em;\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n\n#layout p.byline {\n\tfont-size: 12px;\n\tmargin-top: 18px;\n\tline-height: 12px;\n\tmargin-bottom: 0;\n}\n#layout p {\n\tfont-size: 14px;\n\tline-height: 21px;\n\tmargin-bottom: .5em;\n}\n\n#layout p.large{\n\tfont-size: 18px;\n\tline-height: 26px;\n}\n\n#layout .sidebar p{\n\tfont-size: 12px;\n\tline-height: 1.4em;\n}\n\n#layout p.caption {\n\tfont-size: 10px;\n\tmargin-top: -16px;\n\tmargin-bottom: 18px;\n}\n\n/* @end */\n\n/* @group Glyphs */\n\n#glyph_chart div{\n\tbackground-color: #d9f3ff;\n\tcolor: #191E1E;\n\tfloat: left;\n\tfont-size: 36px;\n\theight: 1.2em;\n\tline-height: 1.2em;\n\tmargin-bottom: 1px;\n\tmargin-right: 1px;\n\ttext-align: center;\n\twidth: 1.2em;\n\tposition: relative;\n\tpadding: .6em .2em .2em;\n}\n\n#glyph_chart div p {\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tdisplay: block;\n\ttext-align: center;\n\tfont: bold 9px Arial, sans-serif;\n\tbackground-color: #3a768f;\n\twidth: 100%;\n\tcolor: #fff;\n\tpadding: 2px 0;\n}\n\n\n#glyphs h1 {\n\tfont-family: Arial, sans-serif;\n}\n/* @end */\n\n/* @group Installing */\n\n#installing {\n\tfont: 13px Arial, sans-serif;\n}\n\n#installing p,\n#glyphs p{\n\tline-height: 1.2em;\n\tmargin-bottom: 18px;\n\tfont: 13px Arial, sans-serif;\n}\n\n\n\n#installing h3{\n\tfont-size: 15px;\n\tmargin-top: 18px;\n}\n\n/* @end */\n\n#rendering h1 {\n\tfont-family: Arial, sans-serif;\n}\n.render_table td {\n\tfont: 11px \"Courier New\", Courier, mono;\n\tvertical-align: middle;\n}\n\n\n"
  },
  {
    "path": "frontend/src/fonts.css",
    "content": "@layer base {\n  /* from https://github.com/spring-io/sagan/blob/b23162035bb467fd6b1c0ed12a787cbc045c470f/sagan-client/src/css/main.css */\n  @font-face {\n    font-family: \"Metropolis\";\n    src:\n      url(\"./fonts/metropolis-regular-webfont.woff2\") format(\"woff2\"),\n      url(\"./fonts/metropolis-regular-webfont.woff\") format(\"woff\");\n    font-style: normal;\n    font-weight: normal;\n  }\n  @font-face {\n    font-family: \"Metropolis\";\n    src:\n      url(\"./fonts/metropolis-bold-webfont.woff2\") format(\"woff2\"),\n      url(\"./fonts/metropolis-bold-webfont.woff\") format(\"woff\");\n    font-weight: 500;\n    font-style: normal;\n  }\n  @font-face {\n    font-family: \"Metropolis\";\n    src:\n      url(\"./fonts/metropolis-extrabold-webfont.woff2\") format(\"woff2\"),\n      url(\"./fonts/metropolis-extrabold-webfont.woff\") format(\"woff\");\n    font-weight: 600;\n    font-style: normal;\n  }\n  /* open-sans-regular - latin */\n  @font-face {\n    font-family: \"Open Sans\";\n    font-style: normal;\n    font-weight: 400;\n    src: url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-regular.svg#OpenSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n  /* open-sans-italic - latin */\n  @font-face {\n    font-family: \"Open Sans\";\n    font-style: italic;\n    font-weight: 400;\n    src: url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-italic.svg#OpenSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n  /* open-sans-600 - latin */\n  @font-face {\n    font-family: \"Open Sans\";\n    font-style: normal;\n    font-weight: 600;\n    src: url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-600.svg#OpenSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n  /* open-sans-700 - latin */\n  @font-face {\n    font-family: \"Open Sans\";\n    font-style: normal;\n    font-weight: 700;\n    src: url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/open-sans-v17-latin/open-sans-v17-latin-700.svg#OpenSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n  /* work-sans-regular - latin */\n  @font-face {\n    font-family: \"Work Sans\";\n    font-style: normal;\n    font-weight: 400;\n    src: url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-regular.svg#WorkSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n  /* work-sans-700 - latin */\n  @font-face {\n    font-family: \"Work Sans\";\n    font-style: normal;\n    font-weight: 700;\n    src: url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.eot\"); /* IE9 Compat Modes */\n    src:\n      url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.eot?#iefix\")\n        format(\"embedded-opentype\"),\n      /* IE6-IE8 */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.woff2\")\n        format(\"woff2\"),\n      /* Super Modern Browsers */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.woff\")\n        format(\"woff\"),\n      /* Modern Browsers */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.ttf\")\n        format(\"truetype\"),\n      /* Safari, Android, iOS */\n        url(\"./fonts/work-sans-v5-latin/work-sans-v5-latin-700.svg#WorkSans\")\n        format(\"svg\"); /* Legacy iOS */\n  }\n}\n@layer base {\n  html {\n    @apply font-open-sans;\n  }\n\n  html,\n  h1,\n  h2,\n  h3,\n  h4,\n  h5,\n  strong {\n    @apply text-spr-black;\n  }\n  h1 {\n    @apply font-open-sans text-2xl;\n  }\n\n  p {\n    @apply text-spr-gray-dark;\n  }\n}\n"
  },
  {
    "path": "frontend/src/graphql-types.txt",
    "content": "import * as Apollo from \"@apollo/client\";\nimport { gql } from \"@apollo/client\";\n\nexport type Maybe<T> = T | null;\nexport type Exact<T extends { [key: string]: unknown }> = {\n  [K in keyof T]: T[K];\n};\nexport type MakeOptional<T, K extends keyof T> = Omit<T, K> & {\n  [SubKey in K]?: Maybe<T[SubKey]>;\n};\nexport type MakeMaybe<T, K extends keyof T> = Omit<T, K> & {\n  [SubKey in K]: Maybe<T[SubKey]>;\n};\n\n/** All built-in and custom scalars, mapped to their actual values */\nexport interface Scalars {\n  ID: string;\n  String: string;\n  Boolean: boolean;\n  Int: number;\n  Float: number;\n  Date: any;\n}\n\nexport interface OwnerFilter {\n  firstName?: Maybe<Scalars[\"String\"]>;\n  lastName?: Maybe<Scalars[\"String\"]>;\n  address?: Maybe<Scalars[\"String\"]>;\n  city?: Maybe<Scalars[\"String\"]>;\n  telephone?: Maybe<Scalars[\"String\"]>;\n}\n\nexport enum OrderType {\n  Asc = \"ASC\",\n  Desc = \"DESC\",\n}\n\nexport enum OrderField {\n  Id = \"id\",\n  FirstName = \"firstName\",\n  LastName = \"lastName\",\n  Address = \"address\",\n  City = \"city\",\n  Telephone = \"telephone\",\n}\n\nexport interface OwnerOrder {\n  field: OrderField;\n  order?: Maybe<OrderType>;\n}\n\nexport interface AddPetInput {\n  ownerId: Scalars[\"Int\"];\n  name: Scalars[\"String\"];\n  birthDate: Scalars[\"Date\"];\n  typeId: Scalars[\"Int\"];\n}\n\nexport interface UpdatePetInput {\n  petId: Scalars[\"Int\"];\n  name?: Maybe<Scalars[\"String\"]>;\n  birthDate?: Maybe<Scalars[\"Date\"]>;\n  typeId?: Maybe<Scalars[\"Int\"]>;\n}\n\nexport interface AddOwnerInput {\n  firstName: Scalars[\"String\"];\n  lastName: Scalars[\"String\"];\n  address: Scalars[\"String\"];\n  city: Scalars[\"String\"];\n  telephone: Scalars[\"String\"];\n}\n\nexport interface UpdateOwnerInput {\n  ownerId: Scalars[\"Int\"];\n  firstName?: Maybe<Scalars[\"String\"]>;\n  lastName?: Maybe<Scalars[\"String\"]>;\n  address?: Maybe<Scalars[\"String\"]>;\n  city?: Maybe<Scalars[\"String\"]>;\n  telephone?: Maybe<Scalars[\"String\"]>;\n}\n\nexport interface AddVetInput {\n  firstName: Scalars[\"String\"];\n  lastName: Scalars[\"String\"];\n  specialtyIds: Array<Scalars[\"Int\"]>;\n}\n\nexport interface AddVisitInput {\n  petId: Scalars[\"Int\"];\n  description: Scalars[\"String\"];\n  date: Scalars[\"Date\"];\n  vetId?: Maybe<Scalars[\"Int\"]>;\n}\n\nexport interface AddSpecialtyInput {\n  name: Scalars[\"String\"];\n}\n\nexport interface UpdateSpecialtyInput {\n  specialtyId: Scalars[\"Int\"];\n  name: Scalars[\"String\"];\n}\n\nexport interface RemoveSpecialtyInput {\n  specialtyId: Scalars[\"Int\"];\n}\n\nexport type MeQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type MeQuery = { me: { username: string; fullname: string } };\n\nexport type AddVisitMutationVariables = Exact<{\n  input: AddVisitInput;\n}>;\n\nexport type AddVisitMutation = {\n  addVisit: { visit: { date: any; description: string; id: number } };\n};\n\nexport type AllVetNamesQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type AllVetNamesQuery = {\n  vets: Array<{ id: number; firstName: string; lastName: string }>;\n};\n\nexport type FindOwnerByLastNameQueryVariables = Exact<{\n  page: Scalars[\"Int\"];\n  lastName?: Maybe<Scalars[\"String\"]>;\n}>;\n\nexport type FindOwnerByLastNameQuery = {\n  owners: {\n    pageInfo: {\n      hasNext: boolean;\n      hasPrev: boolean;\n      nextPage?: Maybe<number>;\n      prevPage?: Maybe<number>;\n      totalPages: number;\n      currentPage: number;\n      ownersCount: number;\n    };\n    owners: Array<\n      { pets: Array<{ id: number; name: string }> } & OwnerFieldsFragment\n    >;\n  };\n};\n\nexport type FindOwnerWithPetsAndVisitsQueryVariables = Exact<{\n  ownerId: Scalars[\"Int\"];\n}>;\n\nexport type FindOwnerWithPetsAndVisitsQuery = {\n  owner: {\n    pets: Array<{\n      id: number;\n      name: string;\n      birthDate: any;\n      type: { id: number; name: string };\n      visits: {\n        visits: Array<{\n          date: any;\n          description: string;\n          id: number;\n          treatingVet?: Maybe<{\n            id: number;\n            firstName: string;\n            lastName: string;\n          }>;\n        }>;\n      };\n    }>;\n  } & OwnerFieldsFragment;\n};\n\nexport type PetVisitsFragment = {\n  id: number;\n  visitConnection: { visits: Array<{ id: number }> };\n};\n\nexport type OwnerFieldsFragment = {\n  id: number;\n  firstName: string;\n  lastName: string;\n  address: string;\n  city: string;\n  telephone: string;\n};\n\nexport type AddVetMutationVariables = Exact<{\n  input: AddVetInput;\n}>;\n\nexport type AddVetMutation = {\n  result:\n    | {\n        vet?: Maybe<{\n          id: number;\n          firstName: string;\n          lastName: string;\n          specialties: Array<{ id: number; name: string }>;\n        }>;\n      }\n    | { error: string };\n};\n\nexport type AllSpecialtiesQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type AllSpecialtiesQuery = {\n  specialties: Array<{ id: number; name: string }>;\n};\n\nexport type AllVetsQueryVariables = Exact<{ [key: string]: never }>;\n\nexport type AllVetsQuery = {\n  vets: Array<{\n    id: number;\n    firstName: string;\n    lastName: string;\n    specialties: Array<{ id: number; name: string }>;\n  }>;\n};\n\nexport type VetAndVisitsQueryVariables = Exact<{\n  vetId: Scalars[\"Int\"];\n}>;\n\nexport type VetAndVisitsQuery = {\n  vet?: Maybe<{\n    id: number;\n    firstName: string;\n    lastName: string;\n    visits: {\n      visits: Array<{\n        date: any;\n        description: string;\n        pet: {\n          id: number;\n          name: string;\n          owner: { id: number; lastName: string; firstName: string };\n        };\n      }>;\n    };\n  }>;\n};\n\nexport const PetVisitsFragmentDoc = gql`\n  fragment PetVisits on Pet {\n    id\n    visitConnection: visits {\n      visits {\n        id\n      }\n    }\n  }\n`;\nexport const OwnerFieldsFragmentDoc = gql`\n  fragment OwnerFields on Owner {\n    id\n    firstName\n    lastName\n    address\n    city\n    telephone\n  }\n`;\nexport const MeDocument = gql`\n  query Me {\n    me {\n      username\n      fullname\n    }\n  }\n`;\n\n/**\n * __useMeQuery__\n *\n * To run a query within a React component, call `useMeQuery` and pass it any options that fit your needs.\n * When your component renders, `useMeQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useMeQuery({\n *   variables: {\n *   },\n * });\n */\nexport function useMeQuery(\n  baseOptions?: Apollo.QueryHookOptions<MeQuery, MeQueryVariables>,\n) {\n  return Apollo.useQuery<MeQuery, MeQueryVariables>(MeDocument, baseOptions);\n}\n\nexport function useMeLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<MeQuery, MeQueryVariables>,\n) {\n  return Apollo.useLazyQuery<MeQuery, MeQueryVariables>(\n    MeDocument,\n    baseOptions,\n  );\n}\n\nexport type MeQueryHookResult = ReturnType<typeof useMeQuery>;\nexport type MeLazyQueryHookResult = ReturnType<typeof useMeLazyQuery>;\nexport type MeQueryResult = Apollo.QueryResult<MeQuery, MeQueryVariables>;\nexport const AddVisitDocument = gql`\n  mutation AddVisit($input: AddVisitInput!) {\n    addVisit(input: $input) {\n      visit {\n        date\n        description\n        id\n      }\n    }\n  }\n`;\nexport type AddVisitMutationFn = Apollo.MutationFunction<\n  AddVisitMutation,\n  AddVisitMutationVariables\n>;\n\n/**\n * __useAddVisitMutation__\n *\n * To run a mutation, you first call `useAddVisitMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddVisitMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addVisitMutation, { data, loading, error }] = useAddVisitMutation({\n *   variables: {\n *      input: // value for 'input'\n *   },\n * });\n */\nexport function useAddVisitMutation(\n  baseOptions?: Apollo.MutationHookOptions<\n    AddVisitMutation,\n    AddVisitMutationVariables\n  >,\n) {\n  return Apollo.useMutation<AddVisitMutation, AddVisitMutationVariables>(\n    AddVisitDocument,\n    baseOptions,\n  );\n}\n\nexport type AddVisitMutationHookResult = ReturnType<typeof useAddVisitMutation>;\nexport type AddVisitMutationResult = Apollo.MutationResult<AddVisitMutation>;\nexport type AddVisitMutationOptions = Apollo.BaseMutationOptions<\n  AddVisitMutation,\n  AddVisitMutationVariables\n>;\nexport const AllVetNamesDocument = gql`\n  query AllVetNames {\n    vets {\n      id\n      firstName\n      lastName\n    }\n  }\n`;\n\n/**\n * __useAllVetNamesQuery__\n *\n * To run a query within a React component, call `useAllVetNamesQuery` and pass it any options that fit your needs.\n * When your component renders, `useAllVetNamesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useAllVetNamesQuery({\n *   variables: {\n *   },\n * });\n */\nexport function useAllVetNamesQuery(\n  baseOptions?: Apollo.QueryHookOptions<\n    AllVetNamesQuery,\n    AllVetNamesQueryVariables\n  >,\n) {\n  return Apollo.useQuery<AllVetNamesQuery, AllVetNamesQueryVariables>(\n    AllVetNamesDocument,\n    baseOptions,\n  );\n}\n\nexport function useAllVetNamesLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    AllVetNamesQuery,\n    AllVetNamesQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<AllVetNamesQuery, AllVetNamesQueryVariables>(\n    AllVetNamesDocument,\n    baseOptions,\n  );\n}\n\nexport type AllVetNamesQueryHookResult = ReturnType<typeof useAllVetNamesQuery>;\nexport type AllVetNamesLazyQueryHookResult = ReturnType<\n  typeof useAllVetNamesLazyQuery\n>;\nexport type AllVetNamesQueryResult = Apollo.QueryResult<\n  AllVetNamesQuery,\n  AllVetNamesQueryVariables\n>;\nexport const FindOwnerByLastNameDocument = gql`\n  query FindOwnerByLastName($page: Int!, $lastName: String) {\n    owners(\n      page: $page\n      size: 10\n      filter: { lastName: $lastName }\n      orders: [{ field: lastName }, { field: firstName }]\n    ) {\n      pageInfo {\n        hasNext\n        hasPrev\n        nextPage\n        prevPage\n        totalPages\n        currentPage: pageNumber\n        ownersCount: totalCount\n      }\n      owners {\n        ...OwnerFields\n        pets {\n          id\n          name\n        }\n      }\n    }\n  }\n  ${OwnerFieldsFragmentDoc}\n`;\n\n/**\n * __useFindOwnerByLastNameQuery__\n *\n * To run a query within a React component, call `useFindOwnerByLastNameQuery` and pass it any options that fit your needs.\n * When your component renders, `useFindOwnerByLastNameQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useFindOwnerByLastNameQuery({\n *   variables: {\n *      page: // value for 'page'\n *      lastName: // value for 'lastName'\n *   },\n * });\n */\nexport function useFindOwnerByLastNameQuery(\n  baseOptions: Apollo.QueryHookOptions<\n    FindOwnerByLastNameQuery,\n    FindOwnerByLastNameQueryVariables\n  >,\n) {\n  return Apollo.useQuery<\n    FindOwnerByLastNameQuery,\n    FindOwnerByLastNameQueryVariables\n  >(FindOwnerByLastNameDocument, baseOptions);\n}\n\nexport function useFindOwnerByLastNameLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    FindOwnerByLastNameQuery,\n    FindOwnerByLastNameQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<\n    FindOwnerByLastNameQuery,\n    FindOwnerByLastNameQueryVariables\n  >(FindOwnerByLastNameDocument, baseOptions);\n}\n\nexport type FindOwnerByLastNameQueryHookResult = ReturnType<\n  typeof useFindOwnerByLastNameQuery\n>;\nexport type FindOwnerByLastNameLazyQueryHookResult = ReturnType<\n  typeof useFindOwnerByLastNameLazyQuery\n>;\nexport type FindOwnerByLastNameQueryResult = Apollo.QueryResult<\n  FindOwnerByLastNameQuery,\n  FindOwnerByLastNameQueryVariables\n>;\nexport const FindOwnerWithPetsAndVisitsDocument = gql`\n  query FindOwnerWithPetsAndVisits($ownerId: Int!) {\n    owner(id: $ownerId) {\n      ...OwnerFields\n      pets {\n        id\n        name\n        birthDate\n        type {\n          id\n          name\n        }\n        visits {\n          visits {\n            date\n            description\n            id\n            treatingVet {\n              id\n              firstName\n              lastName\n            }\n          }\n        }\n      }\n    }\n  }\n  ${OwnerFieldsFragmentDoc}\n`;\n\n/**\n * __useFindOwnerWithPetsAndVisitsQuery__\n *\n * To run a query within a React component, call `useFindOwnerWithPetsAndVisitsQuery` and pass it any options that fit your needs.\n * When your component renders, `useFindOwnerWithPetsAndVisitsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useFindOwnerWithPetsAndVisitsQuery({\n *   variables: {\n *      ownerId: // value for 'ownerId'\n *   },\n * });\n */\nexport function useFindOwnerWithPetsAndVisitsQuery(\n  baseOptions: Apollo.QueryHookOptions<\n    FindOwnerWithPetsAndVisitsQuery,\n    FindOwnerWithPetsAndVisitsQueryVariables\n  >,\n) {\n  return Apollo.useQuery<\n    FindOwnerWithPetsAndVisitsQuery,\n    FindOwnerWithPetsAndVisitsQueryVariables\n  >(FindOwnerWithPetsAndVisitsDocument, baseOptions);\n}\n\nexport function useFindOwnerWithPetsAndVisitsLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    FindOwnerWithPetsAndVisitsQuery,\n    FindOwnerWithPetsAndVisitsQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<\n    FindOwnerWithPetsAndVisitsQuery,\n    FindOwnerWithPetsAndVisitsQueryVariables\n  >(FindOwnerWithPetsAndVisitsDocument, baseOptions);\n}\n\nexport type FindOwnerWithPetsAndVisitsQueryHookResult = ReturnType<\n  typeof useFindOwnerWithPetsAndVisitsQuery\n>;\nexport type FindOwnerWithPetsAndVisitsLazyQueryHookResult = ReturnType<\n  typeof useFindOwnerWithPetsAndVisitsLazyQuery\n>;\nexport type FindOwnerWithPetsAndVisitsQueryResult = Apollo.QueryResult<\n  FindOwnerWithPetsAndVisitsQuery,\n  FindOwnerWithPetsAndVisitsQueryVariables\n>;\nexport const AddVetDocument = gql`\n  mutation AddVet($input: AddVetInput!) {\n    result: addVet(input: $input) {\n      ... on AddVetSuccessPayload {\n        vet {\n          id\n          firstName\n          lastName\n          specialties {\n            id\n            name\n          }\n        }\n      }\n      ... on AddVetErrorPayload {\n        error\n      }\n    }\n  }\n`;\nexport type AddVetMutationFn = Apollo.MutationFunction<\n  AddVetMutation,\n  AddVetMutationVariables\n>;\n\n/**\n * __useAddVetMutation__\n *\n * To run a mutation, you first call `useAddVetMutation` within a React component and pass it any options that fit your needs.\n * When your component renders, `useAddVetMutation` returns a tuple that includes:\n * - A mutate function that you can call at any time to execute the mutation\n * - An object with fields that represent the current status of the mutation's execution\n *\n * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;\n *\n * @example\n * const [addVetMutation, { data, loading, error }] = useAddVetMutation({\n *   variables: {\n *      input: // value for 'input'\n *   },\n * });\n */\nexport function useAddVetMutation(\n  baseOptions?: Apollo.MutationHookOptions<\n    AddVetMutation,\n    AddVetMutationVariables\n  >,\n) {\n  return Apollo.useMutation<AddVetMutation, AddVetMutationVariables>(\n    AddVetDocument,\n    baseOptions,\n  );\n}\n\nexport type AddVetMutationHookResult = ReturnType<typeof useAddVetMutation>;\nexport type AddVetMutationResult = Apollo.MutationResult<AddVetMutation>;\nexport type AddVetMutationOptions = Apollo.BaseMutationOptions<\n  AddVetMutation,\n  AddVetMutationVariables\n>;\nexport const AllSpecialtiesDocument = gql`\n  query AllSpecialties {\n    specialties {\n      id\n      name\n    }\n  }\n`;\n\n/**\n * __useAllSpecialtiesQuery__\n *\n * To run a query within a React component, call `useAllSpecialtiesQuery` and pass it any options that fit your needs.\n * When your component renders, `useAllSpecialtiesQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useAllSpecialtiesQuery({\n *   variables: {\n *   },\n * });\n */\nexport function useAllSpecialtiesQuery(\n  baseOptions?: Apollo.QueryHookOptions<\n    AllSpecialtiesQuery,\n    AllSpecialtiesQueryVariables\n  >,\n) {\n  return Apollo.useQuery<AllSpecialtiesQuery, AllSpecialtiesQueryVariables>(\n    AllSpecialtiesDocument,\n    baseOptions,\n  );\n}\n\nexport function useAllSpecialtiesLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    AllSpecialtiesQuery,\n    AllSpecialtiesQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<AllSpecialtiesQuery, AllSpecialtiesQueryVariables>(\n    AllSpecialtiesDocument,\n    baseOptions,\n  );\n}\n\nexport type AllSpecialtiesQueryHookResult = ReturnType<\n  typeof useAllSpecialtiesQuery\n>;\nexport type AllSpecialtiesLazyQueryHookResult = ReturnType<\n  typeof useAllSpecialtiesLazyQuery\n>;\nexport type AllSpecialtiesQueryResult = Apollo.QueryResult<\n  AllSpecialtiesQuery,\n  AllSpecialtiesQueryVariables\n>;\nexport const AllVetsDocument = gql`\n  query AllVets {\n    vets {\n      id\n      firstName\n      lastName\n      specialties {\n        id\n        name\n      }\n    }\n  }\n`;\n\n/**\n * __useAllVetsQuery__\n *\n * To run a query within a React component, call `useAllVetsQuery` and pass it any options that fit your needs.\n * When your component renders, `useAllVetsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useAllVetsQuery({\n *   variables: {\n *   },\n * });\n */\nexport function useAllVetsQuery(\n  baseOptions?: Apollo.QueryHookOptions<AllVetsQuery, AllVetsQueryVariables>,\n) {\n  return Apollo.useQuery<AllVetsQuery, AllVetsQueryVariables>(\n    AllVetsDocument,\n    baseOptions,\n  );\n}\n\nexport function useAllVetsLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    AllVetsQuery,\n    AllVetsQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<AllVetsQuery, AllVetsQueryVariables>(\n    AllVetsDocument,\n    baseOptions,\n  );\n}\n\nexport type AllVetsQueryHookResult = ReturnType<typeof useAllVetsQuery>;\nexport type AllVetsLazyQueryHookResult = ReturnType<typeof useAllVetsLazyQuery>;\nexport type AllVetsQueryResult = Apollo.QueryResult<\n  AllVetsQuery,\n  AllVetsQueryVariables\n>;\nexport const VetAndVisitsDocument = gql`\n  query VetAndVisits($vetId: Int!) {\n    vet(id: $vetId) {\n      id\n      firstName\n      lastName\n      visits {\n        visits {\n          date\n          description\n          pet {\n            id\n            name\n            owner {\n              id\n              lastName\n              firstName\n            }\n          }\n        }\n      }\n    }\n  }\n`;\n\n/**\n * __useVetAndVisitsQuery__\n *\n * To run a query within a React component, call `useVetAndVisitsQuery` and pass it any options that fit your needs.\n * When your component renders, `useVetAndVisitsQuery` returns an object from Apollo Client that contains loading, error, and data properties\n * you can use to render your UI.\n *\n * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;\n *\n * @example\n * const { data, loading, error } = useVetAndVisitsQuery({\n *   variables: {\n *      vetId: // value for 'vetId'\n *   },\n * });\n */\nexport function useVetAndVisitsQuery(\n  baseOptions: Apollo.QueryHookOptions<\n    VetAndVisitsQuery,\n    VetAndVisitsQueryVariables\n  >,\n) {\n  return Apollo.useQuery<VetAndVisitsQuery, VetAndVisitsQueryVariables>(\n    VetAndVisitsDocument,\n    baseOptions,\n  );\n}\n\nexport function useVetAndVisitsLazyQuery(\n  baseOptions?: Apollo.LazyQueryHookOptions<\n    VetAndVisitsQuery,\n    VetAndVisitsQueryVariables\n  >,\n) {\n  return Apollo.useLazyQuery<VetAndVisitsQuery, VetAndVisitsQueryVariables>(\n    VetAndVisitsDocument,\n    baseOptions,\n  );\n}\n\nexport type VetAndVisitsQueryHookResult = ReturnType<\n  typeof useVetAndVisitsQuery\n>;\nexport type VetAndVisitsLazyQueryHookResult = ReturnType<\n  typeof useVetAndVisitsLazyQuery\n>;\nexport type VetAndVisitsQueryResult = Apollo.QueryResult<\n  VetAndVisitsQuery,\n  VetAndVisitsQueryVariables\n>;\n"
  },
  {
    "path": "frontend/src/index.css",
    "content": "@import \"./fonts.css\";\n\n@tailwind base;\n@tailwind components;\n@tailwind utilities;\n"
  },
  {
    "path": "frontend/src/login/AuthTokenProvider.tsx",
    "content": "import * as React from \"react\";\n\ntype IAuthContext = {\n  token: string | null;\n  updateToken(token: string | null): void;\n};\n\nconst AuthContext = React.createContext<IAuthContext>({\n  token: null,\n  updateToken() {},\n});\n\ntype AuthContextProviderProps = {\n  children: React.ReactNode;\n};\n\nexport function AuthTokenProvider({ children }: AuthContextProviderProps) {\n  const [token, setToken] = React.useState<string | null | undefined>(\n    undefined,\n  );\n\n  React.useEffect(() => {\n    setToken(localStorage.getItem(\"petclinic.token\") || null);\n  }, []);\n\n  function updateToken(newToken: string | null) {\n    if (!newToken) {\n      localStorage.removeItem(\"petclinic.token\");\n    } else {\n      localStorage.setItem(\"petclinic.token\", newToken);\n    }\n\n    setToken(newToken);\n  }\n\n  return token === undefined ? null : (\n    <AuthContext.Provider value={{ token, updateToken }}>\n      {children}\n    </AuthContext.Provider>\n  );\n}\n\nexport function useAuthToken() {\n  const { token, updateToken } = React.useContext(AuthContext);\n  return [token, updateToken] as const;\n}\n"
  },
  {
    "path": "frontend/src/login/LoginPage.tsx",
    "content": "import * as React from \"react\";\nimport { useForm } from \"react-hook-form\";\nimport { useAuthToken } from \"./AuthTokenProvider\";\nimport Button from \"@/components/Button\";\nimport ButtonBar from \"@/components/ButtonBar\";\nimport Card from \"@/components/Card\";\nimport Heading from \"@/components/Heading\";\nimport Input from \"@/components/Input\";\nimport Label from \"@/components/Label\";\nimport { AnonymousPageLayout } from \"@/components/PageLayout\";\nimport Table from \"@/components/Table\";\nimport { loginApiUrl } from \"@/urls\";\nimport { Section } from \"@/components/Section.tsx\";\n\ntype LoginFormData = { username: string; password: string };\ntype LoginRequestState = { running?: boolean; error?: string };\n\nexport default function LoginPage() {\n  const [, updateToken] = useAuthToken();\n  const {\n    register,\n    handleSubmit,\n    formState: { errors },\n  } = useForm<LoginFormData>({});\n  const [loginRequestState, setLoginRequestState] =\n    React.useState<LoginRequestState>({ running: false });\n\n  async function handleLogin({ username, password }: LoginFormData) {\n    setLoginRequestState({\n      running: true,\n    });\n\n    try {\n      const response = await fetch(loginApiUrl, {\n        method: \"POST\",\n        headers: {\n          \"Content-Type\": \"application/json\",\n        },\n        body: JSON.stringify({ username, password }),\n      });\n      if (response.status === 401) {\n        throw new Error(\"Could not login. Please verify username/password.\");\n      }\n      if (!response.ok) {\n        throw new Error(\"Could not login\");\n      }\n      const result = await response.json();\n      if (!result.token) {\n        throw new Error(\"Could not login. Please verify username/password.\");\n      }\n\n      console.log(\"TOKEN RECEIVED\", result.token);\n      updateToken(result.token);\n    } catch (err) {\n      console.error(\"LOGIN FAILED ================ >>>>>>>>>>>>>>>>> \", err);\n      const msg =\n        err && typeof err === \"object\" && \"message\" in err\n          ? String(err.message)\n          : \"unknown error\";\n      setLoginRequestState({ error: msg });\n    }\n  }\n\n  return (\n    <AnonymousPageLayout title=\"Login to PetClinic!\">\n      <Section narrow>\n        <Heading>Login</Heading>\n        <Input\n          label=\"Username\"\n          {...register(\"username\", { required: true })}\n          error={errors.username && \"Please fill in username\"}\n          disabled={loginRequestState.running}\n        />\n        <Input\n          label=\"Password\"\n          {...register(\"password\", { required: true })}\n          type=\"password\"\n          error={errors.password && \"Please fill in password\"}\n          disabled={loginRequestState.running}\n        />\n        <ButtonBar>\n          <Button\n            disabled={loginRequestState.running}\n            onClick={handleSubmit(handleLogin)}\n          >\n            Login\n          </Button>\n        </ButtonBar>\n        {loginRequestState.error && <Label>{loginRequestState.error}</Label>}\n      </Section>\n      <Card fullWidth>\n        <div className=\"flex w-full flex-col\">\n          <Heading level=\"2\">Users</Heading>\n          <p>Choose one of the following users for login:</p>\n          <Table\n            labels={[\"Username\", \"Password\", \"Role\"]}\n            values={[\n              [\"susi\", \"susi\", \"ROLE_MANAGER\"],\n              [\"joe\", \"joe\", \"ROLE_USER\"],\n            ]}\n          />\n        </div>\n      </Card>\n    </AnonymousPageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/login/MeQuery.graphql",
    "content": "query Me {\n  me {\n    username\n    fullname\n  }\n}\n"
  },
  {
    "path": "frontend/src/main.tsx",
    "content": "import * as ReactDOM from \"react-dom/client\";\nimport \"./index.css\";\nimport { ApolloProvider } from \"@apollo/client\";\nimport { AuthTokenProvider } from \"./login/AuthTokenProvider\";\nimport { BrowserRouter } from \"react-router-dom\";\nimport App from \"./App.tsx\";\nimport { createGraphqlClient } from \"@/create-graphql-client.ts\";\n\nconst client = createGraphqlClient();\n\nReactDOM.createRoot(document.getElementById(\"root\")!).render(\n  <ApolloProvider client={client}>\n    <BrowserRouter>\n      <AuthTokenProvider>\n        <App />\n      </AuthTokenProvider>\n    </BrowserRouter>\n  </ApolloProvider>,\n);\n"
  },
  {
    "path": "frontend/src/owners/AddVisit.graphql",
    "content": "mutation AddVisit($input: AddVisitInput!) {\n  addVisit(input: $input) {\n    visit {\n      ...DefaultVisit\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/owners/AllVetNames.graphql",
    "content": "query AllVetNames {\n  vets {\n    edges {\n      node {\n        id\n        firstName\n        lastName\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/owners/FindOwnerByLastName.graphql",
    "content": "query FindOwnerByLastName(\n  $after: String\n  $lastName: String\n  $dir: OrderDirection\n) {\n  owners(\n    first: 5\n    after: $after\n    filter: { lastName: $lastName }\n    order: [{ field: lastName, direction: $dir }, { field: firstName }]\n  ) {\n    edges {\n      node {\n        ...OwnerFields\n        pets {\n          id\n          name\n        }\n      }\n    }\n    pageInfo {\n      hasNextPage\n      endCursor\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/owners/FindOwnerWithPetsAndVisits.graphql",
    "content": "query FindOwnerWithPetsAndVisits($ownerId: Int!) {\n  owner(id: $ownerId) {\n    ...OwnerFields\n    pets {\n      id\n      name\n      birthDate\n      type {\n        id\n        name\n      }\n\n      visits {\n        visits {\n          ...VisitWithVet\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/owners/NewVisitForm.tsx",
    "content": "import {\n  useAddVisitMutation,\n  useAllVetNamesQuery,\n} from \"@/generated/graphql-types.ts\";\nimport dayjs from \"dayjs\";\nimport { useForm } from \"react-hook-form\";\nimport Heading from \"@/components/Heading.tsx\";\nimport Input from \"@/components/Input.tsx\";\nimport Label from \"@/components/Label.tsx\";\nimport Select from \"@/components/Select.tsx\";\nimport ButtonBar from \"@/components/ButtonBar.tsx\";\nimport Button from \"@/components/Button.tsx\";\nimport { Section } from \"@/components/Section.tsx\";\nimport { filterNull } from \"@/utils.ts\";\n\ntype VisitFormData = {\n  description: string;\n  date: Date;\n  vet?: string;\n};\n\nconst emptyVetOption = {\n  value: -1,\n  label: \"\",\n};\n\ntype NewVisitFormProps = {\n  onFinish(): void;\n  petId: number;\n  petName: string;\n};\n\nexport default function NewVisitForm({\n  onFinish,\n  petId,\n  petName,\n}: NewVisitFormProps) {\n  const {\n    loading: vetsLoading,\n    data: vetsData,\n    error: vetsError,\n  } = useAllVetNamesQuery();\n  const [addVisit, { called, loading, error }] = useAddVisitMutation();\n  const {\n    register,\n    handleSubmit,\n    formState: { errors },\n  } = useForm<VisitFormData>();\n\n  const vetOptions = vetsData\n    ? [\n        emptyVetOption,\n        ...vetsData.vets.edges\n          .filter(filterNull)\n          .map((v) => v.node)\n          .map((vet) => ({\n            value: vet.id,\n            label: `${vet.firstName} ${vet.lastName}`,\n          })),\n      ]\n    : null;\n\n  async function handleAddClick({ description, date, vet }: VisitFormData) {\n    const petclinicDate = dayjs(date).format(\"YYYY/MM/DD\");\n    const vetId = vet ? parseInt(vet) : emptyVetOption.value;\n    const result = await addVisit({\n      variables: {\n        input: {\n          petId,\n          description,\n          date: petclinicDate,\n          vetId: vetId === emptyVetOption.value ? null : vetId,\n        },\n      },\n    });\n    if (result.data) {\n      onFinish();\n    }\n  }\n\n  return (\n    <Section aria-label={`Add visit for pet ${petName}`}>\n      <Heading level=\"3\">Add Visit</Heading>\n\n      <Input\n        type=\"date\"\n        {...register(\"date\", { required: true, valueAsDate: true })}\n        label=\"Date\"\n        error={errors.date && \"Please enter a valid date\"}\n      />\n      <Input\n        type=\"text\"\n        {...register(\"description\", { required: true })}\n        label=\"Description\"\n        error={errors.description && \"Please fill in a description\"}\n      />\n      {vetsError && (\n        <Label>\n          Could not load Vets. You can create a new Visit but cannot assign it\n          to a Vet yet.\n        </Label>\n      )}\n      {vetsLoading && <Label type=\"info\">Loading Vets...</Label>}\n      {vetOptions && (\n        <Select\n          {...register(\"vet\")}\n          label=\"Vet (optional)\"\n          options={vetOptions}\n          defaultValue={emptyVetOption.value}\n        />\n      )}\n      <ButtonBar align=\"left\">\n        {called && loading ? (\n          <Button disabled>Saving...</Button>\n        ) : (\n          <Button onClick={handleSubmit(handleAddClick)}>Save</Button>\n        )}\n        <Button type=\"secondary\" onClick={onFinish}>\n          Cancel\n        </Button>\n      </ButtonBar>\n      {error && <Label>Saving failed</Label>}\n    </Section>\n  );\n}\n"
  },
  {
    "path": "frontend/src/owners/NewVisitPanel.tsx",
    "content": "import * as React from \"react\";\nimport NewVisitForm from \"./NewVisitForm\";\nimport Button from \"@/components/Button\";\n\ntype NewVisitPanelProps = { petId: number; petName: string };\n\nexport default function NewVisitPanel({ petId, petName }: NewVisitPanelProps) {\n  const [formOpen, setFormOpen] = React.useState(false);\n\n  if (!formOpen) {\n    return (\n      <Button\n        onClick={() => setFormOpen(true)}\n        aria-label={`Add visit for pet ${petName}`}\n      >\n        New Visit\n      </Button>\n    );\n  }\n\n  return (\n    <NewVisitForm\n      onFinish={() => setFormOpen(false)}\n      petId={petId}\n      petName={petName}\n    />\n  );\n}\n"
  },
  {
    "path": "frontend/src/owners/OnNewVisit.graphql",
    "content": "subscription OnNewVisit {\n  newVisit: onNewVisit {\n    ...VisitWithVet\n    pet {\n      id\n      name\n      owner {\n        id\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/owners/OwnerFields.graphql",
    "content": "fragment OwnerFields on Owner {\n  id\n  firstName\n  lastName\n  address\n  city\n  telephone\n}\n"
  },
  {
    "path": "frontend/src/owners/OwnerPage.tsx",
    "content": "import { useParams } from \"react-router-dom\";\nimport NewVisitPanel from \"./NewVisitPanel\";\nimport Button from \"@/components/Button\";\nimport Heading from \"@/components/Heading\";\nimport PageLayout from \"@/components/PageLayout\";\nimport Table from \"@/components/Table\";\nimport {\n  OnNewVisitDocument,\n  OnNewVisitSubscription,\n  useFindOwnerWithPetsAndVisitsQuery,\n} from \"@/generated/graphql-types\";\nimport { invariant } from \"@apollo/client/utilities/globals\";\nimport Link from \"@/components/Link.tsx\";\nimport { useEffect } from \"react\";\nimport { Section, SectionHeading } from \"@/components/Section.tsx\";\nimport { produce } from \"immer\";\n\nexport default function OwnerPage() {\n  const { ownerId } = useParams<{ ownerId: string }>();\n  invariant(ownerId, \"Missing param ownerId\");\n\n  const { loading, data, error, subscribeToMore } =\n    useFindOwnerWithPetsAndVisitsQuery({\n      variables: {\n        ownerId: parseInt(ownerId),\n      },\n    });\n\n  useEffect(() => {\n    subscribeToMore<OnNewVisitSubscription>({\n      document: OnNewVisitDocument,\n      updateQuery: (prev, { subscriptionData }) => {\n        const newVisit = subscriptionData.data.newVisit;\n        if (!newVisit) {\n          return prev;\n        }\n\n        console.log(\"Received newVisit\", newVisit);\n\n        if (newVisit.pet.owner.id !== parseInt(ownerId)) {\n          console.log(\n            \"new visit received for owner, ignoring: \",\n            newVisit.pet.owner.id,\n          );\n          return prev;\n        }\n\n        const petId = newVisit.pet.id;\n\n        const newOwner = produce(prev, (draft) => {\n          const pet = draft.owner.pets.find((p) => p.id === petId);\n          if (!pet) {\n            return draft;\n          }\n\n          if (pet.visits.visits.find((v) => v.id === newVisit.id)) {\n            console.log(\"visit alread add to pet\");\n            return draft;\n          }\n\n          console.log(\"Add newVisit to pet\", pet);\n\n          pet.visits.visits.push(newVisit);\n          return draft;\n        });\n\n        return newOwner;\n      },\n    });\n  }, [ownerId, subscribeToMore]);\n  //\n  // // const x = useOnNewVisitSubscription();\n  // // console.log(x.loading, x.data);\n\n  if (loading) {\n    return <PageLayout title=\"Owners\">Loading</PageLayout>;\n  } else if (error || !data) {\n    return <PageLayout title=\"Owners\">Error</PageLayout>;\n  }\n\n  return (\n    <PageLayout\n      title={`Owners - ${data.owner.firstName} ${data.owner.lastName}`}\n    >\n      <Section\n        aria-label={`Contact data ${data.owner.firstName} ${data.owner.lastName}`}\n      >\n        <Table\n          values={[\n            [\"Name\", `${data.owner.firstName} ${data.owner.lastName}`],\n            [\"Address\", data.owner.address],\n            [\"City\", data.owner.city],\n            [\"Telephone\", data.owner.telephone],\n          ]}\n        ></Table>\n      </Section>\n      <div className=\"mb-4\">\n        <Heading level=\"2\">Pets and Visits</Heading>\n      </div>\n      {data.owner.pets.map((pet) => (\n        <div key={pet.id} className=\"mb-8\">\n          <Section invert aria-label={`Visits of ${pet.name}`}>\n            <SectionHeading>\n              <Heading level=\"3\">\n                {pet.name} ({pet.type.name}, * {pet.birthDate})\n              </Heading>\n              <Button type=\"link\">Edit {pet.name}</Button>\n            </SectionHeading>\n            {pet.visits.visits.length ? (\n              <Table\n                labels={[\"Visit Date\", \"Treating vet\", \"Description\"]}\n                values={pet.visits.visits.map((visit) => [\n                  visit.date,\n                  visit.treatingVet ? (\n                    <Link to={`/vets/${visit.treatingVet.id}`}>\n                      {visit.treatingVet.firstName} {visit.treatingVet.lastName}\n                    </Link>\n                  ) : (\n                    \"\"\n                  ),\n                  visit.description,\n                ])}\n              />\n            ) : (\n              <b className=\"mb-4 block\">No visits yet</b>\n            )}\n            <NewVisitPanel petId={pet.id} petName={pet.name} />\n          </Section>\n        </div>\n      ))}\n    </PageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/owners/OwnerSearchPage.tsx",
    "content": "import { useForm } from \"react-hook-form\";\nimport Button from \"@/components/Button\";\nimport Input from \"@/components/Input\";\nimport PageLayout from \"@/components/PageLayout\";\nimport Table from \"@/components/Table\";\nimport {\n  FindOwnerByLastNameQueryVariables,\n  OrderDirection,\n  useFindOwnerByLastNameLazyQuery,\n} from \"@/generated/graphql-types\";\nimport Link from \"@/components/Link.tsx\";\nimport ButtonBar from \"@/components/ButtonBar.tsx\";\nimport { useState } from \"react\";\nimport { filterNull } from \"@/utils.ts\";\n\ntype FindOwnerFormData = { lastName: string };\n\nexport default function OwnersPage() {\n  const [\n    findOwnersByLastName,\n    { loading, data, error, called, fetchMore, refetch },\n  ] = useFindOwnerByLastNameLazyQuery();\n  const { register, handleSubmit, getValues } = useForm<FindOwnerFormData>({});\n  const [orderBy, setOrderBy] = useState<\"ASC\" | \"DESC\">(\"ASC\");\n\n  function handleFindClick() {\n    search(orderBy);\n  }\n\n  function search(orderBy: \"ASC\" | \"DESC\") {\n    const { lastName }: FindOwnerFormData = getValues();\n    console.log(\"lastname\", lastName);\n    console.log(\"orderby\", orderBy);\n    const dir = orderBy === \"ASC\" ? OrderDirection.Asc : OrderDirection.Desc;\n    const variables: FindOwnerByLastNameQueryVariables = lastName\n      ? { lastName, after: null, dir }\n      : { lastName: null, after: null, dir };\n\n    if (!called) {\n      findOwnersByLastName({ variables });\n    } else {\n      refetch(variables);\n    }\n  }\n\n  function handleOrderChange(newOrder: \"ASC\" | \"DESC\") {\n    setOrderBy(newOrder);\n    search(newOrder);\n  }\n\n  function handleFetchMore() {\n    fetchMore({\n      variables: {\n        after: data?.owners.pageInfo.endCursor,\n      },\n    });\n  }\n\n  let resultTable = null;\n  if (called && !loading && !error && data) {\n    if (data.owners.edges.length === 0) {\n      resultTable = <div className=\"mx-auto max-w-2xl\">No owners found</div>;\n    } else {\n      const values = data.owners.edges\n        .filter(filterNull)\n        .map(({ node: owner }) => [\n          <Link to={`/owners/${owner.id}`}>{owner.lastName}</Link>,\n          owner.firstName,\n          owner.address,\n          owner.city,\n          owner.telephone,\n          owner.pets.map((pet) => pet.name).join(\", \"),\n        ]);\n      resultTable = (\n        <div className=\"mt-8 border-4 border-gray-100 p-4\">\n          <Table\n            title={`Owners`}\n            actions={\n              <div>\n                <Button\n                  type=\"primary\"\n                  aria-label={\"Order owners by lastname, ascending\"}\n                  onClick={() => {\n                    handleOrderChange(\"ASC\");\n                  }}\n                  disabled={orderBy === \"ASC\"}\n                >\n                  Asc\n                </Button>\n                <Button\n                  type=\"primary\"\n                  aria-label={\"Order owners by lastname, descending\"}\n                  onClick={() => {\n                    handleOrderChange(\"DESC\");\n                  }}\n                  disabled={orderBy === \"DESC\"}\n                >\n                  Desc\n                </Button>\n              </div>\n            }\n            labels={[\n              \"Last name\",\n              \"First name\",\n              \"Address\",\n              \"City\",\n              \"Telephone\",\n              \"Pets\",\n            ]}\n            values={values}\n          />\n          <ButtonBar align={\"center\"}>\n            <Button\n              disabled={!data.owners.pageInfo.hasNextPage}\n              onClick={handleFetchMore}\n            >\n              Load more\n            </Button>\n          </ButtonBar>\n        </div>\n      );\n    }\n  }\n\n  return (\n    <PageLayout title=\"Search Owner\">\n      <div className=\"mx-auto max-w-2xl\">\n        <div className=\"flex\">\n          <Input\n            {...register(\"lastName\")}\n            label=\"Last Name\"\n            action={\n              <Button onClick={handleSubmit(handleFindClick)}>Find</Button>\n            }\n          />\n        </div>\n      </div>\n      <div className=\"mb-8\">{resultTable}</div>\n    </PageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/owners/Visit.fragment.graphql",
    "content": "fragment DefaultVisit on Visit {\n  id\n  date\n  description\n}\n"
  },
  {
    "path": "frontend/src/owners/VisitWithVet.fragment.graphql",
    "content": "fragment VisitWithVet on Visit {\n  ...DefaultVisit\n  treatingVet {\n    id\n    firstName\n    lastName\n  }\n}\n"
  },
  {
    "path": "frontend/src/urls.ts",
    "content": "const backendHost = \"\";\nexport const graphqlApiUrl = `${backendHost}/graphql`;\nexport const loginApiUrl = `${backendHost}/api/login`;\n\nfunction buildWsApiUrl() {\n  if (backendHost === \"\") {\n    const url = new URL(window.location.href);\n    return `${url.protocol}//${url.host}/graphqlws`;\n  } else {\n    return `${backendHost}/graphqlws`;\n  }\n}\n\nexport const graphqlWsApiUrl = buildWsApiUrl()\n  .replace(\"https\", \"wss\")\n  .replace(\"http\", \"ws\");\n\nconsole.log(\"USING GRAPHQL API URL\", graphqlApiUrl);\nconsole.log(\"USING GRAPHQL SUBSCRIPTION URL\", graphqlWsApiUrl);\nconsole.log(\"USING LOGIN API URL\", loginApiUrl);\n"
  },
  {
    "path": "frontend/src/use-current-user-fullname.tsx",
    "content": "import { useMeQuery } from \"./generated/graphql-types\";\n\nexport function useCurrentUser() {\n  const { loading, error, data } = useMeQuery();\n\n  if (loading || error || !data) {\n    return { username: null, fullname: null };\n  }\n\n  return {\n    fullname: data.me.fullname || null,\n    username: data.me.username || null,\n  };\n}\n"
  },
  {
    "path": "frontend/src/use-logout.ts",
    "content": "import { useApolloClient } from \"@apollo/client\";\nimport { useAuthToken } from \"./login/AuthTokenProvider\";\n\nexport function useLogout() {\n  const client = useApolloClient();\n  const [, setAuthToken] = useAuthToken();\n\n  return function logout() {\n    setAuthToken(null);\n    client.clearStore();\n  };\n}\n"
  },
  {
    "path": "frontend/src/utils.ts",
    "content": "export function filterNull<A>(a: A): a is NonNullable<A> {\n  return a !== null;\n}\n"
  },
  {
    "path": "frontend/src/vets/AddVet.graphql",
    "content": "mutation AddVet($input: AddVetInput!) {\n  result: addVet(input: $input) {\n    ... on AddVetSuccessPayload {\n      vet {\n        id\n        firstName\n        lastName\n        specialties {\n          id\n          name\n        }\n      }\n    }\n    ... on AddVetErrorPayload {\n      error\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/vets/AddVetForm.tsx",
    "content": "import Button from \"@/components/Button\";\nimport ButtonBar from \"@/components/ButtonBar\";\nimport Heading from \"@/components/Heading\";\nimport Input from \"@/components/Input\";\nimport Label from \"@/components/Label\";\nimport Select from \"@/components/Select\";\nimport {\n  useAddVetMutation,\n  useAllSpecialtiesQuery,\n} from \"@/generated/graphql-types.ts\";\nimport { useForm } from \"react-hook-form\";\nimport { Section } from \"@/components/Section.tsx\";\n\ntype AddVetFormProps = {\n  onFinish(): void;\n};\n\ntype VetFormData = {\n  firstName: string;\n  lastName: string;\n  specialtyIds: number[];\n};\n\nexport default function AddVetForm({ onFinish }: AddVetFormProps) {\n  const {\n    data: specialtiesData,\n    error: specialtiesError,\n    loading: specialtiesLoading,\n  } = useAllSpecialtiesQuery();\n  const [addVet, { called, loading, data, error }] = useAddVetMutation({\n    // Errors in Responses should be retured in 'error' (and not as rejected promise)\n    // https://www.apollographql.com/docs/react/api/react/hoc/#optionserrorpolicy\n    errorPolicy: \"all\",\n  });\n  const {\n    register,\n    handleSubmit,\n    formState: { errors },\n  } = useForm<VetFormData>();\n\n  const specialtiesOptions = specialtiesData\n    ? [\n        ...specialtiesData.specialties.map((s) => ({\n          label: s.name,\n          value: s.id,\n        })),\n        { label: \"invalid (use to see errors in response)\", value: 666 },\n      ]\n    : null;\n\n  async function handleAddClick({\n    firstName,\n    lastName,\n    specialtyIds,\n  }: VetFormData) {\n    const result = await addVet({\n      variables: {\n        input: {\n          firstName,\n          lastName,\n          specialtyIds: specialtyIds || [],\n        },\n      },\n    });\n    if (result.data && \"vet\" in result.data.result) {\n      onFinish();\n    }\n  }\n\n  const errorMsg = error\n    ? error.message\n    : data && \"error\" in data.result\n    ? `Saving failed: ${data.result.error}`\n    : null;\n\n  return (\n    <Section>\n      <Heading level=\"3\">Add Veterinary</Heading>\n\n      <Input\n        type=\"text\"\n        {...register(\"firstName\", { required: true })}\n        label=\"First name\"\n        error={errors.firstName && \"Please enter a valid first name\"}\n      />\n      <Input\n        type=\"text\"\n        {...register(\"lastName\", { required: true })}\n        label=\"Last name\"\n        error={errors.firstName && \"Please enter a valid last name\"}\n      />\n\n      {specialtiesError && (\n        <Label>\n          Could not load Vets. You can create a new Vet but cannot assign it to\n          Specialities yet.\n        </Label>\n      )}\n      {specialtiesLoading && (\n        <Label type=\"info\">Specialities are loading</Label>\n      )}\n      {specialtiesOptions && (\n        <Select\n          label=\"Specialties\"\n          multiple\n          {...register(\"specialtyIds\")}\n          options={specialtiesOptions}\n        />\n      )}\n\n      <ButtonBar align=\"left\">\n        {called && loading ? (\n          <Button disabled>Saving...</Button>\n        ) : (\n          <Button onClick={handleSubmit(handleAddClick)}>Save</Button>\n        )}\n        <Button type=\"secondary\" onClick={onFinish}>\n          Cancel\n        </Button>\n      </ButtonBar>\n      {errorMsg && <Label>{errorMsg}</Label>}\n    </Section>\n  );\n}\n"
  },
  {
    "path": "frontend/src/vets/AllSpecialties.graphql",
    "content": "query AllSpecialties {\n  specialties {\n    id\n    name\n  }\n}\n"
  },
  {
    "path": "frontend/src/vets/AllVets.graphql",
    "content": "fragment VetInfo on Vet {\n  id\n  firstName\n  lastName\n\n  specialties {\n    id\n    name\n  }\n}\n\nquery AllVets {\n  vets {\n    edges {\n      node {\n        ...VetInfo\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/vets/VetAndVisits.graphql",
    "content": "query VetAndVisits($vetId: Int!) {\n  vet(id: $vetId) {\n    id\n    firstName\n    lastName\n    visits {\n      visits {\n        date\n        description\n        pet {\n          id\n          name\n\n          owner {\n            id\n            lastName\n            firstName\n          }\n        }\n      }\n    }\n  }\n}\n"
  },
  {
    "path": "frontend/src/vets/VetsOverview.tsx",
    "content": "import {\n  useAllVetsQuery,\n  useVetAndVisitsQuery,\n  VetInfoFragment,\n} from \"@/generated/graphql-types.ts\";\nimport PageLayout from \"@/components/PageLayout.tsx\";\nimport Heading from \"@/components/Heading.tsx\";\nimport Link from \"@/components/Link.tsx\";\nimport Table from \"@/components/Table.tsx\";\nimport Card from \"@/components/Card.tsx\";\nimport Button from \"@/components/Button.tsx\";\nimport { Section } from \"@/components/Section.tsx\";\nimport { filterNull } from \"@/utils.ts\";\n\ntype Vet = VetInfoFragment;\ntype VetsOverviewProps = {\n  vetId?: string;\n  onAddVetClick(): void;\n};\nexport default function VetsOverview({\n  vetId,\n  onAddVetClick,\n}: VetsOverviewProps) {\n  const { loading, data, error } = useAllVetsQuery({\n    fetchPolicy: \"cache-and-network\",\n  });\n\n  if (loading || error || !data) {\n    return (\n      <PageLayout title=\"Veterinarians\">\n        <Heading>{error ? \"Loading failed\" : \"Loading\"}</Heading>\n      </PageLayout>\n    );\n  }\n\n  function vetRow(vet: Vet) {\n    const fullname = `${vet.lastName}, ${vet.firstName}`;\n    const specialties = vet.specialties.map((s) => s.name).join(\", \");\n    if (String(vet.id) === vetId) {\n      return [<b>{fullname}</b>, <b>{specialties}</b>];\n    }\n\n    return [<Link to={`/vets/${vet.id}`}>{fullname}</Link>, specialties];\n  }\n\n  return (\n    <>\n      <Table\n        labels={[\"Name\", \"Specialities\"]}\n        values={data.vets.edges\n          .filter(filterNull)\n          .map((r) => r.node)\n          .map(vetRow)}\n        title={\"All Veterinarians\"}\n      />\n      <Card fullWidth>\n        <p>\n          You can add a new veterinary here. Note that this is only allowed for\n          users with role <code>ROLE_MANAGER</code>\n        </p>\n        <Button onClick={onAddVetClick}>Add Veterinary</Button>\n      </Card>\n      {vetId && <VisitsForVet vetId={parseInt(vetId)} />}\n    </>\n  );\n}\n\ntype VisitsForVetProps = {\n  vetId: number;\n};\n\nfunction VisitsForVet({ vetId }: VisitsForVetProps) {\n  const { loading, error, data } = useVetAndVisitsQuery({\n    variables: {\n      vetId,\n    },\n  });\n\n  if (loading) {\n    return <>Loading...</>;\n  }\n\n  if (error) {\n    return <>Error...</>;\n  }\n\n  if (!data || !data.vet) {\n    return <>Not found</>;\n  }\n\n  return (\n    <Section>\n      <Heading>\n        Treatments of {data.vet.firstName} {data.vet.lastName}\n      </Heading>\n      <Table\n        labels={[\"Date\", \"Pet\", \"Owner\"]}\n        values={data.vet.visits.visits.map((visit) => [\n          visit.date,\n          visit.pet.name,\n          <Link to={`/owners/${visit.pet.owner.id}`}>\n            {visit.pet.owner.firstName} {visit.pet.owner.lastName}\n          </Link>,\n        ])}\n      />\n    </Section>\n  );\n}\n"
  },
  {
    "path": "frontend/src/vets/VetsPage.tsx",
    "content": "import * as React from \"react\";\nimport { useParams } from \"react-router-dom\";\nimport AddVetForm from \"./AddVetForm\";\nimport VetsOverview from \"./VetsOverview\";\nimport PageLayout from \"@/components/PageLayout\";\n\nexport default function VetsPage() {\n  const { vetId } = useParams<{ vetId?: string }>();\n  const [formOpen, setFormOpen] = React.useState<boolean>(false);\n\n  return (\n    <PageLayout title=\"Manage Veterinarians\">\n      {formOpen || (\n        <VetsOverview vetId={vetId} onAddVetClick={() => setFormOpen(true)} />\n      )}\n      {formOpen && <AddVetForm onFinish={() => setFormOpen(false)} />}\n    </PageLayout>\n  );\n}\n"
  },
  {
    "path": "frontend/src/vite-env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n"
  },
  {
    "path": "frontend/tailwind.config.js",
    "content": "import colors from \"tailwindcss/colors\";\nimport form from \"@tailwindcss/forms\";\n/** @type {import('tailwindcss').Config} */\nexport default {\n  content: [\"./index.html\", \"./src/**/*.{js,ts,jsx,tsx}\"],\n  darkMode: \"media\",\n  theme: {\n    colors: {\n      gray: colors.neutral,\n      indigo: colors.indigo,\n      red: colors.rose,\n      yellow: colors.amber,\n      \"spr-white\": \"#fff\",\n      \"spr-black\": \"#191e1e\",\n      \"spr-gray-dark\": \"#333\",\n      \"spr-blue\": \"#086dc3\",\n      \"spr-green\": \"#6bb536\",\n      \"spr-green-dark\": \"#458b17\",\n      \"spr-green-light\": \"#ebf2f2\",\n      \"spr-red\": \"#FF3C38\",\n    },\n    fontFamily: {\n      \"open-sans\": [\"Open Sans\", \"sans-serif\"],\n      metro: [\"Metropolis\", \"sans-serif\"],\n      helvetica: [\"Helvetica\", \"Arial\", \"sans-serif\"],\n    },\n    extend: {},\n  },\n  variants: {\n    extend: {\n      cursor: [\"disabled\"],\n    },\n  },\n  plugins: [form],\n};\n"
  },
  {
    "path": "frontend/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"ES2020\",\n    \"useDefineForClassFields\": true,\n    \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"noEmit\": true,\n    \"jsx\": \"react-jsx\",\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true,\n    \"paths\": {\n      \"@/*\": [\"./src/*\"]\n    }\n  },\n  \"include\": [\"src\"],\n  \"exclude\": [\"patch-index-html.js\"],\n  \"references\": [{ \"path\": \"./tsconfig.node.json\" }]\n}\n"
  },
  {
    "path": "frontend/tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"composite\": true,\n    \"skipLibCheck\": true,\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"allowSyntheticDefaultImports\": true\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "frontend/vite.config.ts",
    "content": "import { defineConfig } from \"vite\";\nimport react from \"@vitejs/plugin-react\";\nimport path from \"path\";\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n  server: {\n    port: 3080,\n    proxy: {\n      \"/api\": \"http://localhost:9977\",\n      \"/graphql\": \"http://localhost:9977\",\n      \"/graphqlws\": {\n        target: \"ws://localhost:9977\",\n        ws: true,\n      },\n    },\n  },\n  resolve: {\n    alias: {\n      \"@\": path.resolve(__dirname, \"./src\"),\n    },\n  },\n  plugins: [react()],\n});\n"
  },
  {
    "path": "graphql.config.yml",
    "content": "schema: ./backend/src/main/resources/graphql/petclinic.graphqls\nextensions:\n  endpoints:\n    PetClinic GraphQL Endpoint:\n      url: http://localhost:9977/graphql\n      headers:\n        user-agent: JS GraphQL\n        Authorization: Bearer eyJraWQiOiJjZTc4OTU3Yi03NGM2LTQ0MDEtOTZmYy1hMzQ2YWFiNDE2NGEiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJzZWxmIiwic3ViIjoic3VzaSIsImV4cCI6MjAxMzI4MzUzNSwiaWF0IjoxNjk3OTIzNTM1LCJzY29wZSI6Ik1BTkFHRVIifQ.BkYCmxfNUzmVmsA1aD5plfzpIy0wtFBsHGFid187LNz5Jur4LuMV54OsP-V2wjlKgacC-BnC4apLqJskmeE7dIZDq-3iXi94nqURoIsAZf_6lkwfKgQ5FIx_9Kzszm8n5OV8zQnmZjpRUN-v4FJ0-ByMFmIAxjvqNBFdpJ3tfyzLUaPI8LU4kxC_GO_rsFfxjTe5JQtxgFfRMIfe-8z8aVNJd9na0DxT-Mj-Kj6COKX5PVq0Dv6LRsBB5_sktv-IBV7WUWhc_skpd1IU83WhD_aMRpbB7WhM-TTO85sQljOqs22HIo_V-dSzpo4vXz61CppI6mH7wHfDQr5PiHxBzQ\n      introspect: false\n"
  },
  {
    "path": "login.http",
    "content": "### PING!\nGET http://localhost:9977/ping\nAuthorization: Bearer eyJraWQiOiIxMTA4YzcxNS02MGIwLTQ4OGEtYjg4Yy04NGI1Njg1ZDU1MTEiLCJhbGciOiJSUzI1NiJ9.eyJpc3MiOiJzZWxmIiwic3ViIjoic3VzaSIsImV4cCI6MTk4NzYwMDQ0MywiaWF0IjoxNjcyMjQwNDQzLCJzY29wZSI6IlJPTEVfTUFOQUdFUiJ9.hNPB-kTUEzTWEeeOOQIbN3QUeB6jFX4NNesuDGNZ9KXt3T_dfEMIBsdOkwrcPqxtkXMzugwKfSx8VV_aqFznO2NlEzlKA7ngDbjWj0T4Ozr9q1E5aVieWzt9QvI7_AoG21e5upea8T7vUO7Dy64YLFcIPL6Gvhgw0zsSyxNxLbyqQBvwpwu5EzwTWmr9plAjGwIiRbnxkbMqK1mdHuh7QemG9am6-ocfPE5SaLXk1w6Y-wWhMQTDS2JtC__tFumLunUUMqm019lqrILQFRGWqRLZRKnRDP2QEyfrSbOdhacCIPY8KOn0Zk7bstgGCyG71soM0HPnpFXthsScZY4_Zg\n\n### LOGIN\n\nPOST http://localhost:9977/login\nContent-Type: application/json\n\n{\n  \"username\": \"joe\",\n  \"password\": \"joe\"\n}\n\n"
  },
  {
    "path": "mvnw",
    "content": "#!/bin/sh\n# ----------------------------------------------------------------------------\n# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements.  See the NOTICE file\n# distributed with this work for additional information\n# regarding copyright ownership.  The ASF licenses this file\n# to you under the Apache License, Version 2.0 (the\n# \"License\"); you may not use this file except in compliance\n# with the License.  You may obtain a copy of the License at\n#\n#    http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing,\n# software distributed under the License is distributed on an\n# \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n# KIND, either express or implied.  See the License for the\n# specific language governing permissions and limitations\n# under the License.\n# ----------------------------------------------------------------------------\n\n# ----------------------------------------------------------------------------\n# Maven Start Up Batch script\n#\n# Required ENV vars:\n# ------------------\n#   JAVA_HOME - location of a JDK home dir\n#\n# Optional ENV vars\n# -----------------\n#   M2_HOME - location of maven2's installed home dir\n#   MAVEN_OPTS - parameters passed to the Java VM when running Maven\n#     e.g. to debug Maven itself, use\n#       set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000\n#   MAVEN_SKIP_RC - flag to disable loading of mavenrc files\n# ----------------------------------------------------------------------------\n\nif [ -z \"$MAVEN_SKIP_RC\" ] ; then\n\n  if [ -f /etc/mavenrc ] ; then\n    . /etc/mavenrc\n  fi\n\n  if [ -f \"$HOME/.mavenrc\" ] ; then\n    . \"$HOME/.mavenrc\"\n  fi\n\nfi\n\n# OS specific support.  $var _must_ be set to either true or false.\ncygwin=false;\ndarwin=false;\nmingw=false\ncase \"`uname`\" in\n  CYGWIN*) cygwin=true ;;\n  MINGW*) mingw=true;;\n  Darwin*) darwin=true\n    # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home\n    # See https://developer.apple.com/library/mac/qa/qa1170/_index.html\n    if [ -z \"$JAVA_HOME\" ]; then\n      if [ -x \"/usr/libexec/java_home\" ]; then\n        export JAVA_HOME=\"`/usr/libexec/java_home`\"\n      else\n        export JAVA_HOME=\"/Library/Java/Home\"\n      fi\n    fi\n    ;;\nesac\n\nif [ -z \"$JAVA_HOME\" ] ; then\n  if [ -r /etc/gentoo-release ] ; then\n    JAVA_HOME=`java-config --jre-home`\n  fi\nfi\n\nif [ -z \"$M2_HOME\" ] ; then\n  ## resolve links - $0 may be a link to maven's home\n  PRG=\"$0\"\n\n  # need this for relative symlinks\n  while [ -h \"$PRG\" ] ; do\n    ls=`ls -ld \"$PRG\"`\n    link=`expr \"$ls\" : '.*-> \\(.*\\)$'`\n    if expr \"$link\" : '/.*' > /dev/null; then\n      PRG=\"$link\"\n    else\n      PRG=\"`dirname \"$PRG\"`/$link\"\n    fi\n  done\n\n  saveddir=`pwd`\n\n  M2_HOME=`dirname \"$PRG\"`/..\n\n  # make it fully qualified\n  M2_HOME=`cd \"$M2_HOME\" && pwd`\n\n  cd \"$saveddir\"\n  # echo Using m2 at $M2_HOME\nfi\n\n# For Cygwin, ensure paths are in UNIX format before anything is touched\nif $cygwin ; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=`cygpath --unix \"$M2_HOME\"`\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=`cygpath --unix \"$JAVA_HOME\"`\n  [ -n \"$CLASSPATH\" ] &&\n    CLASSPATH=`cygpath --path --unix \"$CLASSPATH\"`\nfi\n\n# For Mingw, ensure paths are in UNIX format before anything is touched\nif $mingw ; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=\"`(cd \"$M2_HOME\"; pwd)`\"\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=\"`(cd \"$JAVA_HOME\"; pwd)`\"\nfi\n\nif [ -z \"$JAVA_HOME\" ]; then\n  javaExecutable=\"`which javac`\"\n  if [ -n \"$javaExecutable\" ] && ! [ \"`expr \\\"$javaExecutable\\\" : '\\([^ ]*\\)'`\" = \"no\" ]; then\n    # readlink(1) is not available as standard on Solaris 10.\n    readLink=`which readlink`\n    if [ ! `expr \"$readLink\" : '\\([^ ]*\\)'` = \"no\" ]; then\n      if $darwin ; then\n        javaHome=\"`dirname \\\"$javaExecutable\\\"`\"\n        javaExecutable=\"`cd \\\"$javaHome\\\" && pwd -P`/javac\"\n      else\n        javaExecutable=\"`readlink -f \\\"$javaExecutable\\\"`\"\n      fi\n      javaHome=\"`dirname \\\"$javaExecutable\\\"`\"\n      javaHome=`expr \"$javaHome\" : '\\(.*\\)/bin'`\n      JAVA_HOME=\"$javaHome\"\n      export JAVA_HOME\n    fi\n  fi\nfi\n\nif [ -z \"$JAVACMD\" ] ; then\n  if [ -n \"$JAVA_HOME\"  ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n      # IBM's JDK on AIX uses strange locations for the executables\n      JAVACMD=\"$JAVA_HOME/jre/sh/java\"\n    else\n      JAVACMD=\"$JAVA_HOME/bin/java\"\n    fi\n  else\n    JAVACMD=\"`which java`\"\n  fi\nfi\n\nif [ ! -x \"$JAVACMD\" ] ; then\n  echo \"Error: JAVA_HOME is not defined correctly.\" >&2\n  echo \"  We cannot execute $JAVACMD\" >&2\n  exit 1\nfi\n\nif [ -z \"$JAVA_HOME\" ] ; then\n  echo \"Warning: JAVA_HOME environment variable is not set.\"\nfi\n\nCLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher\n\n# traverses directory structure from process work directory to filesystem root\n# first directory with .mvn subdirectory is considered project base directory\nfind_maven_basedir() {\n\n  if [ -z \"$1\" ]\n  then\n    echo \"Path not specified to find_maven_basedir\"\n    return 1\n  fi\n\n  basedir=\"$1\"\n  wdir=\"$1\"\n  while [ \"$wdir\" != '/' ] ; do\n    if [ -d \"$wdir\"/.mvn ] ; then\n      basedir=$wdir\n      break\n    fi\n    # workaround for JBEAP-8937 (on Solaris 10/Sparc)\n    if [ -d \"${wdir}\" ]; then\n      wdir=`cd \"$wdir/..\"; pwd`\n    fi\n    # end of workaround\n  done\n  echo \"${basedir}\"\n}\n\n# concatenates all lines of a file\nconcat_lines() {\n  if [ -f \"$1\" ]; then\n    echo \"$(tr -s '\\n' ' ' < \"$1\")\"\n  fi\n}\n\nBASE_DIR=`find_maven_basedir \"$(pwd)\"`\nif [ -z \"$BASE_DIR\" ]; then\n  exit 1;\nfi\n\n##########################################################################################\n# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central\n# This allows using the maven wrapper in projects that prohibit checking in binary data.\n##########################################################################################\nif [ -r \"$BASE_DIR/.mvn/wrapper/maven-wrapper.jar\" ]; then\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Found .mvn/wrapper/maven-wrapper.jar\"\n    fi\nelse\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ...\"\n    fi\n    if [ -n \"$MVNW_REPOURL\" ]; then\n      jarUrl=\"$MVNW_REPOURL/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    else\n      jarUrl=\"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    fi\n    while IFS=\"=\" read key value; do\n      case \"$key\" in (wrapperUrl) jarUrl=\"$value\"; break ;;\n      esac\n    done < \"$BASE_DIR/.mvn/wrapper/maven-wrapper.properties\"\n    if [ \"$MVNW_VERBOSE\" = true ]; then\n      echo \"Downloading from: $jarUrl\"\n    fi\n    wrapperJarPath=\"$BASE_DIR/.mvn/wrapper/maven-wrapper.jar\"\n    if $cygwin; then\n      wrapperJarPath=`cygpath --path --windows \"$wrapperJarPath\"`\n    fi\n\n    if command -v wget > /dev/null; then\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Found wget ... using wget\"\n        fi\n        if [ -z \"$MVNW_USERNAME\" ] || [ -z \"$MVNW_PASSWORD\" ]; then\n            wget \"$jarUrl\" -O \"$wrapperJarPath\"\n        else\n            wget --http-user=$MVNW_USERNAME --http-password=$MVNW_PASSWORD \"$jarUrl\" -O \"$wrapperJarPath\"\n        fi\n    elif command -v curl > /dev/null; then\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Found curl ... using curl\"\n        fi\n        if [ -z \"$MVNW_USERNAME\" ] || [ -z \"$MVNW_PASSWORD\" ]; then\n            curl -o \"$wrapperJarPath\" \"$jarUrl\" -f\n        else\n            curl --user $MVNW_USERNAME:$MVNW_PASSWORD -o \"$wrapperJarPath\" \"$jarUrl\" -f\n        fi\n\n    else\n        if [ \"$MVNW_VERBOSE\" = true ]; then\n          echo \"Falling back to using Java to download\"\n        fi\n        javaClass=\"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java\"\n        # For Cygwin, switch paths to Windows format before running javac\n        if $cygwin; then\n          javaClass=`cygpath --path --windows \"$javaClass\"`\n        fi\n        if [ -e \"$javaClass\" ]; then\n            if [ ! -e \"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class\" ]; then\n                if [ \"$MVNW_VERBOSE\" = true ]; then\n                  echo \" - Compiling MavenWrapperDownloader.java ...\"\n                fi\n                # Compiling the Java class\n                (\"$JAVA_HOME/bin/javac\" \"$javaClass\")\n            fi\n            if [ -e \"$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class\" ]; then\n                # Running the downloader\n                if [ \"$MVNW_VERBOSE\" = true ]; then\n                  echo \" - Running MavenWrapperDownloader.java ...\"\n                fi\n                (\"$JAVA_HOME/bin/java\" -cp .mvn/wrapper MavenWrapperDownloader \"$MAVEN_PROJECTBASEDIR\")\n            fi\n        fi\n    fi\nfi\n##########################################################################################\n# End of extension\n##########################################################################################\n\nexport MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-\"$BASE_DIR\"}\nif [ \"$MVNW_VERBOSE\" = true ]; then\n  echo $MAVEN_PROJECTBASEDIR\nfi\nMAVEN_OPTS=\"$(concat_lines \"$MAVEN_PROJECTBASEDIR/.mvn/jvm.config\") $MAVEN_OPTS\"\n\n# For Cygwin, switch paths to Windows format before running java\nif $cygwin; then\n  [ -n \"$M2_HOME\" ] &&\n    M2_HOME=`cygpath --path --windows \"$M2_HOME\"`\n  [ -n \"$JAVA_HOME\" ] &&\n    JAVA_HOME=`cygpath --path --windows \"$JAVA_HOME\"`\n  [ -n \"$CLASSPATH\" ] &&\n    CLASSPATH=`cygpath --path --windows \"$CLASSPATH\"`\n  [ -n \"$MAVEN_PROJECTBASEDIR\" ] &&\n    MAVEN_PROJECTBASEDIR=`cygpath --path --windows \"$MAVEN_PROJECTBASEDIR\"`\nfi\n\n# Provide a \"standardized\" way to retrieve the CLI args that will\n# work with both Windows and non-Windows executions.\nMAVEN_CMD_LINE_ARGS=\"$MAVEN_CONFIG $@\"\nexport MAVEN_CMD_LINE_ARGS\n\nWRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain\n\nexec \"$JAVACMD\" \\\n  $MAVEN_OPTS \\\n  -classpath \"$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar\" \\\n  \"-Dmaven.home=${M2_HOME}\" \"-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}\" \\\n  ${WRAPPER_LAUNCHER} $MAVEN_CONFIG \"$@\"\n"
  },
  {
    "path": "mvnw.cmd",
    "content": "@REM ----------------------------------------------------------------------------\n@REM Licensed to the Apache Software Foundation (ASF) under one\n@REM or more contributor license agreements.  See the NOTICE file\n@REM distributed with this work for additional information\n@REM regarding copyright ownership.  The ASF licenses this file\n@REM to you under the Apache License, Version 2.0 (the\n@REM \"License\"); you may not use this file except in compliance\n@REM with the License.  You may obtain a copy of the License at\n@REM\n@REM    http://www.apache.org/licenses/LICENSE-2.0\n@REM\n@REM Unless required by applicable law or agreed to in writing,\n@REM software distributed under the License is distributed on an\n@REM \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n@REM KIND, either express or implied.  See the License for the\n@REM specific language governing permissions and limitations\n@REM under the License.\n@REM ----------------------------------------------------------------------------\n\n@REM ----------------------------------------------------------------------------\n@REM Maven Start Up Batch script\n@REM\n@REM Required ENV vars:\n@REM JAVA_HOME - location of a JDK home dir\n@REM\n@REM Optional ENV vars\n@REM M2_HOME - location of maven2's installed home dir\n@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands\n@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a keystroke before ending\n@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven\n@REM     e.g. to debug Maven itself, use\n@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000\n@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files\n@REM ----------------------------------------------------------------------------\n\n@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'\n@echo off\n@REM set title of command window\ntitle %0\n@REM enable echoing by setting MAVEN_BATCH_ECHO to 'on'\n@if \"%MAVEN_BATCH_ECHO%\" == \"on\"  echo %MAVEN_BATCH_ECHO%\n\n@REM set %HOME% to equivalent of $HOME\nif \"%HOME%\" == \"\" (set \"HOME=%HOMEDRIVE%%HOMEPATH%\")\n\n@REM Execute a user defined script before this one\nif not \"%MAVEN_SKIP_RC%\" == \"\" goto skipRcPre\n@REM check for pre script, once with legacy .bat ending and once with .cmd ending\nif exist \"%HOME%\\mavenrc_pre.bat\" call \"%HOME%\\mavenrc_pre.bat\"\nif exist \"%HOME%\\mavenrc_pre.cmd\" call \"%HOME%\\mavenrc_pre.cmd\"\n:skipRcPre\n\n@setlocal\n\nset ERROR_CODE=0\n\n@REM To isolate internal variables from possible post scripts, we use another setlocal\n@setlocal\n\n@REM ==== START VALIDATION ====\nif not \"%JAVA_HOME%\" == \"\" goto OkJHome\n\necho.\necho Error: JAVA_HOME not found in your environment. >&2\necho Please set the JAVA_HOME variable in your environment to match the >&2\necho location of your Java installation. >&2\necho.\ngoto error\n\n:OkJHome\nif exist \"%JAVA_HOME%\\bin\\java.exe\" goto init\n\necho.\necho Error: JAVA_HOME is set to an invalid directory. >&2\necho JAVA_HOME = \"%JAVA_HOME%\" >&2\necho Please set the JAVA_HOME variable in your environment to match the >&2\necho location of your Java installation. >&2\necho.\ngoto error\n\n@REM ==== END VALIDATION ====\n\n:init\n\n@REM Find the project base dir, i.e. the directory that contains the folder \".mvn\".\n@REM Fallback to current working directory if not found.\n\nset MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%\nIF NOT \"%MAVEN_PROJECTBASEDIR%\"==\"\" goto endDetectBaseDir\n\nset EXEC_DIR=%CD%\nset WDIR=%EXEC_DIR%\n:findBaseDir\nIF EXIST \"%WDIR%\"\\.mvn goto baseDirFound\ncd ..\nIF \"%WDIR%\"==\"%CD%\" goto baseDirNotFound\nset WDIR=%CD%\ngoto findBaseDir\n\n:baseDirFound\nset MAVEN_PROJECTBASEDIR=%WDIR%\ncd \"%EXEC_DIR%\"\ngoto endDetectBaseDir\n\n:baseDirNotFound\nset MAVEN_PROJECTBASEDIR=%EXEC_DIR%\ncd \"%EXEC_DIR%\"\n\n:endDetectBaseDir\n\nIF NOT EXIST \"%MAVEN_PROJECTBASEDIR%\\.mvn\\jvm.config\" goto endReadAdditionalConfig\n\n@setlocal EnableExtensions EnableDelayedExpansion\nfor /F \"usebackq delims=\" %%a in (\"%MAVEN_PROJECTBASEDIR%\\.mvn\\jvm.config\") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a\n@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%\n\n:endReadAdditionalConfig\n\nSET MAVEN_JAVA_EXE=\"%JAVA_HOME%\\bin\\java.exe\"\nset WRAPPER_JAR=\"%MAVEN_PROJECTBASEDIR%\\.mvn\\wrapper\\maven-wrapper.jar\"\nset WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain\n\nset DOWNLOAD_URL=\"https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n\nFOR /F \"tokens=1,2 delims==\" %%A IN (\"%MAVEN_PROJECTBASEDIR%\\.mvn\\wrapper\\maven-wrapper.properties\") DO (\n    IF \"%%A\"==\"wrapperUrl\" SET DOWNLOAD_URL=%%B\n)\n\n@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central\n@REM This allows using the maven wrapper in projects that prohibit checking in binary data.\nif exist %WRAPPER_JAR% (\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Found %WRAPPER_JAR%\n    )\n) else (\n    if not \"%MVNW_REPOURL%\" == \"\" (\n        SET DOWNLOAD_URL=\"%MVNW_REPOURL%/io/takari/maven-wrapper/0.5.6/maven-wrapper-0.5.6.jar\"\n    )\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Couldn't find %WRAPPER_JAR%, downloading it ...\n        echo Downloading from: %DOWNLOAD_URL%\n    )\n\n    powershell -Command \"&{\"^\n\t\t\"$webclient = new-object System.Net.WebClient;\"^\n\t\t\"if (-not ([string]::IsNullOrEmpty('%MVNW_USERNAME%') -and [string]::IsNullOrEmpty('%MVNW_PASSWORD%'))) {\"^\n\t\t\"$webclient.Credentials = new-object System.Net.NetworkCredential('%MVNW_USERNAME%', '%MVNW_PASSWORD%');\"^\n\t\t\"}\"^\n\t\t\"[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; $webclient.DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')\"^\n\t\t\"}\"\n    if \"%MVNW_VERBOSE%\" == \"true\" (\n        echo Finished downloading %WRAPPER_JAR%\n    )\n)\n@REM End of extension\n\n@REM Provide a \"standardized\" way to retrieve the CLI args that will\n@REM work with both Windows and non-Windows executions.\nset MAVEN_CMD_LINE_ARGS=%*\n\n%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% \"-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%\" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*\nif ERRORLEVEL 1 goto error\ngoto end\n\n:error\nset ERROR_CODE=1\n\n:end\n@endlocal & set ERROR_CODE=%ERROR_CODE%\n\nif not \"%MAVEN_SKIP_RC%\" == \"\" goto skipRcPost\n@REM check for post script, once with legacy .bat ending and once with .cmd ending\nif exist \"%HOME%\\mavenrc_post.bat\" call \"%HOME%\\mavenrc_post.bat\"\nif exist \"%HOME%\\mavenrc_post.cmd\" call \"%HOME%\\mavenrc_post.cmd\"\n:skipRcPost\n\n@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'\nif \"%MAVEN_BATCH_PAUSE%\" == \"on\" pause\n\nif \"%MAVEN_TERMINATE_CMD%\" == \"on\" exit %ERROR_CODE%\n\nexit /B %ERROR_CODE%\n"
  },
  {
    "path": "petclinic-graphiql/.eslintrc.cjs",
    "content": "module.exports = {\n  root: true,\n  env: { browser: true, es2020: true },\n  extends: [\n    'eslint:recommended',\n    'plugin:@typescript-eslint/recommended',\n    'plugin:react-hooks/recommended',\n  ],\n  ignorePatterns: ['dist', '.eslintrc.cjs'],\n  parser: '@typescript-eslint/parser',\n  plugins: ['react-refresh'],\n  rules: {\n    'react-refresh/only-export-components': [\n      'warn',\n      { allowConstantExport: true },\n    ],\n  },\n}\n"
  },
  {
    "path": "petclinic-graphiql/.gitignore",
    "content": "# Logs\nlogs\n*.log\nnpm-debug.log*\nyarn-debug.log*\nyarn-error.log*\npnpm-debug.log*\nlerna-debug.log*\n\nnode_modules\ndist\ndist-ssr\n*.local\n\n# Editor directories and files\n.vscode/*\n!.vscode/extensions.json\n.idea\n.DS_Store\n*.suo\n*.ntvs*\n*.njsproj\n*.sln\n*.sw?\n"
  },
  {
    "path": "petclinic-graphiql/README.md",
    "content": "# Customized GraphiQL for Spring PetClinic\n\nThis module contains a customized build of the GraphiQL ui.\nIt shows how you can create your [own, customized GraphiQL](https://docs.spring.io/spring-graphql/reference/graphiql.html#graphiql.custombuild) for your backend that can be integrated in your Spring backend application.\n\nOther than the original GraphiQL it has a login screen because the PetClinic GraphQL is not public, and every\nrequest needs a JWT to get access to it.\n\n## Tech stack\n\nThis module uses [Vite](https://vitejs.dev/) with the `react-ts` template. GraphiQL itself is added to it\nas a [npm module](https://github.com/graphql/graphiql/tree/main/packages/graphiql#using-as-package).\n\n## Install the packages\n\nBefore you run or build the module, you have to install the node packages:\n\n```bash\n\npnpm install\n\n```\n\n## Use it locally\n\nYou can develop, run and test GraphiQL locally without embedding it into the Spring PetClinic GraphQL backend.\n\nTo do so, use the Vite command:\n\n```\npnpm dev\n```\n\nThis runs a development server that will connect itself against the running Spring PetClinic Backend. It assumes your backend runs on `http://localhost:9977` (see `urls.ts` and `vite.config.ts` for proxy settings).\n\nIf you make changes to the code in this module and save your changes, they're immediately picked up from the dev server and should be visible without the need of reloading the GraphiQL page.\n\n## Integration in the Backend\n\nWhen you open the backend on `http://localhost:9977`, there runs also the customized GraphiQL instance, but now served from spring boot.\nYou can update the included version of `petclinic-graphiql` in the `backend` project by running the following steps:\n\n- build `petclinic-graphiql` by running `pnpm build`\n- copy the files from `petclinic-graphiql/dist` to `backend/src/main/resources/ui/graphiql`\n- Re-build the backend project and re-start it\n- Opening `http://localhost:9977` should now run your GraphiQL build\n\n> When you're working on a bash or zsh, the process can be simplified to:\n>\n> ```bash\n>   pnpm build\n>   pnpm copy-to-backend\n> ```\n"
  },
  {
    "path": "petclinic-graphiql/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n  <head>\n    <meta charset=\"UTF-8\" />\n    <link rel=\"icon\" type=\"image/svg+xml\" href=\"/vite.svg\" />\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\n    <title>GraphiQL :: Spring PetClinic</title>\n\n  </head>\n  <body>\n    <div id=\"root\"></div>\n    <script type=\"module\" src=\"/src/main.tsx\"></script>\n  </body>\n</html>\n"
  },
  {
    "path": "petclinic-graphiql/package.json",
    "content": "{\n  \"name\": \"petclinic-graphiql\",\n  \"private\": true,\n  \"version\": \"0.0.0\",\n  \"type\": \"module\",\n  \"scripts\": {\n    \"dev\": \"vite\",\n    \"build\": \"tsc && vite build --base=/graphiql\",\n    \"copy-to-backend\": \"rm -rf ../backend/src/main/resources/ui/graphiql && cp -r dist/ ../backend/src/main/resources/ui/graphiql\",\n    \"lint\": \"eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0\",\n    \"preview\": \"tsc && vite build && vite preview\"\n  },\n  \"dependencies\": {\n    \"@graphiql/toolkit\": \"^0.9.1\",\n    \"graphiql\": \"^3.0.6\",\n    \"graphql\": \"^16.8.1\",\n    \"graphql-ws\": \"^5.14.1\",\n    \"react\": \"^18.2.0\",\n    \"react-dom\": \"^18.2.0\"\n  },\n  \"devDependencies\": {\n    \"@types/node\": \"^20.8.7\",\n    \"@types/react\": \"^18.2.15\",\n    \"@types/react-dom\": \"^18.2.7\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.0.0\",\n    \"@typescript-eslint/parser\": \"^6.0.0\",\n    \"@vitejs/plugin-react\": \"^4.0.3\",\n    \"eslint\": \"^8.45.0\",\n    \"eslint-plugin-react-hooks\": \"^4.6.0\",\n    \"eslint-plugin-react-refresh\": \"^0.4.3\",\n    \"prettier\": \"^3.0.3\",\n    \"typescript\": \"^5.0.2\",\n    \"vite\": \"^4.4.5\"\n  }\n}\n"
  },
  {
    "path": "petclinic-graphiql/pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n\n    <groupId>org.springframework.samples.petclinic-graphql</groupId>\n    <artifactId>petclinic-graphiql</artifactId>\n    <version>2.0.0</version>\n    <name>spring-petclinic-graphiql</name>\n    <description>Customized GraphiQL for Spring Petclinic GraphQL Example</description>\n\n</project>"
  },
  {
    "path": "petclinic-graphiql/src/App.tsx",
    "content": "import { createGraphiQLFetcher, Fetcher } from \"@graphiql/toolkit\";\nimport { GraphiQL } from \"graphiql\";\nimport \"graphiql/graphiql.css\";\nimport { useEffect, useMemo, useState } from \"react\";\nimport { graphqlApiUrl, graphqlWsApiUrl, pingApiUrl } from \"./urls.ts\";\nimport LoginForm from \"./LoginForm.tsx\";\n\nimport { createClient } from \"graphql-ws\";\n\ntype Login = { token: string; username: string };\n\ntype LoginVerificationState =\n  | {\n      state: \"pending\";\n    }\n  | {\n      state: \"verified\";\n      initialLogin: Login | null;\n    };\n\nexport default function App() {\n  const [loginVerificationState, setLoginVerificationState] =\n    useState<LoginVerificationState>({ state: \"pending\" });\n\n  useEffect(() => {\n    const initialToken = localStorage.getItem(\"petclinic.graphiql.token\");\n    const initialUsername = localStorage.getItem(\"petclinic.graphiql.username\");\n\n    if (!initialUsername || !initialToken) {\n      localStorage.removeItem(\"petclinic.graphiql.token\");\n      localStorage.removeItem(\"petclinic.graphiql.username\");\n\n      setLoginVerificationState({ state: \"verified\", initialLogin: null });\n      return;\n    }\n\n    // call ping endpoint with initial token:\n    //   - if it returns HTTP OK, token is valid\n    //   - otherwise it's not valid anymore, and user has to login again\n    fetch(pingApiUrl, {\n      headers: {\n        Authorization: `Bearer ${initialToken}`,\n      },\n    }).then((res) => {\n      if (res.ok) {\n        setLoginVerificationState({\n          state: \"verified\",\n          initialLogin: { token: initialToken, username: initialUsername },\n        });\n\n        return;\n      }\n      console.log(\"Token not valid anymore? Status from ping\", res.status);\n      setLoginVerificationState({\n        state: \"verified\",\n        initialLogin: null,\n      });\n    });\n  }, []);\n\n  if (loginVerificationState.state === \"pending\") {\n    return <h1>Verify login...</h1>;\n  }\n\n  return <AppWithAuth initialLogin={loginVerificationState.initialLogin} />;\n}\n\ntype AppWithAuthProps = {\n  initialLogin: Login | null;\n};\n\nfunction AppWithAuth({ initialLogin }: AppWithAuthProps) {\n  const [currentLogin, setCurrentLogin] = useState<{\n    token: string;\n    username: string;\n  } | null>(initialLogin);\n\n  console.log(\"initialLogin\", initialLogin);\n\n  const [showToken, setShowToken] = useState(false);\n\n  const fetcher: Fetcher | null = useMemo(() => {\n    if (!currentLogin) {\n      return null;\n    }\n\n    // When using only the `subscriptionUrl` paran in `createGraphiQLFetcher`\n    // there is a runtime error in the prod build (probalbly bundling related)\n    // so we create ower own client here\n    // The code is inspired by the code that createClient uses internally\n    //   node_modules/.pnpm/@graphiql+toolkit@0.9.1_@types+node@20.8.7_graphql-ws@5.14.1_graphql@16.8.1/node_modules/@graphiql/toolkit/src/create-fetcher/createFetcher.ts\n    //   getWsFetcher\n    const wsClient = createClient({\n      url: `${graphqlWsApiUrl}?access_token=${currentLogin.token}`,\n      connectionParams: {},\n    });\n\n    return createGraphiQLFetcher({\n      url: graphqlApiUrl,\n      wsClient,\n      headers: {\n        Authorization: `Bearer ${currentLogin.token}`,\n      },\n    });\n  }, [currentLogin]);\n\n  if (fetcher) {\n    return (\n      <>\n        <div className={\"loginInfo\"}>\n          <span>\n            Logged in as <b>{currentLogin?.username}</b>\n          </span>\n          <button onClick={() => setShowToken(true)}>Show token</button>\n          <button onClick={() => setCurrentLogin(null)}>Logout</button>\n        </div>\n        {showToken && (\n          <div className={\"tokenInfo\"}>\n            <b>Token</b>\n            <textarea value={currentLogin?.token}></textarea>\n            <div className={\"tokenInfo--buttons\"}>\n              <button onClick={() => setShowToken(false)}>Hide</button>\n              <button\n                onClick={() =>\n                  navigator.clipboard.writeText(\n                    `Authorization: \"Bearer ${currentLogin?.token}\"`,\n                  )\n                }\n              >\n                Copy Auth Header\n              </button>\n            </div>\n          </div>\n        )}\n\n        <GraphiQL\n          fetcher={fetcher}\n          defaultQuery={`\n#    _____                 _      ____  _        _____     _    _____ _ _       _      \n#   / ____|               | |    / __ \\\\| |      |  __ \\\\   | |  / ____| (_)     (_)     \n#  | |  __ _ __ __ _ _ __ | |__ | |  | | |      | |__) |__| |_| |    | |_ _ __  _  ___ \n#  | | |_ | '__/ _\\` | '_ \\\\| '_ \\\\| |  | | |      |  ___/ _ \\\\ __| |    | | | '_ \\\\| |/ __|\n#  | |__| | | | (_| | |_) | | | | |__| | |____  | |  |  __/ |_| |____| | | | | | | (__ \n#   \\\\_____|_|  \\\\__,_| .__/|_| |_|\\\\___\\\\_\\\\______| |_|   \\\\___|\\\\__|\\\\_____|_|_|_| |_|_|\\\\___|\n#                   | |                                                                \n#                   |_|                                                                          \n          \n          \n# Some sample queries:\n\n# Username of currently logged in user:\nquery Me { me { username } }\n\n# Find first to owners whose name starts with \"d\"\nquery TwoOwners {\n  owners(\n    first: 2\n    filter: { lastName: \"d\" }\n    order: [{ field: lastName }, { field: firstName, direction: DESC }]\n  ) {\n    edges {\n      cursor\n      node {\n        id\n        firstName\n        lastName\n        pets {\n          id\n          name\n        }\n      }\n    }\n    pageInfo {\n      hasNextPage\n      endCursor\n    }\n  }\n}\n\n# Sample Mutation: add a new visit \n#  (hint: run the onNewVisit subscription in second GraphiQL instance,\n#  before running the mutation)\nmutation AddVisit {\n    addVisit(input:{\n        petId:3,\n        description:\"Check teeth\",\n        date:\"2024/03/30\",\n        vetId:1\n    }) {\n        newVisit:visit {\n            id\n            pet {\n                id \n                name \n                birthDate\n            }\n        }\n    }\n}    \n\n# Subscription for new visits\n# When running this subscription, the operation runs until\n#   you close it. While the operation is running, new visits\n#   are received\nsubscription NewVisit {\n    newVisit: onNewVisit {\n        description\n        treatingVet {\n            id\n            firstName\n            lastName\n        }\n        pet {\n            id\n            name\n        }\n    }\n}\n        `}\n        />\n      </>\n    );\n  }\n\n  return <LoginForm onLogin={(token) => setCurrentLogin(token)} />;\n}\n"
  },
  {
    "path": "petclinic-graphiql/src/LoginForm.tsx",
    "content": "import { useState } from \"react\";\nimport { loginApiUrl } from \"./urls.ts\";\n\ntype LoginFormProps = {\n  onLogin(login: { username: string; token: string }): void;\n};\nexport default function LoginForm({ onLogin }: LoginFormProps) {\n  const [usernamePassword, setUsernamePassword] = useState<{\n    username: string;\n    password: string;\n  }>({\n    username: \"\",\n    password: \"\",\n  });\n\n  function onInputChange(e: React.ChangeEvent<HTMLInputElement>) {\n    setLoginMsg(\"\");\n    setUsernamePassword({\n      ...usernamePassword,\n      [e.target.name]: e.target.value,\n    });\n  }\n\n  const [loginMsg, setLoginMsg] = useState(\"\");\n\n  async function login() {\n    setLoginMsg(\"\");\n\n    const response = await fetch(loginApiUrl, {\n      method: \"POST\",\n      headers: {\n        \"Content-Type\": \"application/json; charset=utf-8\",\n      },\n      body: JSON.stringify(usernamePassword),\n    });\n\n    if (!response.ok) {\n      localStorage.removeItem(\"petclinic.graphiql.username\");\n      localStorage.removeItem(\"petclinic.graphiql.token\");\n\n      setLoginMsg(\"Login failed!\");\n    }\n\n    const result = await response.json();\n    const token = result.token as string;\n    if (!token) {\n      setLoginMsg(\"No token in response from server!\");\n      return;\n    }\n    localStorage.setItem(\n      \"petclinic.graphiql.username\",\n      usernamePassword.username,\n    );\n    localStorage.setItem(\"petclinic.graphiql.token\", token);\n    onLogin({ token, username: usernamePassword.username });\n  }\n\n  return (\n    <div id={\"loginPage\"}>\n      <h1>Login to Spring PetClinic GraphiQL</h1>\n      <div id=\"loginForm\">\n        <label>\n          Username:\n          <input type=\"text\" name=\"username\" onChange={onInputChange} />\n        </label>\n\n        <label>\n          Password:\n          <input type=\"password\" name=\"password\" onChange={onInputChange} />\n        </label>\n\n        <button onClick={login}>Login</button>\n        <p id=\"loginFeedback\">{loginMsg}</p>\n        <div style={{marginTop: \"4rem\"}}>\n            <p>Choose one of the following users for login:</p>\n            <table>\n              <thead>\n                <tr>\n                  <th>Username</th>\n                  <th>Password</th>\n                  <th>Role</th>\n                </tr>\n              </thead>\n              <tbody>\n                <tr>\n                  <td>susi</td>\n                  <td>susi</td>\n                  <td>ROLE_MANAGER</td>\n                </tr>\n                <tr>\n                  <td>joe</td>\n                  <td>joe</td>\n                  <td>ROLE_USER</td>\n                </tr>\n              </tbody>\n            </table>\n        </div>\n      </div>\n    </div>\n  );\n}\n"
  },
  {
    "path": "petclinic-graphiql/src/PetClinicGraphiql.tsx",
    "content": "import { Fetcher } from \"@graphiql/toolkit\";\nimport { GraphiQL } from \"graphiql\";\n\ntype PetClinicGraphiqlProps = {\n  fetcher: Fetcher;\n};\n\nexport default function PetClinicGraphiql({ fetcher }: PetClinicGraphiqlProps) {\n  return <GraphiQL fetcher={fetcher} />;\n}\n"
  },
  {
    "path": "petclinic-graphiql/src/index.css",
    "content": "body {\n  height: 100%;\n  margin: 0;\n  width: 100%;\n  overflow: hidden;\n}\n\n#root {\n  height: 100vh;\n  display: flex;\n  flex-direction: column;\n}\n\n#loginPage {\n  font-family: Arial, Helvetica, sans-serif;\n\n  max-width: 1200px;\n  margin: 4rem auto;\n  text-align: center;\n}\n\n#loginForm {\n  font-size: 1rem;\n  height: 1.6rem;\n  margin-top: 4rem;\n}\n\n#loginForm input,\n#loginForm button {\n  font-family: Arial, Helvetica, sans-serif;\n  font-size: 1rem;\n}\n\n#loginForm button,\n#loginForm label,\n#loginForm input {\n  margin-left: 1rem;\n}\n\n#loginForm table {\n  text-align: left;\n  border: 1px solid grey;\n  width: 100%;\n  border-collapse: collapse;\n}\n\n#loginForm table tr {\n  border-bottom: 1pt solid grey;\n}\n\n#loginForm table th,\n#loginForm table td {\n  padding: 0.5rem;\n}\n\n#petclinicToken {\n  white-space: nowrap;\n  font-size: 0.6rem;\n}\n\n.loginInfo,\n.tokenInfo {\n  font-family: Arial, Helvetica, sans-serif;\n  font-size: 1.2rem;\n  padding: 8px;\n  display: flex;\n  align-items: baseline;\n  gap: 10px;\n}\n\n.loginInfo button,\n.tokenInfo button\n{\n  font-family: Arial, Helvetica, sans-serif;\n  font-size: 1.2rem;\n}\n\n.tokenInfo textarea { flex: 1}\n.tokenInfo--buttons {\n  display: flex;\n  flex-direction: column;\n}"
  },
  {
    "path": "petclinic-graphiql/src/main.tsx",
    "content": "import React from \"react\";\nimport ReactDOM from \"react-dom/client\";\nimport App from \"./App.tsx\";\nimport \"./index.css\";\n\nReactDOM.createRoot(document.getElementById(\"root\")!).render(\n  <React.StrictMode>\n    <App />\n  </React.StrictMode>,\n);\n"
  },
  {
    "path": "petclinic-graphiql/src/urls.ts",
    "content": "const backendHost = \"\";\n\nexport const graphqlApiUrl = `${backendHost}/graphql`;\nexport const loginApiUrl = `${backendHost}/api/login`;\nexport const pingApiUrl = `${backendHost}/ping`;\n\nfunction buildWsApiUrl() {\n  if (backendHost === \"\") {\n    const url = new URL(window.location.href);\n    return `${url.protocol}//${url.host}/graphqlws`;\n  } else {\n    return `${backendHost}/graphqlws`;\n  }\n}\n\nexport const graphqlWsApiUrl = buildWsApiUrl()\n  .replace(\"https\", \"wss\")\n  .replace(\"http\", \"ws\");\n\nconsole.log(\"USING GRAPHQL API URL\", graphqlApiUrl);\nconsole.log(\"USING GRAPHQL SUBSCRIPTION URL\", graphqlWsApiUrl);\nconsole.log(\"USING LOGIN API URL\", loginApiUrl);\n"
  },
  {
    "path": "petclinic-graphiql/src/vite-env.d.ts",
    "content": "/// <reference types=\"vite/client\" />\n"
  },
  {
    "path": "petclinic-graphiql/tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"ES2020\",\n    \"useDefineForClassFields\": true,\n    \"lib\": [\"ES2020\", \"DOM\", \"DOM.Iterable\"],\n    \"module\": \"ESNext\",\n    \"skipLibCheck\": true,\n\n    /* Bundler mode */\n    \"moduleResolution\": \"bundler\",\n    \"allowImportingTsExtensions\": true,\n    \"resolveJsonModule\": true,\n    \"isolatedModules\": true,\n    \"noEmit\": true,\n    \"jsx\": \"react-jsx\",\n\n    /* Linting */\n    \"strict\": true,\n    \"noUnusedLocals\": true,\n    \"noUnusedParameters\": true,\n    \"noFallthroughCasesInSwitch\": true\n  },\n  \"include\": [\"src\"],\n  \"exclude\": [\"patch-index-html.js\"],\n  \"references\": [{ \"path\": \"./tsconfig.node.json\" }]\n}\n"
  },
  {
    "path": "petclinic-graphiql/tsconfig.node.json",
    "content": "{\n  \"compilerOptions\": {\n    \"composite\": true,\n    \"skipLibCheck\": true,\n    \"module\": \"ESNext\",\n    \"moduleResolution\": \"bundler\",\n    \"allowSyntheticDefaultImports\": true\n  },\n  \"include\": [\"vite.config.ts\"]\n}\n"
  },
  {
    "path": "petclinic-graphiql/vite.config.ts",
    "content": "import { defineConfig } from \"vite\";\nimport react from \"@vitejs/plugin-react\";\n\n// https://vitejs.dev/config/\nexport default defineConfig({\n  plugins: [react()],\n  server: {\n    port: 3081,\n    proxy: {\n      \"/api\": \"http://localhost:9977\",\n      \"/graphql\": \"http://localhost:9977\",\n      \"/graphqlws\": {\n        target: \"ws://localhost:9977\",\n        ws: true,\n      },\n    },\n  },\n});\n"
  },
  {
    "path": "pom.xml",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n         xsi:schemaLocation=\"http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd\">\n    <modelVersion>4.0.0</modelVersion>\n\n\n    <groupId>org.springframework.samples.petclinic-graphql</groupId>\n    <artifactId>spring-petclinic-graphql</artifactId>\n    <version>2.0.0</version>\n    <packaging>pom</packaging>\n\n    <modules>\n        <module>petclinic-graphiql</module>\n        <module>backend</module>\n        <module>frontend</module>\n        <module>e2e-tests</module>\n    </modules>\n\n</project>\n"
  },
  {
    "path": "readme.md",
    "content": "# PetClinic Sample Application using Spring for GraphQL\n\nThis PetClinic example uses [Spring for GraphQL](https://github.com/spring-projects/spring-graphql), that is part of Spring Boot [since version 2.7](https://spring.io/blog/2022/05/19/spring-for-graphql-1-0-release).\n\nIt implements a [GraphQL API](http://graphql.org/) for the PetClinic and\nprovides an example Frontend for the API.\n\nVersions currently in use are **Spring Boot 3.2.x** and **Spring for GraphQL 1.2.x**.\n\n[![Java CI with Maven](https://github.com/spring-petclinic/spring-petclinic-graphql/actions/workflows/maven-build.yml/badge.svg)](https://github.com/spring-petclinic/spring-petclinic-graphql/actions/workflows/maven-build.yml)\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/spring-petclinic/spring-petclinic-graphql)\n\n## Features\n\nSome features that are built in:\n\n* [Annotated Controllers](https://docs.spring.io/spring-graphql/reference/controllers.html) (see `graphql/*Controller`-classes, e.g. `SpecialtyController` and `VetController`)\n* Subscriptions via Websockets (see `VisitController#onNewVisit`) including integration test (see `VisitSubscriptionTest`) and examples below  \n* Own scalar types (See `PetClinicRuntimeWiringConfiguration` and `DateCoercing`)\n* GraphQL Interfaces (GraphQL Type `Person`) and Unions (GraphQL Type `AddVetPayload`), see class `PetClinicRuntimeWiringConfiguration`\n* Security: the `/graphql` http and WebSocket endpoints are secured and can only be accessed using a JWT token. More fine grained security is implemented using `@PreAuthorize` (see `VetService`)\n  * Example: `addVet` mutation is only allowed for users with `ROLE_MANAGER` \n* Pagination, Filtering and Sorting of results: Implemented using the [Pagination support](https://docs.spring.io/spring-graphql/reference/request-execution.html#execution.pagination) of Spring GraphQL, see `OwnerController`. The result of the `owners` field is a `Connection` object defined in the [Cursor Connection specification](https://relay.dev/graphql/connections.htm).\n  * The Apollo client in the React frontend uses the [`relayStylePagination`](https://www.apollographql.com/docs/react/pagination/cursor-based/#relay-style-cursor-pagination) helper function to automatically manage the Client-side cache with new objects read using the `after` cursor query argument. (See `OwnerSearchPage.tsx`)  \n* Custom GraphiQL Build, that has its own login screen, since the PetClinic GraphQL is only accessible with a Token\n  * see project `petclinic-graphiql`\n* Tests: See `test` folder for typical GraphQL endpoint tests, including tests for security\n  * The tests are using [Spring Boot TestContains support](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.testing.testcontainers) to run the required Postgres database. \n* End-to-end browser tests: see `e2e-tests` folder for some [Playwright](https://playwright.dev/) based end-to-end tests that test the running application in a real browser. Read description below how to run the tests.\n* GitHub action workflow:\n  * builds and tests the backend\n  * starts the backend including database with docker-compose to run the end-to-end-tests\n  * (see `.github/workflows/build-app.yml`)\n\n# Running the sample application\n\nYou can run the sample application with two ways:\n\n1. The easiest way: run it pre-configured in cloud IDE [GitPod](https://www.gitpod.io/)\n2. Run it locally\n\n## Run it in GitPod\n\nTo run the application (backend, GraphiQL and React frontend) in GitPod, simply click on the \"Open in GitPod\" button at the top of this README.\n\n- Note that you need a (free) GitPod account.\n- And please make sure that you allow your browser opening new tabs/windows from gitpod.io!\n\nAfter clicking on the GitPod button, GitPod creates a new workspace including an Editor for you, builds the application and starts\nbackend and frontend. That might take some time!\n\nWhen backend and frontend are running, GitPod opens two new browser tabs, one with GraphiQL and one with the\nPetClinic backend. For login options, see below \"Accessing the GraphQL API\"\n\nNote that the workspace is your personal workspace, you can make changes, save files, re-open the workspace at any\ntime and you can even create git commits and pull requests from it. For more information see GitPod documentation.\n\nIn the GitPod editor you can make changes to the app, and after saving the app will be recompiled and redeployed automatically.\n\n![SpringBoot PetClinic in GitPod Workspace](gitpod.png)\n\n### Using IntelliJ with GitPod\n\nRecently GitPod has added support for JetBrain IDEs like IntelliJ. While this support is currenty beta only, you can try it\nand open the PetClinic in IntelliJ. Note that in this scenario you're still working on a complete, ready-to-use workspace\nin the cloud. Only the IntelliJ _UI_ runs locally at your maching.\n\nPlease read the [setup instructions here](https://www.gitpod.io/docs/ides-and-editors/intellij).\n\n![SpringBoot PetClinic in GitPod IntelliJ Workspace](screenshot-gitpod-intellij.png)\n\n## Running locally\n\nThe server is implemented in the `backend` folder and can be started either from your IDE (`org.springframework.samples.petclinic.PetClinicApplication`) or\nusing maven from the root folder of the repository:\n\n```\n./mvnw spring-boot:run -pl backend\n```\n\nNote: the server runs on port **9977**, so make sure, this port is available.\n\n- Note: you need to have docker installed. `docker-compose` needs to be in your path\n- On startup the server uses [Spring Boot docker compose support](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#features.docker-compose) to run the required postgres database\n\n## Running the frontend\n\nWhile you can access the whole GraphQL API from GraphiQL this demo application also\ncontains a modified version of the classic PetClinic UI. Compared to the original\nclient this client is built as a Single-Page-Application using **React** and **Apollo GraphQL**\nand has slightly different features to make it a more realistic use-case for GraphQL.\n\nYou can install and start the frontend by using [pnpm](https://pnpm.io/):\n\n```\ncd ./frontend\n\npnpm install\n\npnpm codegen\n\npnpm start\n```\n\nThe running frontend can be accessed on [http://localhost:3080](http://localhost:3080).\n\nFor valid users to login, see list above.\n\n![SpringBoot PetClinic, React Frontend](petclinic-ui.png)\n\n# Deployment\n\nThere are two scenarios: local development environment and \"production\" environment\n\n**Local development**\n\nIn local development:\n\n- the backend runs on http://localhost:9977 (GraphQL API and graphiql)\n- the Vite development server for the frontend runs on http://localhost:3080\n- the postgres database is started automatically by Spring Boot using the `docker-compose.yml` file in the root folder\n\nIn this scenario, the vite server acts also as a reverse proxy, that proxies all requests to `/api`, `/graphql` and `/graphqlws` to the backend server (localhost:9977). The proxy is configured in `frontend/vite.config.ts`\n\nIf you like you can run the customized graphiql with its own Vite development server (using `pnpm dev` in `petclinic-graphiql`) that runs on http://localhost:3081. \nThis is handy if you want to make changes to GraphiQL. \n\n**\"Production\" environment**\n\nIn this setup, the backend and frontend process run as docker containers using a docker-compose setup that is described in `docker-compose-petclinic.yml`:\n\n- the backend port is exposed as http://localhost:3091 (GraphQL API and graphiql)\n- the nginx for the frontend is exposed as http://localhost:3090\n- the postgres database is not exposed outside the container\n\nHere the nginx acts as the proxy to the backend.\n\nYou can build the docker images for backend and frontend using the `build-local.sh` scripts. Also, these images are build during the GitHub workflow.\n\n# Accessing the GraphQL API\n\nYou can access the GraphQL API via the included customized version of GraphiQL.\n\nThe included GraphiQL adds support for login to the original GraphiQL.\n\nYou can use the following users for login:\n\n* **joe/joe**: Regular user\n* **susi/susi**: has Manager Role and is allowed to execute the `createVet` Mutation\n\nAfter starting the server, GraphiQL runs on [http://localhost:9977](http://localhost:9977)\n\n\n## Sample Queries\n\nHere you can find some sample queries that you can copy+paste and run in GraphiQL. Feel free to explore and try more 😊.\n\n**Query** find first 2 owners whose lastname starts with \"D\" and their pets,\norder by lastname and firstname\n\n```graphql\n  query {\n    owners(\n      first: 2\n      filter: { lastName: \"d\" }\n      order: [{ field: lastName }, { field: firstName, direction: DESC }]\n    ) {\n      edges {\n        cursor\n        node {\n          id\n          firstName\n          lastName\n          pets {\n            id\n            name\n          }\n        }\n      }\n      pageInfo {\n        hasNextPage\n        endCursor\n      }\n    }\n  }\n```\n\nThe following query should return two items, but we have more then two owners in the database staring with a `d`. Thus, the `pageInfo.hasNextPage`-field returned in the result of the query above is `true` and the `endCursor` points to the last object returned. Using this cursor as `after` we can receive the next batch of Owners:\n\n```graphql\n  query {\n    owners(\n      first: 2\n      after: \"T18y\"\n      filter: { lastName: \"d\" }\n      order: [{ field: lastName }, { field: firstName, direction: DESC }]\n    ) {\n      edges {\n        cursor\n        node {\n          id\n          firstName\n          lastName\n          pets {\n            id\n            name\n          }\n        }\n      }\n      pageInfo {\n        hasNextPage\n        endCursor\n      }\n    }\n  }\n```\n\nAdd a new Visit using a **mutation** (can be done with user `joe` and `susi`) and read id and pet of the\nnew created visit:\n\n```graphql\nmutation {\n    addVisit(input:{\n        petId:3,\n        description:\"Check teeth\",\n        date:\"2022/03/30\",\n        vetId:1\n    }) {\n        newVisit:visit {\n            id\n            pet {\n                id \n                name \n                birthDate\n            }\n        }\n    }\n}\n```\n\nAdd a new veterinarian. This is only allowed for users with `ROLE_MANAGER` and that is `susi`:\n```graphql\nmutation {\n  addVet(input: {\n      firstName: \"Dagmar\", \n      lastName: \"Smith\", \n      specialtyIds: [1, 3]}) {\n      \n    ... on AddVetSuccessPayload {\n      newVet: vet {\n        id\n        specialties {\n          id\n          name\n        }\n      }\n    }\n      \n    ... on AddVetErrorPayload {\n      error\n    }\n  }\n}\n```\n\nListen for new visits using a **Subscription**\n\nThis mutation selects the treating veterinarian of the new created Visit and the pet that will be visiting. You can\neither create a new Visit using the mutation above or using the frontend application.\n\n```graphql\n\nsubscription {\n    onNewVisit {\n        description\n        treatingVet {\n            id\n            firstName\n            lastName\n        }\n        pet {\n            id\n            name\n        }\n    }\n\n}\n```\n\n**Note:** In the frontend application, you can open an Owner an see all its pets including their visits. If you add a new visit to one of the pets, in all other browser windows that have the Owner page with that Owner open, the new visit should be added to the table automatically, because the `OwnerPage` React component uses a subscription to update the table contents in the background. \n\n\n![SpringBoot PetClinic, GraphiQL](graphiql.png)\n\n## Customized GraphiQL\n\nThe backend includes a Spring Petclinic-specific customized version of GraphiQL. Compared to GraphiQL that is embedded by default, \nthe customized version has a login form so that it can send JWT Authentication header with each request to the GraphQL backend.\n\nPlease see the subproject `petclinic-graphiql` for more information.\n\n# End-to-end tests\n\nInside the folder `e2e-tests` you find some Playwright-based end-to-end tests.\n\nTo run the test, please make sure, the backend and the frontend processes are running, as described above.\n\nThen install playwright and all its dependencies including the required browsers by running\n\n```\ncd e2e-tests\npnpm install\n```\n\nThen you can use `pnpm` to start the test:\n\n* `pnpm test` will execute all tests in headless mode in all three configured browsers (Chrome, Firefox, Safari)\n\n* `pnpm test:ui` opens the tests in [Playwright's UI mode](https://playwright.dev/docs/test-ui-mode)\n  * From the started Playwright UI you can individually select which test to run in which browser\n  * You can also debug the tests from there\n* `pnpm test:headed`: runs the tests in a headed (i.e. visible) browser (by default Chrome).\n* `pnpm test:docker-compose` runs the test agains the docker-compose-based setup (localhost:3090/localhost:3091)\n\n## Running, debugging and developing the tests\n\nFor writing and running Playwright tests I prefer VS code with the [Playwright extension](https://marketplace.visualstudio.com/items?itemName=ms-playwright.playwright)\n\nBut if you want to develop and run the tests in IntelliJ, you can install the [Test Automation Plug-in](https://plugins.jetbrains.com/plugin/20175-test-automation) by Jetbrains.\n\n\n\n# Contributing\n\nIf you like to help and contribute you're more than welcome! Please open [an issue](https://github.com/spring-petclinic/spring-petclinic-graphql/issues) or a [Pull Request](https://github.com/spring-petclinic/spring-petclinic-graphql/pulls)\n\nInitial implementation of this GraphQL-based PetClinic example: [Nils Hartmann](https://nilshartmann.net), [Twitter](https://twitter.com/nilshartmann) \n"
  },
  {
    "path": "talk/curl-demo.sh",
    "content": "#! /bin/bash\n\ncurl -X POST \\\n-H \"Content-Type: application/json\" \\\n-d '{\"query\": \"{ pets { name } }\"}' \\\nhttp://localhost:9977/graphql\n"
  },
  {
    "path": "talk/graphql-introduction.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n<head>\n    <meta charset=\"utf-8\">\n\n    <title>GraphQL Introduction</title>\n\n    <meta name=\"apple-mobile-web-app-capable\" content=\"yes\"/>\n    <meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\"/>\n\n    <meta name=\"viewport\"\n          content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n    <link rel=\"stylesheet\" href=\"reveal.js/css/reveal.css\">\n    <link rel=\"stylesheet\" href=\"reveal.js/css/theme/solarized.css\" id=\"theme\">\n\n\n    <!-- Code syntax highlighting -->\n    <link rel=\"stylesheet\" href=\"reveal.js/lib/css/zenburn.css\">\n    <style>\n        .right-img {\n            margin-left: 10px !important;\n            float: right;\n            height: 500px;\n        }\n        .todo:before {\n            content: 'TODO: ';\n        }\n        .todo {\n            color: red !important;\n        }\n        code span.line-number {\n            color: lightcoral;\n        }\n        .reveal pre code {\n            max-height: 1000px !important;\n        }\n\n        .reveal h3 {\n          text-transform: none;\n        }\n\n        img {\n            border: 0 !important;\n            box-shadow:0 0 0 0 !important;\n        }\n\n        .reveal {\n            -ms-touch-action: auto !important;\n            touch-action: auto !important;\n        }\n\n    </style>\n\n    <!-- Printing and PDF exports -->\n    <script>\n        var link = document.createElement('link');\n        link.rel = 'stylesheet';\n        link.type = 'text/css';\n        link.href = window.location.search.match(/print-pdf/gi) ? 'reveal.js/css/print/pdf.css' : 'reveal.js/css/print/paper.css';\n        document.getElementsByTagName('head')[0].appendChild(link);\n    </script>\n\n    <!--[if lt IE 9]>\n    <script src=\"reveal.js/lib/js/html5shiv.js\"></script>\n    <![endif]-->\n</head>\n\n<body>\n\n\n  <div class=\"reveal\">\n    <div class=\"slides\">\n\n      <section data-markdown class=\"preparation\">\n        <script type=\"text/template\">\n          ### Preparation\n\n          Run the application\n\n          Backend: ./mvnw spring-boot:run\n          Frontend: yarn install && yarn start\n\n          UI: http://localhost:8080\n          Backend (GraphiQL): http://localhost:9977\n\n        </script>\n      </section>\n\n      <section>\n        <h2>GraphQL</h2>\n        <h3><em>A query language for your API</em></h3>\n        <p style=\"font-size:small\"><a href=\"https://twitter.com/nilshartmann\">@nilshartmann</a></p>\n      </section>\n\n      <section>\n        <h2>GraphQL</h2>\n        <h3>A query language for your API</h3>\n        <em>\"GraphQL is a <b>query language</b> for APIs and a <b>runtime</b> for fulfilling those queries with your existing data\"</em>\n        <p><a href=\"http://graphql.org\" target=\"_blank\">http://graphql.org</a></p>\n        <p>Invented by Facebook for it's mobile News Feed 2012</p>\n        <p>Open Source since 2015</p>\n      </section>\n\n\n      <section>\n        <h2>Who uses GraphQL?</h2>\n\n        <p>Facebook (obviously)...</p>\n      </section>\n\n      <section>\n        <h2>Twitter</h2>\n        <img src=\"images/twitter-uses-graphql-tweet.png\" />\n      </section>\n\n      <section>\n        <h2>GitHub</h2>\n        <img src=\"images/github-announces-graphql-api.png\" style=\"max-height: 500px\"/>\n      </section>\n\n      <section>\n        <h2>New York Times</h2>\n        <img src=\"images/nytimes-uses-graphql.png\" style=\"max-height: 500px\"/>\n      </section>\n\n      <section>\n        <h3>Example: Spring PetClinic </h3>\n        <h1>GraphQL in practice</h1>\n        <p><a href=\"https://github.com/spring-petclinic/spring-petclinic-graphql\" target=\"_blank\">https://github.com/spring-petclinic/spring-petclinic-graphql</a></p>\n        <p><a href=\"http://localhost:8080\" target=\"_blank\">Live on Localhost</a></p>\n        <p><a href=\"http://localhost:9977\" target=\"_blank\">GraphiQL</a></p>\n      </section>\n\n\n      <section>\n        <h1>GraphQL concepts</h1>\n      </section>\n\n      <section>\n        <h3>Query language</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers\" data-leftpad>query {\n  owner(id: 1) {\n    firstName\n    lastName\n  }\n}\n            </code></pre>\n        <ul>\n          <li>Structured language for accessing data from API</li>\n          <li>Looks similar to JSON (but isn't)</li>\n          <li>Request <b>fields</b> from (nested) objects</li>\n          <li>Fields can have <b>parameters</b> (like params in functions)</li>\n        </ul>\n\n      </section>\n      <section>\n        <h3>The Query Language</h3>\n        <p>Operations</p>\n        <ul>\n          <li>A Request consists of an <em>Operation</em>:\n            <ul>\n              <li><em>Query</em>: A read request</li>\n              <li><em>Mutation</em>: Request for modifying data</ul>\n          </li>\n          <li>An Operation can contain parameters (<code>ownerId: 1</code>) and can return a value</li>\n        </ul>\n      </section>\n      <section>\n        <h2>Subscriptions</h2>\n        <h3>(New in Spec since May 2017)</h3>\n        <ul>\n          <li >Client can subscribe to changes\n          <li >On changes the Client will be notified (Push)\n        </ul>\n      </section>\n\n      <section>\n        <h2>Type system</h2>\n        <p>Defines the API (its Objects and Operations)</p>\n        <ul>\n          <li>Used by the GraphQL runtime to validate requests and responses</li>\n          <li>Scalar Types, Objects, Interfaces, Lists, Enums, ... </li>\n          <li>Invalid Request are rejected by the runtime (no need to care about in own code)</li>\n          <li>Basis for various tooling (Syntax Checking, Code Completion, API Browser, Documentation, ...)</li>\n        </ul>\n      </section>\n\n      <section>\n        <h2>Runtime</h2>\n        <p>Server that executes GraphQL requests</p>\n        <ul>\n          <li>Libs for several languages exists</li>\n          <li>Reference implementation: JavaScript</li>\n          <li>Parses and validates the Request</li>\n          <li>Checks and serializes the Response</li>\n          <li>Actual retrieving of the requested data has to be implemented by the application itself</li>\n        </ul>\n      </section>\n\n\n\n\n\n      <section>\n        <h1>GraphQL Server</h1>\n      </section>\n\n      <section>\n        <h2>Java implementations</h2>\n        <p><a href=\"https://github.com/graphql-java/graphql-java-tools\">graphql-java-tools</a></p>\n        <p><a href=\"https://github.com/graphql-java/graphql-java\">graphql-java</a></p>\n        <p><a href=\"https://github.com/graphql-java/graphql-spring-boot\">graphql-spring-boot</a></p>\n      </section>\n\n\n      <section>\n        <h3>Schema definition using an IDL</h3>\n        <p>(IDL based on JS reference implementation)</p>\n        <pre><code data-trim contenteditable class=\"line-numbers java\" data-leftpad>\n# The Query Root type\ntype Query {\n  # Return a List of all pets that have been registered in the PetClinic\n  pets: [Pet!]!\n\n  # Return the Pet with the specified id\n  pet(id: Int!): Pet!\n}\n\ntype Pet {\n  id: Int!\n  name: String!\n  type: PetType!\n}\n            </code></pre>\n      </section>\n      <section>\n        <h3>Resolver</h3>\n        <ul>\n          <li>Fetch data for a field</li>\n          <li>There must be one Root resolver (for your query type)</li>\n          <li>Properties on beans are accessed using get-methods</li>\n          <li>You can define own resolvers for properties too</li>\n        </ul>\n      </section>\n      <section>\n        <h3>Example: Root Resolver</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers java\" data-leftpad>\npublic class Query implements GraphQLQueryResolver {\n\n    private final PetRepository petRepository;\n\n    public Query(PetRepository petRepository) {\n        this.petRepository = petRepository;\n    }\n\n    public Pet pet(int id) {\n        return petRepository.findById(id);\n    }\n\n    public List&lt;Pet> pets() {\n        return petRepository.findAll();\n    }\n}\n\n        </code></pre>\n      </section>\n      <section>\n        <h3>Example: Resolver for a type</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers java\" data-leftpad>\n@Component\npublic class\nPetResolver implements GraphQLResolver&lt;Pet> {\n    public VisitConnection visits(Pet pet) {\n        return new VisitConnection(pet.getVisits());\n    }\n\n    // all other fields that are exposed via the IDL\n    // are accessed directly from the Pet class\n}\n        </code></pre>\n      </section>\n      <section>\n        <h3>Example: Mutation definition</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers java\" data-leftpad>\ntype Mutation {\n  # Add a new Pet\n  addPet(input: AddPetInput!): AddPetPayload!\n}\n\n# The Input for addPet Mutation\ninput AddPetInput {\n  ownerId: Int!\n  name: String!\n  birthDate: Date!\n  typeId: Int!\n}\n\n# Return value for addPet Mutation\ntype AddPetPayload {\n  pet: Pet!\n}\n\n        </code></pre>\n      </section>\n      <section>\n        <h3>Example: Mutation Resolver</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers java\" data-leftpad>\n@Component\npublic class Mutation implements GraphQLMutationResolver {\n    private final PetRepository petRepository;\n    . . .\n\n    public Mutation(. . .) { . . . }\n\n    public AddPetPayload addPet(AddPetInput addPetInput) {\n        final Owner owner = ownerRepository.findById(addPetInput.getOwnerId());\n        final PetType type = petTypeRepository.findById(addPetInput.getTypeId());\n\n        Pet pet = new Pet();\n        pet.setName(addPetInput.getName());\n        pet.setType(type);\n        pet.setBirthDate(addPetInput.getBirthDate());\n        pet.setOwner(owner);\n        petRepository.save(pet);\n\n        return new AddPetPayload(pet);\n    }\n}\n        </code></pre>\n      </section>\n\n\n\n      <section>\n        <h1>GraphQL Client</h1>\n      </section>\n      <section>\n        <h3>Example: Plain HTTP/JSON</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers bash\" data-leftpad>\ncurl -X POST \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"{ pets { name } }\"}' \\\n  http://localhost:9977/graphql\n        </code></pre>\n        <p>Result:</p>\n        <pre><code data-trim contenteditable class=\"line-numbers json\" data-leftpad>\n{\"data\":\n  {\"pets\":\n    [\n      {\"name\":\"Leo\"},{\"name\":\"Basil\"}, . . .\n    ]\n  }\n}\n        </code></pre>\n      </section>\n      <section>\n        <h3>JavaScript implementations</h3>\n        <p><a href=\"http://graphql.org/graphql-js/\" target=\"_blank\">Reference implementation</a></p>\n        <p><a href=\"http://dev.apollodata.com/\" target=\"_blank\">Apollo</a> (for various Frameworks)</p>\n        <p><a href=\"http://dev.apollodata.com/react/\" target=\"_blank\">React Apollo</a> (used here)</p>\n      </section>\n\n      <section>\n        <h3>graphql HOC</h3>\n        <p>Apollo provides a graphql HOC that:</p>\n        <ul>\n          <li>Sends a Request to the server</li>\n          <li>Informs the client about the request status (e.g. loading)</li>\n          <li>Passes the result to the wrapped component</li>\n          <li>Does caching</li>\n        </ul>\n      </section>\n\n      <section>\n        <h3>Example: A PetList component</h3>\n        <pre><code data-trim contenteditable class=\"line-numbers javascript\" data-leftpad>\n// graphql HOC passes in a data object\nconst PetList = ({data}) =>\n  data.loading ?\n     // loading is set to true by Apollo\n     // while request is pending\n     &lt;div>Loading...&lt;/div>\n  :\n    // otherwise we have the requested data here\n    {data.owners.map(owner =&gt; ...) }\n;\n        </code></pre>\n      </section>\n      <section>\n        <h3>Example: The graphql HOC</h3>\n      <pre><code data-trim contenteditable class=\"line-numbers javascript\" data-leftpad>\nconst PetList = . . .;\nconst ownersQuery = gql`\n  query ownerList {\n    owners {\n      lastName\n      firstName\n  }\n}\n`\nexport default graphql(ownersQuery)(PetList)\n        </code></pre>\n      </section>\n\n      <section>\n        <h1>Why GraphQL?</h1>\n      </section>\n\n      <section>\n        <h2>Perfect Fetching</h2>\n        <ul>\n          <li >Returns exactly what's needed\n          <li >\n            No under- or over fetching anymore\n            <ul>\n              <li>All needed data with one Request</li>\n              <li>Not <b>more</b> data as needed</li>\n            </ul>\n          </li>\n          <li >The shape of the result is specified in the query\n        </ul>\n      </section>\n\n      <section>\n        <h2>API Description using a Type System</h2>\n        <ul>\n          <li >Good development experience thanks to type system\n          <li >Validation by GraphQL Runtime\n          <li >Errors can be detected at development time\n            <img src=\"images/idea-unknown-field-in-query.png\"/>\n\n          </li>\n        </ul>\n      </section>\n      <section>\n        <h2>Flexibility and decoupling</h2>\n        <ul>\n          <li >Client can raise individual Requests as needed\n          <li >No need to enhance API on serverside for new use cases (just query for other data)\n          <li >Enhancing/Changing the API without versioning possible (deprecations exists)\n        </ul>\n      </section>\n\n      <section>\n        <h2>Simplification</h2>\n        <ul>\n          <li >There is only <b>one</b> endpoint\n          <li >APIs all look the same (query language is standardized)\n          <li >Communication via JSON\n          <li >What fields are actually used can easily be tracked (and controlled) (eg for data protection!)\n        </ul>\n      </section>\n\n\n    </div>\n  </div>\n\n\n\n  <script src=\"reveal.js/lib/js/head.min.js\"></script>\n<script src=\"reveal.js/js/reveal.js\"></script>\n<script src=\"lib/jquery-2.2.4.js\"></script>\n<script>\n    if (window.location.hostname.indexOf('localhost') !== -1) {\n    } else {\n        // only applies to public version\n        $('.preparation').remove();\n    }\n    Reveal.addEventListener( 'ready', function( event ) {\n        if (window.location.hostname.indexOf('localhost') !== -1) {\n            // only applies to presentation version\n            Reveal.configure({ controls: false });\n        } else {\n            // only applies to public version\n            $('.fragment').removeClass('fragment');\n        }\n        // applies to all versions\n        $('code').addClass('line-numbers');\n    } );\n</script>\n\n\n<script>\n\n    // Full list of configuration options available at:\n    // https://github.com/hakimel/reveal.js#configuration\n    Reveal.initialize({\n        controls: true,\n        progress: true,\n        history: true,\n        center: true,\n\n        transition: 'slide', // none/fade/slide/convex/concave/zoom\n\n        // Optional reveal.js plugins\n        dependencies: [\n            {\n                src: 'reveal.js/lib/js/classList.js', condition: function () {\n                return !document.body.classList;\n            }\n            },\n            {\n                src: 'reveal.js/plugin/markdown/marked.js', condition: function () {\n                return !!document.querySelector('[data-markdown]');\n            }\n            },\n            {\n                src: 'reveal.js/plugin/markdown/markdown.js', condition: function () {\n                return !!document.querySelector('[data-markdown]');\n            }\n            },\n            {\n                src: 'reveal.js/plugin/highlight/highlight.js', async: true, condition: function () {\n                return !!document.querySelector('pre code');\n            }, callback: function () {\n                hljs.initHighlightingOnLoad();\n            }\n            },\n            {src: 'reveal.js/plugin/zoom-js/zoom.js', async: true},\n            {src: 'reveal.js/plugin/notes/notes.js', async: true},\n            {src: 'lib/js/line-numbers.js'}\n        ]\n    });\n\n</script>\n\n</body>\n</html>\n"
  },
  {
    "path": "talk/lib/jquery-2.2.4.js",
    "content": "/*!\n * jQuery JavaScript Library v2.2.4\n * http://jquery.com/\n *\n * Includes Sizzle.js\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2016-05-20T17:23Z\n */\n\n(function( global, factory ) {\n\n\tif ( typeof module === \"object\" && typeof module.exports === \"object\" ) {\n\t\t// For CommonJS and CommonJS-like environments where a proper `window`\n\t\t// is present, execute the factory and get jQuery.\n\t\t// For environments that do not have a `window` with a `document`\n\t\t// (such as Node.js), expose a factory as module.exports.\n\t\t// This accentuates the need for the creation of a real `window`.\n\t\t// e.g. var jQuery = require(\"jquery\")(window);\n\t\t// See ticket #14549 for more info.\n\t\tmodule.exports = global.document ?\n\t\t\tfactory( global, true ) :\n\t\t\tfunction( w ) {\n\t\t\t\tif ( !w.document ) {\n\t\t\t\t\tthrow new Error( \"jQuery requires a window with a document\" );\n\t\t\t\t}\n\t\t\t\treturn factory( w );\n\t\t\t};\n\t} else {\n\t\tfactory( global );\n\t}\n\n// Pass this if window is not defined yet\n}(typeof window !== \"undefined\" ? window : this, function( window, noGlobal ) {\n\n// Support: Firefox 18+\n// Can't be in strict mode, several libs including ASP.NET trace\n// the stack via arguments.caller.callee and Firefox dies if\n// you try to trace through \"use strict\" call chains. (#13335)\n//\"use strict\";\nvar arr = [];\n\nvar document = window.document;\n\nvar slice = arr.slice;\n\nvar concat = arr.concat;\n\nvar push = arr.push;\n\nvar indexOf = arr.indexOf;\n\nvar class2type = {};\n\nvar toString = class2type.toString;\n\nvar hasOwn = class2type.hasOwnProperty;\n\nvar support = {};\n\n\n\nvar\n\tversion = \"2.2.4\",\n\n\t// Define a local copy of jQuery\n\tjQuery = function( selector, context ) {\n\n\t\t// The jQuery object is actually just the init constructor 'enhanced'\n\t\t// Need init if jQuery is called (just allow error to be thrown if not included)\n\t\treturn new jQuery.fn.init( selector, context );\n\t},\n\n\t// Support: Android<4.1\n\t// Make sure we trim BOM and NBSP\n\trtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g,\n\n\t// Matches dashed string for camelizing\n\trmsPrefix = /^-ms-/,\n\trdashAlpha = /-([\\da-z])/gi,\n\n\t// Used by jQuery.camelCase as callback to replace()\n\tfcamelCase = function( all, letter ) {\n\t\treturn letter.toUpperCase();\n\t};\n\njQuery.fn = jQuery.prototype = {\n\n\t// The current version of jQuery being used\n\tjquery: version,\n\n\tconstructor: jQuery,\n\n\t// Start with an empty selector\n\tselector: \"\",\n\n\t// The default length of a jQuery object is 0\n\tlength: 0,\n\n\ttoArray: function() {\n\t\treturn slice.call( this );\n\t},\n\n\t// Get the Nth element in the matched element set OR\n\t// Get the whole matched element set as a clean array\n\tget: function( num ) {\n\t\treturn num != null ?\n\n\t\t\t// Return just the one element from the set\n\t\t\t( num < 0 ? this[ num + this.length ] : this[ num ] ) :\n\n\t\t\t// Return all the elements in a clean array\n\t\t\tslice.call( this );\n\t},\n\n\t// Take an array of elements and push it onto the stack\n\t// (returning the new matched element set)\n\tpushStack: function( elems ) {\n\n\t\t// Build a new jQuery matched element set\n\t\tvar ret = jQuery.merge( this.constructor(), elems );\n\n\t\t// Add the old object onto the stack (as a reference)\n\t\tret.prevObject = this;\n\t\tret.context = this.context;\n\n\t\t// Return the newly-formed element set\n\t\treturn ret;\n\t},\n\n\t// Execute a callback for every element in the matched set.\n\teach: function( callback ) {\n\t\treturn jQuery.each( this, callback );\n\t},\n\n\tmap: function( callback ) {\n\t\treturn this.pushStack( jQuery.map( this, function( elem, i ) {\n\t\t\treturn callback.call( elem, i, elem );\n\t\t} ) );\n\t},\n\n\tslice: function() {\n\t\treturn this.pushStack( slice.apply( this, arguments ) );\n\t},\n\n\tfirst: function() {\n\t\treturn this.eq( 0 );\n\t},\n\n\tlast: function() {\n\t\treturn this.eq( -1 );\n\t},\n\n\teq: function( i ) {\n\t\tvar len = this.length,\n\t\t\tj = +i + ( i < 0 ? len : 0 );\n\t\treturn this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] );\n\t},\n\n\tend: function() {\n\t\treturn this.prevObject || this.constructor();\n\t},\n\n\t// For internal use only.\n\t// Behaves like an Array's method, not like a jQuery method.\n\tpush: push,\n\tsort: arr.sort,\n\tsplice: arr.splice\n};\n\njQuery.extend = jQuery.fn.extend = function() {\n\tvar options, name, src, copy, copyIsArray, clone,\n\t\ttarget = arguments[ 0 ] || {},\n\t\ti = 1,\n\t\tlength = arguments.length,\n\t\tdeep = false;\n\n\t// Handle a deep copy situation\n\tif ( typeof target === \"boolean\" ) {\n\t\tdeep = target;\n\n\t\t// Skip the boolean and the target\n\t\ttarget = arguments[ i ] || {};\n\t\ti++;\n\t}\n\n\t// Handle case when target is a string or something (possible in deep copy)\n\tif ( typeof target !== \"object\" && !jQuery.isFunction( target ) ) {\n\t\ttarget = {};\n\t}\n\n\t// Extend jQuery itself if only one argument is passed\n\tif ( i === length ) {\n\t\ttarget = this;\n\t\ti--;\n\t}\n\n\tfor ( ; i < length; i++ ) {\n\n\t\t// Only deal with non-null/undefined values\n\t\tif ( ( options = arguments[ i ] ) != null ) {\n\n\t\t\t// Extend the base object\n\t\t\tfor ( name in options ) {\n\t\t\t\tsrc = target[ name ];\n\t\t\t\tcopy = options[ name ];\n\n\t\t\t\t// Prevent never-ending loop\n\t\t\t\tif ( target === copy ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\t// Recurse if we're merging plain objects or arrays\n\t\t\t\tif ( deep && copy && ( jQuery.isPlainObject( copy ) ||\n\t\t\t\t\t( copyIsArray = jQuery.isArray( copy ) ) ) ) {\n\n\t\t\t\t\tif ( copyIsArray ) {\n\t\t\t\t\t\tcopyIsArray = false;\n\t\t\t\t\t\tclone = src && jQuery.isArray( src ) ? src : [];\n\n\t\t\t\t\t} else {\n\t\t\t\t\t\tclone = src && jQuery.isPlainObject( src ) ? src : {};\n\t\t\t\t\t}\n\n\t\t\t\t\t// Never move original objects, clone them\n\t\t\t\t\ttarget[ name ] = jQuery.extend( deep, clone, copy );\n\n\t\t\t\t// Don't bring in undefined values\n\t\t\t\t} else if ( copy !== undefined ) {\n\t\t\t\t\ttarget[ name ] = copy;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Return the modified object\n\treturn target;\n};\n\njQuery.extend( {\n\n\t// Unique for each copy of jQuery on the page\n\texpando: \"jQuery\" + ( version + Math.random() ).replace( /\\D/g, \"\" ),\n\n\t// Assume jQuery is ready without the ready module\n\tisReady: true,\n\n\terror: function( msg ) {\n\t\tthrow new Error( msg );\n\t},\n\n\tnoop: function() {},\n\n\tisFunction: function( obj ) {\n\t\treturn jQuery.type( obj ) === \"function\";\n\t},\n\n\tisArray: Array.isArray,\n\n\tisWindow: function( obj ) {\n\t\treturn obj != null && obj === obj.window;\n\t},\n\n\tisNumeric: function( obj ) {\n\n\t\t// parseFloat NaNs numeric-cast false positives (null|true|false|\"\")\n\t\t// ...but misinterprets leading-number strings, particularly hex literals (\"0x...\")\n\t\t// subtraction forces infinities to NaN\n\t\t// adding 1 corrects loss of precision from parseFloat (#15100)\n\t\tvar realStringObj = obj && obj.toString();\n\t\treturn !jQuery.isArray( obj ) && ( realStringObj - parseFloat( realStringObj ) + 1 ) >= 0;\n\t},\n\n\tisPlainObject: function( obj ) {\n\t\tvar key;\n\n\t\t// Not plain objects:\n\t\t// - Any object or value whose internal [[Class]] property is not \"[object Object]\"\n\t\t// - DOM nodes\n\t\t// - window\n\t\tif ( jQuery.type( obj ) !== \"object\" || obj.nodeType || jQuery.isWindow( obj ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Not own constructor property must be Object\n\t\tif ( obj.constructor &&\n\t\t\t\t!hasOwn.call( obj, \"constructor\" ) &&\n\t\t\t\t!hasOwn.call( obj.constructor.prototype || {}, \"isPrototypeOf\" ) ) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Own properties are enumerated firstly, so to speed up,\n\t\t// if last one is own, then all properties are own\n\t\tfor ( key in obj ) {}\n\n\t\treturn key === undefined || hasOwn.call( obj, key );\n\t},\n\n\tisEmptyObject: function( obj ) {\n\t\tvar name;\n\t\tfor ( name in obj ) {\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t},\n\n\ttype: function( obj ) {\n\t\tif ( obj == null ) {\n\t\t\treturn obj + \"\";\n\t\t}\n\n\t\t// Support: Android<4.0, iOS<6 (functionish RegExp)\n\t\treturn typeof obj === \"object\" || typeof obj === \"function\" ?\n\t\t\tclass2type[ toString.call( obj ) ] || \"object\" :\n\t\t\ttypeof obj;\n\t},\n\n\t// Evaluates a script in a global context\n\tglobalEval: function( code ) {\n\t\tvar script,\n\t\t\tindirect = eval;\n\n\t\tcode = jQuery.trim( code );\n\n\t\tif ( code ) {\n\n\t\t\t// If the code includes a valid, prologue position\n\t\t\t// strict mode pragma, execute code by injecting a\n\t\t\t// script tag into the document.\n\t\t\tif ( code.indexOf( \"use strict\" ) === 1 ) {\n\t\t\t\tscript = document.createElement( \"script\" );\n\t\t\t\tscript.text = code;\n\t\t\t\tdocument.head.appendChild( script ).parentNode.removeChild( script );\n\t\t\t} else {\n\n\t\t\t\t// Otherwise, avoid the DOM node creation, insertion\n\t\t\t\t// and removal by using an indirect global eval\n\n\t\t\t\tindirect( code );\n\t\t\t}\n\t\t}\n\t},\n\n\t// Convert dashed to camelCase; used by the css and data modules\n\t// Support: IE9-11+\n\t// Microsoft forgot to hump their vendor prefix (#9572)\n\tcamelCase: function( string ) {\n\t\treturn string.replace( rmsPrefix, \"ms-\" ).replace( rdashAlpha, fcamelCase );\n\t},\n\n\tnodeName: function( elem, name ) {\n\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n\t},\n\n\teach: function( obj, callback ) {\n\t\tvar length, i = 0;\n\n\t\tif ( isArrayLike( obj ) ) {\n\t\t\tlength = obj.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tfor ( i in obj ) {\n\t\t\t\tif ( callback.call( obj[ i ], i, obj[ i ] ) === false ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn obj;\n\t},\n\n\t// Support: Android<4.1\n\ttrim: function( text ) {\n\t\treturn text == null ?\n\t\t\t\"\" :\n\t\t\t( text + \"\" ).replace( rtrim, \"\" );\n\t},\n\n\t// results is for internal usage only\n\tmakeArray: function( arr, results ) {\n\t\tvar ret = results || [];\n\n\t\tif ( arr != null ) {\n\t\t\tif ( isArrayLike( Object( arr ) ) ) {\n\t\t\t\tjQuery.merge( ret,\n\t\t\t\t\ttypeof arr === \"string\" ?\n\t\t\t\t\t[ arr ] : arr\n\t\t\t\t);\n\t\t\t} else {\n\t\t\t\tpush.call( ret, arr );\n\t\t\t}\n\t\t}\n\n\t\treturn ret;\n\t},\n\n\tinArray: function( elem, arr, i ) {\n\t\treturn arr == null ? -1 : indexOf.call( arr, elem, i );\n\t},\n\n\tmerge: function( first, second ) {\n\t\tvar len = +second.length,\n\t\t\tj = 0,\n\t\t\ti = first.length;\n\n\t\tfor ( ; j < len; j++ ) {\n\t\t\tfirst[ i++ ] = second[ j ];\n\t\t}\n\n\t\tfirst.length = i;\n\n\t\treturn first;\n\t},\n\n\tgrep: function( elems, callback, invert ) {\n\t\tvar callbackInverse,\n\t\t\tmatches = [],\n\t\t\ti = 0,\n\t\t\tlength = elems.length,\n\t\t\tcallbackExpect = !invert;\n\n\t\t// Go through the array, only saving the items\n\t\t// that pass the validator function\n\t\tfor ( ; i < length; i++ ) {\n\t\t\tcallbackInverse = !callback( elems[ i ], i );\n\t\t\tif ( callbackInverse !== callbackExpect ) {\n\t\t\t\tmatches.push( elems[ i ] );\n\t\t\t}\n\t\t}\n\n\t\treturn matches;\n\t},\n\n\t// arg is for internal usage only\n\tmap: function( elems, callback, arg ) {\n\t\tvar length, value,\n\t\t\ti = 0,\n\t\t\tret = [];\n\n\t\t// Go through the array, translating each of the items to their new values\n\t\tif ( isArrayLike( elems ) ) {\n\t\t\tlength = elems.length;\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Go through every key on the object,\n\t\t} else {\n\t\t\tfor ( i in elems ) {\n\t\t\t\tvalue = callback( elems[ i ], i, arg );\n\n\t\t\t\tif ( value != null ) {\n\t\t\t\t\tret.push( value );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Flatten any nested arrays\n\t\treturn concat.apply( [], ret );\n\t},\n\n\t// A global GUID counter for objects\n\tguid: 1,\n\n\t// Bind a function to a context, optionally partially applying any\n\t// arguments.\n\tproxy: function( fn, context ) {\n\t\tvar tmp, args, proxy;\n\n\t\tif ( typeof context === \"string\" ) {\n\t\t\ttmp = fn[ context ];\n\t\t\tcontext = fn;\n\t\t\tfn = tmp;\n\t\t}\n\n\t\t// Quick check to determine if target is callable, in the spec\n\t\t// this throws a TypeError, but we will just return undefined.\n\t\tif ( !jQuery.isFunction( fn ) ) {\n\t\t\treturn undefined;\n\t\t}\n\n\t\t// Simulated bind\n\t\targs = slice.call( arguments, 2 );\n\t\tproxy = function() {\n\t\t\treturn fn.apply( context || this, args.concat( slice.call( arguments ) ) );\n\t\t};\n\n\t\t// Set the guid of unique handler to the same of original handler, so it can be removed\n\t\tproxy.guid = fn.guid = fn.guid || jQuery.guid++;\n\n\t\treturn proxy;\n\t},\n\n\tnow: Date.now,\n\n\t// jQuery.support is not used in Core but other projects attach their\n\t// properties to it so it needs to exist.\n\tsupport: support\n} );\n\n// JSHint would error on this code due to the Symbol not being defined in ES5.\n// Defining this global in .jshintrc would create a danger of using the global\n// unguarded in another place, it seems safer to just disable JSHint for these\n// three lines.\n/* jshint ignore: start */\nif ( typeof Symbol === \"function\" ) {\n\tjQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ];\n}\n/* jshint ignore: end */\n\n// Populate the class2type map\njQuery.each( \"Boolean Number String Function Array Date RegExp Object Error Symbol\".split( \" \" ),\nfunction( i, name ) {\n\tclass2type[ \"[object \" + name + \"]\" ] = name.toLowerCase();\n} );\n\nfunction isArrayLike( obj ) {\n\n\t// Support: iOS 8.2 (not reproducible in simulator)\n\t// `in` check used to prevent JIT error (gh-2145)\n\t// hasOwn isn't used here due to false negatives\n\t// regarding Nodelist length in IE\n\tvar length = !!obj && \"length\" in obj && obj.length,\n\t\ttype = jQuery.type( obj );\n\n\tif ( type === \"function\" || jQuery.isWindow( obj ) ) {\n\t\treturn false;\n\t}\n\n\treturn type === \"array\" || length === 0 ||\n\t\ttypeof length === \"number\" && length > 0 && ( length - 1 ) in obj;\n}\nvar Sizzle =\n/*!\n * Sizzle CSS Selector Engine v2.2.1\n * http://sizzlejs.com/\n *\n * Copyright jQuery Foundation and other contributors\n * Released under the MIT license\n * http://jquery.org/license\n *\n * Date: 2015-10-17\n */\n(function( window ) {\n\nvar i,\n\tsupport,\n\tExpr,\n\tgetText,\n\tisXML,\n\ttokenize,\n\tcompile,\n\tselect,\n\toutermostContext,\n\tsortInput,\n\thasDuplicate,\n\n\t// Local document vars\n\tsetDocument,\n\tdocument,\n\tdocElem,\n\tdocumentIsHTML,\n\trbuggyQSA,\n\trbuggyMatches,\n\tmatches,\n\tcontains,\n\n\t// Instance-specific data\n\texpando = \"sizzle\" + 1 * new Date(),\n\tpreferredDoc = window.document,\n\tdirruns = 0,\n\tdone = 0,\n\tclassCache = createCache(),\n\ttokenCache = createCache(),\n\tcompilerCache = createCache(),\n\tsortOrder = function( a, b ) {\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t}\n\t\treturn 0;\n\t},\n\n\t// General-purpose constants\n\tMAX_NEGATIVE = 1 << 31,\n\n\t// Instance methods\n\thasOwn = ({}).hasOwnProperty,\n\tarr = [],\n\tpop = arr.pop,\n\tpush_native = arr.push,\n\tpush = arr.push,\n\tslice = arr.slice,\n\t// Use a stripped-down indexOf as it's faster than native\n\t// http://jsperf.com/thor-indexof-vs-for/5\n\tindexOf = function( list, elem ) {\n\t\tvar i = 0,\n\t\t\tlen = list.length;\n\t\tfor ( ; i < len; i++ ) {\n\t\t\tif ( list[i] === elem ) {\n\t\t\t\treturn i;\n\t\t\t}\n\t\t}\n\t\treturn -1;\n\t},\n\n\tbooleans = \"checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped\",\n\n\t// Regular expressions\n\n\t// http://www.w3.org/TR/css3-selectors/#whitespace\n\twhitespace = \"[\\\\x20\\\\t\\\\r\\\\n\\\\f]\",\n\n\t// http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier\n\tidentifier = \"(?:\\\\\\\\.|[\\\\w-]|[^\\\\x00-\\\\xa0])+\",\n\n\t// Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n\tattributes = \"\\\\[\" + whitespace + \"*(\" + identifier + \")(?:\" + whitespace +\n\t\t// Operator (capture 2)\n\t\t\"*([*^$|!~]?=)\" + whitespace +\n\t\t// \"Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]\"\n\t\t\"*(?:'((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\"|(\" + identifier + \"))|)\" + whitespace +\n\t\t\"*\\\\]\",\n\n\tpseudos = \":(\" + identifier + \")(?:\\\\((\" +\n\t\t// To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n\t\t// 1. quoted (capture 3; capture 4 or capture 5)\n\t\t\"('((?:\\\\\\\\.|[^\\\\\\\\'])*)'|\\\"((?:\\\\\\\\.|[^\\\\\\\\\\\"])*)\\\")|\" +\n\t\t// 2. simple (capture 6)\n\t\t\"((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|\" + attributes + \")*)|\" +\n\t\t// 3. anything else (capture 2)\n\t\t\".*\" +\n\t\t\")\\\\)|)\",\n\n\t// Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n\trwhitespace = new RegExp( whitespace + \"+\", \"g\" ),\n\trtrim = new RegExp( \"^\" + whitespace + \"+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)\" + whitespace + \"+$\", \"g\" ),\n\n\trcomma = new RegExp( \"^\" + whitespace + \"*,\" + whitespace + \"*\" ),\n\trcombinators = new RegExp( \"^\" + whitespace + \"*([>+~]|\" + whitespace + \")\" + whitespace + \"*\" ),\n\n\trattributeQuotes = new RegExp( \"=\" + whitespace + \"*([^\\\\]'\\\"]*?)\" + whitespace + \"*\\\\]\", \"g\" ),\n\n\trpseudo = new RegExp( pseudos ),\n\tridentifier = new RegExp( \"^\" + identifier + \"$\" ),\n\n\tmatchExpr = {\n\t\t\"ID\": new RegExp( \"^#(\" + identifier + \")\" ),\n\t\t\"CLASS\": new RegExp( \"^\\\\.(\" + identifier + \")\" ),\n\t\t\"TAG\": new RegExp( \"^(\" + identifier + \"|[*])\" ),\n\t\t\"ATTR\": new RegExp( \"^\" + attributes ),\n\t\t\"PSEUDO\": new RegExp( \"^\" + pseudos ),\n\t\t\"CHILD\": new RegExp( \"^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(\" + whitespace +\n\t\t\t\"*(even|odd|(([+-]|)(\\\\d*)n|)\" + whitespace + \"*(?:([+-]|)\" + whitespace +\n\t\t\t\"*(\\\\d+)|))\" + whitespace + \"*\\\\)|)\", \"i\" ),\n\t\t\"bool\": new RegExp( \"^(?:\" + booleans + \")$\", \"i\" ),\n\t\t// For use in libraries implementing .is()\n\t\t// We use this for POS matching in `select`\n\t\t\"needsContext\": new RegExp( \"^\" + whitespace + \"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(\" +\n\t\t\twhitespace + \"*((?:-\\\\d)?\\\\d*)\" + whitespace + \"*\\\\)|)(?=[^-]|$)\", \"i\" )\n\t},\n\n\trinputs = /^(?:input|select|textarea|button)$/i,\n\trheader = /^h\\d$/i,\n\n\trnative = /^[^{]+\\{\\s*\\[native \\w/,\n\n\t// Easily-parseable/retrievable ID or TAG or CLASS selectors\n\trquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n\n\trsibling = /[+~]/,\n\trescape = /'|\\\\/g,\n\n\t// CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n\trunescape = new RegExp( \"\\\\\\\\([\\\\da-f]{1,6}\" + whitespace + \"?|(\" + whitespace + \")|.)\", \"ig\" ),\n\tfunescape = function( _, escaped, escapedWhitespace ) {\n\t\tvar high = \"0x\" + escaped - 0x10000;\n\t\t// NaN means non-codepoint\n\t\t// Support: Firefox<24\n\t\t// Workaround erroneous numeric interpretation of +\"0x\"\n\t\treturn high !== high || escapedWhitespace ?\n\t\t\tescaped :\n\t\t\thigh < 0 ?\n\t\t\t\t// BMP codepoint\n\t\t\t\tString.fromCharCode( high + 0x10000 ) :\n\t\t\t\t// Supplemental Plane codepoint (surrogate pair)\n\t\t\t\tString.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 );\n\t},\n\n\t// Used for iframes\n\t// See setDocument()\n\t// Removing the function wrapper causes a \"Permission Denied\"\n\t// error in IE\n\tunloadHandler = function() {\n\t\tsetDocument();\n\t};\n\n// Optimize for push.apply( _, NodeList )\ntry {\n\tpush.apply(\n\t\t(arr = slice.call( preferredDoc.childNodes )),\n\t\tpreferredDoc.childNodes\n\t);\n\t// Support: Android<4.0\n\t// Detect silently failing push.apply\n\tarr[ preferredDoc.childNodes.length ].nodeType;\n} catch ( e ) {\n\tpush = { apply: arr.length ?\n\n\t\t// Leverage slice if possible\n\t\tfunction( target, els ) {\n\t\t\tpush_native.apply( target, slice.call(els) );\n\t\t} :\n\n\t\t// Support: IE<9\n\t\t// Otherwise append directly\n\t\tfunction( target, els ) {\n\t\t\tvar j = target.length,\n\t\t\t\ti = 0;\n\t\t\t// Can't trust NodeList.length\n\t\t\twhile ( (target[j++] = els[i++]) ) {}\n\t\t\ttarget.length = j - 1;\n\t\t}\n\t};\n}\n\nfunction Sizzle( selector, context, results, seed ) {\n\tvar m, i, elem, nid, nidselect, match, groups, newSelector,\n\t\tnewContext = context && context.ownerDocument,\n\n\t\t// nodeType defaults to 9, since context defaults to document\n\t\tnodeType = context ? context.nodeType : 9;\n\n\tresults = results || [];\n\n\t// Return early from calls with invalid selector or context\n\tif ( typeof selector !== \"string\" || !selector ||\n\t\tnodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) {\n\n\t\treturn results;\n\t}\n\n\t// Try to shortcut find operations (as opposed to filters) in HTML documents\n\tif ( !seed ) {\n\n\t\tif ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) {\n\t\t\tsetDocument( context );\n\t\t}\n\t\tcontext = context || document;\n\n\t\tif ( documentIsHTML ) {\n\n\t\t\t// If the selector is sufficiently simple, try using a \"get*By*\" DOM method\n\t\t\t// (excepting DocumentFragment context, where the methods don't exist)\n\t\t\tif ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) {\n\n\t\t\t\t// ID selector\n\t\t\t\tif ( (m = match[1]) ) {\n\n\t\t\t\t\t// Document context\n\t\t\t\t\tif ( nodeType === 9 ) {\n\t\t\t\t\t\tif ( (elem = context.getElementById( m )) ) {\n\n\t\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\t\tif ( elem.id === m ) {\n\t\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t// Element context\n\t\t\t\t\t} else {\n\n\t\t\t\t\t\t// Support: IE, Opera, Webkit\n\t\t\t\t\t\t// TODO: identify versions\n\t\t\t\t\t\t// getElementById can match elements by name instead of ID\n\t\t\t\t\t\tif ( newContext && (elem = newContext.getElementById( m )) &&\n\t\t\t\t\t\t\tcontains( context, elem ) &&\n\t\t\t\t\t\t\telem.id === m ) {\n\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\treturn results;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t// Type selector\n\t\t\t\t} else if ( match[2] ) {\n\t\t\t\t\tpush.apply( results, context.getElementsByTagName( selector ) );\n\t\t\t\t\treturn results;\n\n\t\t\t\t// Class selector\n\t\t\t\t} else if ( (m = match[3]) && support.getElementsByClassName &&\n\t\t\t\t\tcontext.getElementsByClassName ) {\n\n\t\t\t\t\tpush.apply( results, context.getElementsByClassName( m ) );\n\t\t\t\t\treturn results;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Take advantage of querySelectorAll\n\t\t\tif ( support.qsa &&\n\t\t\t\t!compilerCache[ selector + \" \" ] &&\n\t\t\t\t(!rbuggyQSA || !rbuggyQSA.test( selector )) ) {\n\n\t\t\t\tif ( nodeType !== 1 ) {\n\t\t\t\t\tnewContext = context;\n\t\t\t\t\tnewSelector = selector;\n\n\t\t\t\t// qSA looks outside Element context, which is not what we want\n\t\t\t\t// Thanks to Andrew Dupont for this workaround technique\n\t\t\t\t// Support: IE <=8\n\t\t\t\t// Exclude object elements\n\t\t\t\t} else if ( context.nodeName.toLowerCase() !== \"object\" ) {\n\n\t\t\t\t\t// Capture the context ID, setting it first if necessary\n\t\t\t\t\tif ( (nid = context.getAttribute( \"id\" )) ) {\n\t\t\t\t\t\tnid = nid.replace( rescape, \"\\\\$&\" );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tcontext.setAttribute( \"id\", (nid = expando) );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prefix every selector in the list\n\t\t\t\t\tgroups = tokenize( selector );\n\t\t\t\t\ti = groups.length;\n\t\t\t\t\tnidselect = ridentifier.test( nid ) ? \"#\" + nid : \"[id='\" + nid + \"']\";\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tgroups[i] = nidselect + \" \" + toSelector( groups[i] );\n\t\t\t\t\t}\n\t\t\t\t\tnewSelector = groups.join( \",\" );\n\n\t\t\t\t\t// Expand context for sibling selectors\n\t\t\t\t\tnewContext = rsibling.test( selector ) && testContext( context.parentNode ) ||\n\t\t\t\t\t\tcontext;\n\t\t\t\t}\n\n\t\t\t\tif ( newSelector ) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tpush.apply( results,\n\t\t\t\t\t\t\tnewContext.querySelectorAll( newSelector )\n\t\t\t\t\t\t);\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t} catch ( qsaError ) {\n\t\t\t\t\t} finally {\n\t\t\t\t\t\tif ( nid === expando ) {\n\t\t\t\t\t\t\tcontext.removeAttribute( \"id\" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// All others\n\treturn select( selector.replace( rtrim, \"$1\" ), context, results, seed );\n}\n\n/**\n * Create key-value caches of limited size\n * @returns {function(string, object)} Returns the Object data after storing it on itself with\n *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n *\tdeleting the oldest entry\n */\nfunction createCache() {\n\tvar keys = [];\n\n\tfunction cache( key, value ) {\n\t\t// Use (key + \" \") to avoid collision with native prototype properties (see Issue #157)\n\t\tif ( keys.push( key + \" \" ) > Expr.cacheLength ) {\n\t\t\t// Only keep the most recent entries\n\t\t\tdelete cache[ keys.shift() ];\n\t\t}\n\t\treturn (cache[ key + \" \" ] = value);\n\t}\n\treturn cache;\n}\n\n/**\n * Mark a function for special use by Sizzle\n * @param {Function} fn The function to mark\n */\nfunction markFunction( fn ) {\n\tfn[ expando ] = true;\n\treturn fn;\n}\n\n/**\n * Support testing using an element\n * @param {Function} fn Passed the created div and expects a boolean result\n */\nfunction assert( fn ) {\n\tvar div = document.createElement(\"div\");\n\n\ttry {\n\t\treturn !!fn( div );\n\t} catch (e) {\n\t\treturn false;\n\t} finally {\n\t\t// Remove from its parent by default\n\t\tif ( div.parentNode ) {\n\t\t\tdiv.parentNode.removeChild( div );\n\t\t}\n\t\t// release memory in IE\n\t\tdiv = null;\n\t}\n}\n\n/**\n * Adds the same handler for all of the specified attrs\n * @param {String} attrs Pipe-separated list of attributes\n * @param {Function} handler The method that will be applied\n */\nfunction addHandle( attrs, handler ) {\n\tvar arr = attrs.split(\"|\"),\n\t\ti = arr.length;\n\n\twhile ( i-- ) {\n\t\tExpr.attrHandle[ arr[i] ] = handler;\n\t}\n}\n\n/**\n * Checks document order of two siblings\n * @param {Element} a\n * @param {Element} b\n * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n */\nfunction siblingCheck( a, b ) {\n\tvar cur = b && a,\n\t\tdiff = cur && a.nodeType === 1 && b.nodeType === 1 &&\n\t\t\t( ~b.sourceIndex || MAX_NEGATIVE ) -\n\t\t\t( ~a.sourceIndex || MAX_NEGATIVE );\n\n\t// Use IE sourceIndex if available on both nodes\n\tif ( diff ) {\n\t\treturn diff;\n\t}\n\n\t// Check if b follows a\n\tif ( cur ) {\n\t\twhile ( (cur = cur.nextSibling) ) {\n\t\t\tif ( cur === b ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a ? 1 : -1;\n}\n\n/**\n * Returns a function to use in pseudos for input types\n * @param {String} type\n */\nfunction createInputPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn name === \"input\" && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for buttons\n * @param {String} type\n */\nfunction createButtonPseudo( type ) {\n\treturn function( elem ) {\n\t\tvar name = elem.nodeName.toLowerCase();\n\t\treturn (name === \"input\" || name === \"button\") && elem.type === type;\n\t};\n}\n\n/**\n * Returns a function to use in pseudos for positionals\n * @param {Function} fn\n */\nfunction createPositionalPseudo( fn ) {\n\treturn markFunction(function( argument ) {\n\t\targument = +argument;\n\t\treturn markFunction(function( seed, matches ) {\n\t\t\tvar j,\n\t\t\t\tmatchIndexes = fn( [], seed.length, argument ),\n\t\t\t\ti = matchIndexes.length;\n\n\t\t\t// Match elements found at the specified indexes\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( seed[ (j = matchIndexes[i]) ] ) {\n\t\t\t\t\tseed[j] = !(matches[j] = seed[j]);\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t});\n}\n\n/**\n * Checks a node for validity as a Sizzle context\n * @param {Element|Object=} context\n * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n */\nfunction testContext( context ) {\n\treturn context && typeof context.getElementsByTagName !== \"undefined\" && context;\n}\n\n// Expose support vars for convenience\nsupport = Sizzle.support = {};\n\n/**\n * Detects XML nodes\n * @param {Element|Object} elem An element or a document\n * @returns {Boolean} True iff elem is a non-HTML XML node\n */\nisXML = Sizzle.isXML = function( elem ) {\n\t// documentElement is verified for cases where it doesn't yet exist\n\t// (such as loading iframes in IE - #4833)\n\tvar documentElement = elem && (elem.ownerDocument || elem).documentElement;\n\treturn documentElement ? documentElement.nodeName !== \"HTML\" : false;\n};\n\n/**\n * Sets document-related variables once based on the current document\n * @param {Element|Object} [doc] An element or document object to use to set the document\n * @returns {Object} Returns the current document\n */\nsetDocument = Sizzle.setDocument = function( node ) {\n\tvar hasCompare, parent,\n\t\tdoc = node ? node.ownerDocument || node : preferredDoc;\n\n\t// Return early if doc is invalid or already selected\n\tif ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) {\n\t\treturn document;\n\t}\n\n\t// Update global variables\n\tdocument = doc;\n\tdocElem = document.documentElement;\n\tdocumentIsHTML = !isXML( document );\n\n\t// Support: IE 9-11, Edge\n\t// Accessing iframe documents after unload throws \"permission denied\" errors (jQuery #13936)\n\tif ( (parent = document.defaultView) && parent.top !== parent ) {\n\t\t// Support: IE 11\n\t\tif ( parent.addEventListener ) {\n\t\t\tparent.addEventListener( \"unload\", unloadHandler, false );\n\n\t\t// Support: IE 9 - 10 only\n\t\t} else if ( parent.attachEvent ) {\n\t\t\tparent.attachEvent( \"onunload\", unloadHandler );\n\t\t}\n\t}\n\n\t/* Attributes\n\t---------------------------------------------------------------------- */\n\n\t// Support: IE<8\n\t// Verify that getAttribute really returns attributes and not properties\n\t// (excepting IE8 booleans)\n\tsupport.attributes = assert(function( div ) {\n\t\tdiv.className = \"i\";\n\t\treturn !div.getAttribute(\"className\");\n\t});\n\n\t/* getElement(s)By*\n\t---------------------------------------------------------------------- */\n\n\t// Check if getElementsByTagName(\"*\") returns only elements\n\tsupport.getElementsByTagName = assert(function( div ) {\n\t\tdiv.appendChild( document.createComment(\"\") );\n\t\treturn !div.getElementsByTagName(\"*\").length;\n\t});\n\n\t// Support: IE<9\n\tsupport.getElementsByClassName = rnative.test( document.getElementsByClassName );\n\n\t// Support: IE<10\n\t// Check if getElementById returns elements by name\n\t// The broken getElementById methods don't pick up programatically-set names,\n\t// so use a roundabout getElementsByName test\n\tsupport.getById = assert(function( div ) {\n\t\tdocElem.appendChild( div ).id = expando;\n\t\treturn !document.getElementsByName || !document.getElementsByName( expando ).length;\n\t});\n\n\t// ID find and filter\n\tif ( support.getById ) {\n\t\tExpr.find[\"ID\"] = function( id, context ) {\n\t\t\tif ( typeof context.getElementById !== \"undefined\" && documentIsHTML ) {\n\t\t\t\tvar m = context.getElementById( id );\n\t\t\t\treturn m ? [ m ] : [];\n\t\t\t}\n\t\t};\n\t\tExpr.filter[\"ID\"] = function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn elem.getAttribute(\"id\") === attrId;\n\t\t\t};\n\t\t};\n\t} else {\n\t\t// Support: IE6/7\n\t\t// getElementById is not reliable as a find shortcut\n\t\tdelete Expr.find[\"ID\"];\n\n\t\tExpr.filter[\"ID\"] =  function( id ) {\n\t\t\tvar attrId = id.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\tvar node = typeof elem.getAttributeNode !== \"undefined\" &&\n\t\t\t\t\telem.getAttributeNode(\"id\");\n\t\t\t\treturn node && node.value === attrId;\n\t\t\t};\n\t\t};\n\t}\n\n\t// Tag\n\tExpr.find[\"TAG\"] = support.getElementsByTagName ?\n\t\tfunction( tag, context ) {\n\t\t\tif ( typeof context.getElementsByTagName !== \"undefined\" ) {\n\t\t\t\treturn context.getElementsByTagName( tag );\n\n\t\t\t// DocumentFragment nodes don't have gEBTN\n\t\t\t} else if ( support.qsa ) {\n\t\t\t\treturn context.querySelectorAll( tag );\n\t\t\t}\n\t\t} :\n\n\t\tfunction( tag, context ) {\n\t\t\tvar elem,\n\t\t\t\ttmp = [],\n\t\t\t\ti = 0,\n\t\t\t\t// By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n\t\t\t\tresults = context.getElementsByTagName( tag );\n\n\t\t\t// Filter out possible comments\n\t\t\tif ( tag === \"*\" ) {\n\t\t\t\twhile ( (elem = results[i++]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\ttmp.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn tmp;\n\t\t\t}\n\t\t\treturn results;\n\t\t};\n\n\t// Class\n\tExpr.find[\"CLASS\"] = support.getElementsByClassName && function( className, context ) {\n\t\tif ( typeof context.getElementsByClassName !== \"undefined\" && documentIsHTML ) {\n\t\t\treturn context.getElementsByClassName( className );\n\t\t}\n\t};\n\n\t/* QSA/matchesSelector\n\t---------------------------------------------------------------------- */\n\n\t// QSA and matchesSelector support\n\n\t// matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\trbuggyMatches = [];\n\n\t// qSa(:focus) reports false when true (Chrome 21)\n\t// We allow this because of a bug in IE8/9 that throws an error\n\t// whenever `document.activeElement` is accessed on an iframe\n\t// So, we allow :focus to pass through QSA all the time to avoid the IE error\n\t// See http://bugs.jquery.com/ticket/13378\n\trbuggyQSA = [];\n\n\tif ( (support.qsa = rnative.test( document.querySelectorAll )) ) {\n\t\t// Build QSA regex\n\t\t// Regex strategy adopted from Diego Perini\n\t\tassert(function( div ) {\n\t\t\t// Select is set to empty string on purpose\n\t\t\t// This is to test IE's treatment of not explicitly\n\t\t\t// setting a boolean content attribute,\n\t\t\t// since its presence should be enough\n\t\t\t// http://bugs.jquery.com/ticket/12359\n\t\t\tdocElem.appendChild( div ).innerHTML = \"<a id='\" + expando + \"'></a>\" +\n\t\t\t\t\"<select id='\" + expando + \"-\\r\\\\' msallowcapture=''>\" +\n\t\t\t\t\"<option selected=''></option></select>\";\n\n\t\t\t// Support: IE8, Opera 11-12.16\n\t\t\t// Nothing should be selected when empty strings follow ^= or $= or *=\n\t\t\t// The test attribute must be unknown in Opera but \"safe\" for WinRT\n\t\t\t// http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\t\t\tif ( div.querySelectorAll(\"[msallowcapture^='']\").length ) {\n\t\t\t\trbuggyQSA.push( \"[*^$]=\" + whitespace + \"*(?:''|\\\"\\\")\" );\n\t\t\t}\n\n\t\t\t// Support: IE8\n\t\t\t// Boolean attributes and \"value\" are not treated correctly\n\t\t\tif ( !div.querySelectorAll(\"[selected]\").length ) {\n\t\t\t\trbuggyQSA.push( \"\\\\[\" + whitespace + \"*(?:value|\" + booleans + \")\" );\n\t\t\t}\n\n\t\t\t// Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\t\t\tif ( !div.querySelectorAll( \"[id~=\" + expando + \"-]\" ).length ) {\n\t\t\t\trbuggyQSA.push(\"~=\");\n\t\t\t}\n\n\t\t\t// Webkit/Opera - :checked should return selected option elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":checked\").length ) {\n\t\t\t\trbuggyQSA.push(\":checked\");\n\t\t\t}\n\n\t\t\t// Support: Safari 8+, iOS 8+\n\t\t\t// https://bugs.webkit.org/show_bug.cgi?id=136851\n\t\t\t// In-page `selector#id sibing-combinator selector` fails\n\t\t\tif ( !div.querySelectorAll( \"a#\" + expando + \"+*\" ).length ) {\n\t\t\t\trbuggyQSA.push(\".#.+[+~]\");\n\t\t\t}\n\t\t});\n\n\t\tassert(function( div ) {\n\t\t\t// Support: Windows 8 Native Apps\n\t\t\t// The type and name attributes are restricted during .innerHTML assignment\n\t\t\tvar input = document.createElement(\"input\");\n\t\t\tinput.setAttribute( \"type\", \"hidden\" );\n\t\t\tdiv.appendChild( input ).setAttribute( \"name\", \"D\" );\n\n\t\t\t// Support: IE8\n\t\t\t// Enforce case-sensitivity of name attribute\n\t\t\tif ( div.querySelectorAll(\"[name=d]\").length ) {\n\t\t\t\trbuggyQSA.push( \"name\" + whitespace + \"*[*^$|!~]?=\" );\n\t\t\t}\n\n\t\t\t// FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n\t\t\t// IE8 throws error here and will not see later tests\n\t\t\tif ( !div.querySelectorAll(\":enabled\").length ) {\n\t\t\t\trbuggyQSA.push( \":enabled\", \":disabled\" );\n\t\t\t}\n\n\t\t\t// Opera 10-11 does not throw on post-comma invalid pseudos\n\t\t\tdiv.querySelectorAll(\"*,:x\");\n\t\t\trbuggyQSA.push(\",.*:\");\n\t\t});\n\t}\n\n\tif ( (support.matchesSelector = rnative.test( (matches = docElem.matches ||\n\t\tdocElem.webkitMatchesSelector ||\n\t\tdocElem.mozMatchesSelector ||\n\t\tdocElem.oMatchesSelector ||\n\t\tdocElem.msMatchesSelector) )) ) {\n\n\t\tassert(function( div ) {\n\t\t\t// Check to see if it's possible to do matchesSelector\n\t\t\t// on a disconnected node (IE 9)\n\t\t\tsupport.disconnectedMatch = matches.call( div, \"div\" );\n\n\t\t\t// This should fail with an exception\n\t\t\t// Gecko does not error, returns false instead\n\t\t\tmatches.call( div, \"[s!='']:x\" );\n\t\t\trbuggyMatches.push( \"!=\", pseudos );\n\t\t});\n\t}\n\n\trbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join(\"|\") );\n\trbuggyMatches = rbuggyMatches.length && new RegExp( rbuggyMatches.join(\"|\") );\n\n\t/* Contains\n\t---------------------------------------------------------------------- */\n\thasCompare = rnative.test( docElem.compareDocumentPosition );\n\n\t// Element contains another\n\t// Purposefully self-exclusive\n\t// As in, an element does not contain itself\n\tcontains = hasCompare || rnative.test( docElem.contains ) ?\n\t\tfunction( a, b ) {\n\t\t\tvar adown = a.nodeType === 9 ? a.documentElement : a,\n\t\t\t\tbup = b && b.parentNode;\n\t\t\treturn a === bup || !!( bup && bup.nodeType === 1 && (\n\t\t\t\tadown.contains ?\n\t\t\t\t\tadown.contains( bup ) :\n\t\t\t\t\ta.compareDocumentPosition && a.compareDocumentPosition( bup ) & 16\n\t\t\t));\n\t\t} :\n\t\tfunction( a, b ) {\n\t\t\tif ( b ) {\n\t\t\t\twhile ( (b = b.parentNode) ) {\n\t\t\t\t\tif ( b === a ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn false;\n\t\t};\n\n\t/* Sorting\n\t---------------------------------------------------------------------- */\n\n\t// Document order sorting\n\tsortOrder = hasCompare ?\n\tfunction( a, b ) {\n\n\t\t// Flag for duplicate removal\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\t// Sort on method existence if only one input has compareDocumentPosition\n\t\tvar compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\t\tif ( compare ) {\n\t\t\treturn compare;\n\t\t}\n\n\t\t// Calculate position if both inputs belong to the same document\n\t\tcompare = ( a.ownerDocument || a ) === ( b.ownerDocument || b ) ?\n\t\t\ta.compareDocumentPosition( b ) :\n\n\t\t\t// Otherwise we know they are disconnected\n\t\t\t1;\n\n\t\t// Disconnected nodes\n\t\tif ( compare & 1 ||\n\t\t\t(!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) {\n\n\t\t\t// Choose the first element that is related to our preferred document\n\t\t\tif ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) {\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\tif ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) {\n\t\t\t\treturn 1;\n\t\t\t}\n\n\t\t\t// Maintain original order\n\t\t\treturn sortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\t\t}\n\n\t\treturn compare & 4 ? -1 : 1;\n\t} :\n\tfunction( a, b ) {\n\t\t// Exit early if the nodes are identical\n\t\tif ( a === b ) {\n\t\t\thasDuplicate = true;\n\t\t\treturn 0;\n\t\t}\n\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\taup = a.parentNode,\n\t\t\tbup = b.parentNode,\n\t\t\tap = [ a ],\n\t\t\tbp = [ b ];\n\n\t\t// Parentless nodes are either documents or disconnected\n\t\tif ( !aup || !bup ) {\n\t\t\treturn a === document ? -1 :\n\t\t\t\tb === document ? 1 :\n\t\t\t\taup ? -1 :\n\t\t\t\tbup ? 1 :\n\t\t\t\tsortInput ?\n\t\t\t\t( indexOf( sortInput, a ) - indexOf( sortInput, b ) ) :\n\t\t\t\t0;\n\n\t\t// If the nodes are siblings, we can do a quick check\n\t\t} else if ( aup === bup ) {\n\t\t\treturn siblingCheck( a, b );\n\t\t}\n\n\t\t// Otherwise we need full lists of their ancestors for comparison\n\t\tcur = a;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tap.unshift( cur );\n\t\t}\n\t\tcur = b;\n\t\twhile ( (cur = cur.parentNode) ) {\n\t\t\tbp.unshift( cur );\n\t\t}\n\n\t\t// Walk down the tree looking for a discrepancy\n\t\twhile ( ap[i] === bp[i] ) {\n\t\t\ti++;\n\t\t}\n\n\t\treturn i ?\n\t\t\t// Do a sibling check if the nodes have a common ancestor\n\t\t\tsiblingCheck( ap[i], bp[i] ) :\n\n\t\t\t// Otherwise nodes in our document sort first\n\t\t\tap[i] === preferredDoc ? -1 :\n\t\t\tbp[i] === preferredDoc ? 1 :\n\t\t\t0;\n\t};\n\n\treturn document;\n};\n\nSizzle.matches = function( expr, elements ) {\n\treturn Sizzle( expr, null, null, elements );\n};\n\nSizzle.matchesSelector = function( elem, expr ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\t// Make sure that attribute selectors are quoted\n\texpr = expr.replace( rattributeQuotes, \"='$1']\" );\n\n\tif ( support.matchesSelector && documentIsHTML &&\n\t\t!compilerCache[ expr + \" \" ] &&\n\t\t( !rbuggyMatches || !rbuggyMatches.test( expr ) ) &&\n\t\t( !rbuggyQSA     || !rbuggyQSA.test( expr ) ) ) {\n\n\t\ttry {\n\t\t\tvar ret = matches.call( elem, expr );\n\n\t\t\t// IE 9's matchesSelector returns false on disconnected nodes\n\t\t\tif ( ret || support.disconnectedMatch ||\n\t\t\t\t\t// As well, disconnected nodes are said to be in a document\n\t\t\t\t\t// fragment in IE 9\n\t\t\t\t\telem.document && elem.document.nodeType !== 11 ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\t\t} catch (e) {}\n\t}\n\n\treturn Sizzle( expr, document, null, [ elem ] ).length > 0;\n};\n\nSizzle.contains = function( context, elem ) {\n\t// Set document vars if needed\n\tif ( ( context.ownerDocument || context ) !== document ) {\n\t\tsetDocument( context );\n\t}\n\treturn contains( context, elem );\n};\n\nSizzle.attr = function( elem, name ) {\n\t// Set document vars if needed\n\tif ( ( elem.ownerDocument || elem ) !== document ) {\n\t\tsetDocument( elem );\n\t}\n\n\tvar fn = Expr.attrHandle[ name.toLowerCase() ],\n\t\t// Don't get fooled by Object.prototype properties (jQuery #13807)\n\t\tval = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ?\n\t\t\tfn( elem, name, !documentIsHTML ) :\n\t\t\tundefined;\n\n\treturn val !== undefined ?\n\t\tval :\n\t\tsupport.attributes || !documentIsHTML ?\n\t\t\telem.getAttribute( name ) :\n\t\t\t(val = elem.getAttributeNode(name)) && val.specified ?\n\t\t\t\tval.value :\n\t\t\t\tnull;\n};\n\nSizzle.error = function( msg ) {\n\tthrow new Error( \"Syntax error, unrecognized expression: \" + msg );\n};\n\n/**\n * Document sorting and removing duplicates\n * @param {ArrayLike} results\n */\nSizzle.uniqueSort = function( results ) {\n\tvar elem,\n\t\tduplicates = [],\n\t\tj = 0,\n\t\ti = 0;\n\n\t// Unless we *know* we can detect duplicates, assume their presence\n\thasDuplicate = !support.detectDuplicates;\n\tsortInput = !support.sortStable && results.slice( 0 );\n\tresults.sort( sortOrder );\n\n\tif ( hasDuplicate ) {\n\t\twhile ( (elem = results[i++]) ) {\n\t\t\tif ( elem === results[ i ] ) {\n\t\t\t\tj = duplicates.push( i );\n\t\t\t}\n\t\t}\n\t\twhile ( j-- ) {\n\t\t\tresults.splice( duplicates[ j ], 1 );\n\t\t}\n\t}\n\n\t// Clear input after sorting to release objects\n\t// See https://github.com/jquery/sizzle/pull/225\n\tsortInput = null;\n\n\treturn results;\n};\n\n/**\n * Utility function for retrieving the text value of an array of DOM nodes\n * @param {Array|Element} elem\n */\ngetText = Sizzle.getText = function( elem ) {\n\tvar node,\n\t\tret = \"\",\n\t\ti = 0,\n\t\tnodeType = elem.nodeType;\n\n\tif ( !nodeType ) {\n\t\t// If no nodeType, this is expected to be an array\n\t\twhile ( (node = elem[i++]) ) {\n\t\t\t// Do not traverse comment nodes\n\t\t\tret += getText( node );\n\t\t}\n\t} else if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) {\n\t\t// Use textContent for elements\n\t\t// innerText usage removed for consistency of new lines (jQuery #11153)\n\t\tif ( typeof elem.textContent === \"string\" ) {\n\t\t\treturn elem.textContent;\n\t\t} else {\n\t\t\t// Traverse its children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tret += getText( elem );\n\t\t\t}\n\t\t}\n\t} else if ( nodeType === 3 || nodeType === 4 ) {\n\t\treturn elem.nodeValue;\n\t}\n\t// Do not include comment or processing instruction nodes\n\n\treturn ret;\n};\n\nExpr = Sizzle.selectors = {\n\n\t// Can be adjusted by the user\n\tcacheLength: 50,\n\n\tcreatePseudo: markFunction,\n\n\tmatch: matchExpr,\n\n\tattrHandle: {},\n\n\tfind: {},\n\n\trelative: {\n\t\t\">\": { dir: \"parentNode\", first: true },\n\t\t\" \": { dir: \"parentNode\" },\n\t\t\"+\": { dir: \"previousSibling\", first: true },\n\t\t\"~\": { dir: \"previousSibling\" }\n\t},\n\n\tpreFilter: {\n\t\t\"ATTR\": function( match ) {\n\t\t\tmatch[1] = match[1].replace( runescape, funescape );\n\n\t\t\t// Move the given value to match[3] whether quoted or unquoted\n\t\t\tmatch[3] = ( match[3] || match[4] || match[5] || \"\" ).replace( runescape, funescape );\n\n\t\t\tif ( match[2] === \"~=\" ) {\n\t\t\t\tmatch[3] = \" \" + match[3] + \" \";\n\t\t\t}\n\n\t\t\treturn match.slice( 0, 4 );\n\t\t},\n\n\t\t\"CHILD\": function( match ) {\n\t\t\t/* matches from matchExpr[\"CHILD\"]\n\t\t\t\t1 type (only|nth|...)\n\t\t\t\t2 what (child|of-type)\n\t\t\t\t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n\t\t\t\t4 xn-component of xn+y argument ([+-]?\\d*n|)\n\t\t\t\t5 sign of xn-component\n\t\t\t\t6 x of xn-component\n\t\t\t\t7 sign of y-component\n\t\t\t\t8 y of y-component\n\t\t\t*/\n\t\t\tmatch[1] = match[1].toLowerCase();\n\n\t\t\tif ( match[1].slice( 0, 3 ) === \"nth\" ) {\n\t\t\t\t// nth-* requires argument\n\t\t\t\tif ( !match[3] ) {\n\t\t\t\t\tSizzle.error( match[0] );\n\t\t\t\t}\n\n\t\t\t\t// numeric x and y parameters for Expr.filter.CHILD\n\t\t\t\t// remember that false/true cast respectively to 0/1\n\t\t\t\tmatch[4] = +( match[4] ? match[5] + (match[6] || 1) : 2 * ( match[3] === \"even\" || match[3] === \"odd\" ) );\n\t\t\t\tmatch[5] = +( ( match[7] + match[8] ) || match[3] === \"odd\" );\n\n\t\t\t// other types prohibit arguments\n\t\t\t} else if ( match[3] ) {\n\t\t\t\tSizzle.error( match[0] );\n\t\t\t}\n\n\t\t\treturn match;\n\t\t},\n\n\t\t\"PSEUDO\": function( match ) {\n\t\t\tvar excess,\n\t\t\t\tunquoted = !match[6] && match[2];\n\n\t\t\tif ( matchExpr[\"CHILD\"].test( match[0] ) ) {\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\t// Accept quoted arguments as-is\n\t\t\tif ( match[3] ) {\n\t\t\t\tmatch[2] = match[4] || match[5] || \"\";\n\n\t\t\t// Strip excess characters from unquoted arguments\n\t\t\t} else if ( unquoted && rpseudo.test( unquoted ) &&\n\t\t\t\t// Get excess from tokenize (recursively)\n\t\t\t\t(excess = tokenize( unquoted, true )) &&\n\t\t\t\t// advance to the next closing parenthesis\n\t\t\t\t(excess = unquoted.indexOf( \")\", unquoted.length - excess ) - unquoted.length) ) {\n\n\t\t\t\t// excess is a negative index\n\t\t\t\tmatch[0] = match[0].slice( 0, excess );\n\t\t\t\tmatch[2] = unquoted.slice( 0, excess );\n\t\t\t}\n\n\t\t\t// Return only captures needed by the pseudo filter method (type and argument)\n\t\t\treturn match.slice( 0, 3 );\n\t\t}\n\t},\n\n\tfilter: {\n\n\t\t\"TAG\": function( nodeNameSelector ) {\n\t\t\tvar nodeName = nodeNameSelector.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn nodeNameSelector === \"*\" ?\n\t\t\t\tfunction() { return true; } :\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n\t\t\t\t};\n\t\t},\n\n\t\t\"CLASS\": function( className ) {\n\t\t\tvar pattern = classCache[ className + \" \" ];\n\n\t\t\treturn pattern ||\n\t\t\t\t(pattern = new RegExp( \"(^|\" + whitespace + \")\" + className + \"(\" + whitespace + \"|$)\" )) &&\n\t\t\t\tclassCache( className, function( elem ) {\n\t\t\t\t\treturn pattern.test( typeof elem.className === \"string\" && elem.className || typeof elem.getAttribute !== \"undefined\" && elem.getAttribute(\"class\") || \"\" );\n\t\t\t\t});\n\t\t},\n\n\t\t\"ATTR\": function( name, operator, check ) {\n\t\t\treturn function( elem ) {\n\t\t\t\tvar result = Sizzle.attr( elem, name );\n\n\t\t\t\tif ( result == null ) {\n\t\t\t\t\treturn operator === \"!=\";\n\t\t\t\t}\n\t\t\t\tif ( !operator ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\n\t\t\t\tresult += \"\";\n\n\t\t\t\treturn operator === \"=\" ? result === check :\n\t\t\t\t\toperator === \"!=\" ? result !== check :\n\t\t\t\t\toperator === \"^=\" ? check && result.indexOf( check ) === 0 :\n\t\t\t\t\toperator === \"*=\" ? check && result.indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"$=\" ? check && result.slice( -check.length ) === check :\n\t\t\t\t\toperator === \"~=\" ? ( \" \" + result.replace( rwhitespace, \" \" ) + \" \" ).indexOf( check ) > -1 :\n\t\t\t\t\toperator === \"|=\" ? result === check || result.slice( 0, check.length + 1 ) === check + \"-\" :\n\t\t\t\t\tfalse;\n\t\t\t};\n\t\t},\n\n\t\t\"CHILD\": function( type, what, argument, first, last ) {\n\t\t\tvar simple = type.slice( 0, 3 ) !== \"nth\",\n\t\t\t\tforward = type.slice( -4 ) !== \"last\",\n\t\t\t\tofType = what === \"of-type\";\n\n\t\t\treturn first === 1 && last === 0 ?\n\n\t\t\t\t// Shortcut for :nth-*(n)\n\t\t\t\tfunction( elem ) {\n\t\t\t\t\treturn !!elem.parentNode;\n\t\t\t\t} :\n\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tvar cache, uniqueCache, outerCache, node, nodeIndex, start,\n\t\t\t\t\t\tdir = simple !== forward ? \"nextSibling\" : \"previousSibling\",\n\t\t\t\t\t\tparent = elem.parentNode,\n\t\t\t\t\t\tname = ofType && elem.nodeName.toLowerCase(),\n\t\t\t\t\t\tuseCache = !xml && !ofType,\n\t\t\t\t\t\tdiff = false;\n\n\t\t\t\t\tif ( parent ) {\n\n\t\t\t\t\t\t// :(first|last|only)-(child|of-type)\n\t\t\t\t\t\tif ( simple ) {\n\t\t\t\t\t\t\twhile ( dir ) {\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\twhile ( (node = node[ dir ]) ) {\n\t\t\t\t\t\t\t\t\tif ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) {\n\n\t\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t// Reverse direction for :only-* (if we haven't yet done so)\n\t\t\t\t\t\t\t\tstart = dir = type === \"only\" && !start && \"nextSibling\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tstart = [ forward ? parent.firstChild : parent.lastChild ];\n\n\t\t\t\t\t\t// non-xml :nth-child(...) stores cache data on `parent`\n\t\t\t\t\t\tif ( forward && useCache ) {\n\n\t\t\t\t\t\t\t// Seek `elem` from a previously-cached index\n\n\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\tnode = parent;\n\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\tdiff = nodeIndex && cache[ 2 ];\n\t\t\t\t\t\t\tnode = nodeIndex && parent.childNodes[ nodeIndex ];\n\n\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\n\t\t\t\t\t\t\t\t// Fallback to seeking `elem` from the start\n\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t// When found, cache indexes on `parent` and break\n\t\t\t\t\t\t\t\tif ( node.nodeType === 1 && ++diff && node === elem ) {\n\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, nodeIndex, diff ];\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Use previously-cached element index if available\n\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t// ...in a gzip-friendly way\n\t\t\t\t\t\t\t\tnode = elem;\n\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\tcache = uniqueCache[ type ] || [];\n\t\t\t\t\t\t\t\tnodeIndex = cache[ 0 ] === dirruns && cache[ 1 ];\n\t\t\t\t\t\t\t\tdiff = nodeIndex;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t// xml :nth-child(...)\n\t\t\t\t\t\t\t// or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\t\t\t\t\t\t\tif ( diff === false ) {\n\t\t\t\t\t\t\t\t// Use the same loop as above to seek `elem` from the start\n\t\t\t\t\t\t\t\twhile ( (node = ++nodeIndex && node && node[ dir ] ||\n\t\t\t\t\t\t\t\t\t(diff = nodeIndex = 0) || start.pop()) ) {\n\n\t\t\t\t\t\t\t\t\tif ( ( ofType ?\n\t\t\t\t\t\t\t\t\t\tnode.nodeName.toLowerCase() === name :\n\t\t\t\t\t\t\t\t\t\tnode.nodeType === 1 ) &&\n\t\t\t\t\t\t\t\t\t\t++diff ) {\n\n\t\t\t\t\t\t\t\t\t\t// Cache the index of each encountered element\n\t\t\t\t\t\t\t\t\t\tif ( useCache ) {\n\t\t\t\t\t\t\t\t\t\t\touterCache = node[ expando ] || (node[ expando ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache = outerCache[ node.uniqueID ] ||\n\t\t\t\t\t\t\t\t\t\t\t\t(outerCache[ node.uniqueID ] = {});\n\n\t\t\t\t\t\t\t\t\t\t\tuniqueCache[ type ] = [ dirruns, diff ];\n\t\t\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t\t\tif ( node === elem ) {\n\t\t\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Incorporate the offset, then check against cycle size\n\t\t\t\t\t\tdiff -= last;\n\t\t\t\t\t\treturn diff === first || ( diff % first === 0 && diff / first >= 0 );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t},\n\n\t\t\"PSEUDO\": function( pseudo, argument ) {\n\t\t\t// pseudo-class names are case-insensitive\n\t\t\t// http://www.w3.org/TR/selectors/#pseudo-classes\n\t\t\t// Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n\t\t\t// Remember that setFilters inherits from pseudos\n\t\t\tvar args,\n\t\t\t\tfn = Expr.pseudos[ pseudo ] || Expr.setFilters[ pseudo.toLowerCase() ] ||\n\t\t\t\t\tSizzle.error( \"unsupported pseudo: \" + pseudo );\n\n\t\t\t// The user may use createPseudo to indicate that\n\t\t\t// arguments are needed to create the filter function\n\t\t\t// just as Sizzle does\n\t\t\tif ( fn[ expando ] ) {\n\t\t\t\treturn fn( argument );\n\t\t\t}\n\n\t\t\t// But maintain support for old signatures\n\t\t\tif ( fn.length > 1 ) {\n\t\t\t\targs = [ pseudo, pseudo, \"\", argument ];\n\t\t\t\treturn Expr.setFilters.hasOwnProperty( pseudo.toLowerCase() ) ?\n\t\t\t\t\tmarkFunction(function( seed, matches ) {\n\t\t\t\t\t\tvar idx,\n\t\t\t\t\t\t\tmatched = fn( seed, argument ),\n\t\t\t\t\t\t\ti = matched.length;\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tidx = indexOf( seed, matched[i] );\n\t\t\t\t\t\t\tseed[ idx ] = !( matches[ idx ] = matched[i] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}) :\n\t\t\t\t\tfunction( elem ) {\n\t\t\t\t\t\treturn fn( elem, 0, args );\n\t\t\t\t\t};\n\t\t\t}\n\n\t\t\treturn fn;\n\t\t}\n\t},\n\n\tpseudos: {\n\t\t// Potentially complex pseudos\n\t\t\"not\": markFunction(function( selector ) {\n\t\t\t// Trim the selector passed to compile\n\t\t\t// to avoid treating leading and trailing\n\t\t\t// spaces as combinators\n\t\t\tvar input = [],\n\t\t\t\tresults = [],\n\t\t\t\tmatcher = compile( selector.replace( rtrim, \"$1\" ) );\n\n\t\t\treturn matcher[ expando ] ?\n\t\t\t\tmarkFunction(function( seed, matches, context, xml ) {\n\t\t\t\t\tvar elem,\n\t\t\t\t\t\tunmatched = matcher( seed, null, xml, [] ),\n\t\t\t\t\t\ti = seed.length;\n\n\t\t\t\t\t// Match elements unmatched by `matcher`\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = unmatched[i]) ) {\n\t\t\t\t\t\t\tseed[i] = !(matches[i] = elem);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}) :\n\t\t\t\tfunction( elem, context, xml ) {\n\t\t\t\t\tinput[0] = elem;\n\t\t\t\t\tmatcher( input, null, xml, results );\n\t\t\t\t\t// Don't keep the element (issue #299)\n\t\t\t\t\tinput[0] = null;\n\t\t\t\t\treturn !results.pop();\n\t\t\t\t};\n\t\t}),\n\n\t\t\"has\": markFunction(function( selector ) {\n\t\t\treturn function( elem ) {\n\t\t\t\treturn Sizzle( selector, elem ).length > 0;\n\t\t\t};\n\t\t}),\n\n\t\t\"contains\": markFunction(function( text ) {\n\t\t\ttext = text.replace( runescape, funescape );\n\t\t\treturn function( elem ) {\n\t\t\t\treturn ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1;\n\t\t\t};\n\t\t}),\n\n\t\t// \"Whether an element is represented by a :lang() selector\n\t\t// is based solely on the element's language value\n\t\t// being equal to the identifier C,\n\t\t// or beginning with the identifier C immediately followed by \"-\".\n\t\t// The matching of C against the element's language value is performed case-insensitively.\n\t\t// The identifier C does not have to be a valid language name.\"\n\t\t// http://www.w3.org/TR/selectors/#lang-pseudo\n\t\t\"lang\": markFunction( function( lang ) {\n\t\t\t// lang value must be a valid identifier\n\t\t\tif ( !ridentifier.test(lang || \"\") ) {\n\t\t\t\tSizzle.error( \"unsupported lang: \" + lang );\n\t\t\t}\n\t\t\tlang = lang.replace( runescape, funescape ).toLowerCase();\n\t\t\treturn function( elem ) {\n\t\t\t\tvar elemLang;\n\t\t\t\tdo {\n\t\t\t\t\tif ( (elemLang = documentIsHTML ?\n\t\t\t\t\t\telem.lang :\n\t\t\t\t\t\telem.getAttribute(\"xml:lang\") || elem.getAttribute(\"lang\")) ) {\n\n\t\t\t\t\t\telemLang = elemLang.toLowerCase();\n\t\t\t\t\t\treturn elemLang === lang || elemLang.indexOf( lang + \"-\" ) === 0;\n\t\t\t\t\t}\n\t\t\t\t} while ( (elem = elem.parentNode) && elem.nodeType === 1 );\n\t\t\t\treturn false;\n\t\t\t};\n\t\t}),\n\n\t\t// Miscellaneous\n\t\t\"target\": function( elem ) {\n\t\t\tvar hash = window.location && window.location.hash;\n\t\t\treturn hash && hash.slice( 1 ) === elem.id;\n\t\t},\n\n\t\t\"root\": function( elem ) {\n\t\t\treturn elem === docElem;\n\t\t},\n\n\t\t\"focus\": function( elem ) {\n\t\t\treturn elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n\t\t},\n\n\t\t// Boolean properties\n\t\t\"enabled\": function( elem ) {\n\t\t\treturn elem.disabled === false;\n\t\t},\n\n\t\t\"disabled\": function( elem ) {\n\t\t\treturn elem.disabled === true;\n\t\t},\n\n\t\t\"checked\": function( elem ) {\n\t\t\t// In CSS3, :checked should return both checked and selected elements\n\t\t\t// http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n\t\t\tvar nodeName = elem.nodeName.toLowerCase();\n\t\t\treturn (nodeName === \"input\" && !!elem.checked) || (nodeName === \"option\" && !!elem.selected);\n\t\t},\n\n\t\t\"selected\": function( elem ) {\n\t\t\t// Accessing this property makes selected-by-default\n\t\t\t// options in Safari work properly\n\t\t\tif ( elem.parentNode ) {\n\t\t\t\telem.parentNode.selectedIndex;\n\t\t\t}\n\n\t\t\treturn elem.selected === true;\n\t\t},\n\n\t\t// Contents\n\t\t\"empty\": function( elem ) {\n\t\t\t// http://www.w3.org/TR/selectors/#empty-pseudo\n\t\t\t// :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n\t\t\t//   but not by others (comment: 8; processing instruction: 7; etc.)\n\t\t\t// nodeType < 6 works because attributes (2) do not appear as children\n\t\t\tfor ( elem = elem.firstChild; elem; elem = elem.nextSibling ) {\n\t\t\t\tif ( elem.nodeType < 6 ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t},\n\n\t\t\"parent\": function( elem ) {\n\t\t\treturn !Expr.pseudos[\"empty\"]( elem );\n\t\t},\n\n\t\t// Element/input types\n\t\t\"header\": function( elem ) {\n\t\t\treturn rheader.test( elem.nodeName );\n\t\t},\n\n\t\t\"input\": function( elem ) {\n\t\t\treturn rinputs.test( elem.nodeName );\n\t\t},\n\n\t\t\"button\": function( elem ) {\n\t\t\tvar name = elem.nodeName.toLowerCase();\n\t\t\treturn name === \"input\" && elem.type === \"button\" || name === \"button\";\n\t\t},\n\n\t\t\"text\": function( elem ) {\n\t\t\tvar attr;\n\t\t\treturn elem.nodeName.toLowerCase() === \"input\" &&\n\t\t\t\telem.type === \"text\" &&\n\n\t\t\t\t// Support: IE<8\n\t\t\t\t// New HTML5 attribute values (e.g., \"search\") appear with elem.type === \"text\"\n\t\t\t\t( (attr = elem.getAttribute(\"type\")) == null || attr.toLowerCase() === \"text\" );\n\t\t},\n\n\t\t// Position-in-collection\n\t\t\"first\": createPositionalPseudo(function() {\n\t\t\treturn [ 0 ];\n\t\t}),\n\n\t\t\"last\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\treturn [ length - 1 ];\n\t\t}),\n\n\t\t\"eq\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\treturn [ argument < 0 ? argument + length : argument ];\n\t\t}),\n\n\t\t\"even\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"odd\": createPositionalPseudo(function( matchIndexes, length ) {\n\t\t\tvar i = 1;\n\t\t\tfor ( ; i < length; i += 2 ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"lt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; --i >= 0; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t}),\n\n\t\t\"gt\": createPositionalPseudo(function( matchIndexes, length, argument ) {\n\t\t\tvar i = argument < 0 ? argument + length : argument;\n\t\t\tfor ( ; ++i < length; ) {\n\t\t\t\tmatchIndexes.push( i );\n\t\t\t}\n\t\t\treturn matchIndexes;\n\t\t})\n\t}\n};\n\nExpr.pseudos[\"nth\"] = Expr.pseudos[\"eq\"];\n\n// Add button/input type pseudos\nfor ( i in { radio: true, checkbox: true, file: true, password: true, image: true } ) {\n\tExpr.pseudos[ i ] = createInputPseudo( i );\n}\nfor ( i in { submit: true, reset: true } ) {\n\tExpr.pseudos[ i ] = createButtonPseudo( i );\n}\n\n// Easy API for creating new setFilters\nfunction setFilters() {}\nsetFilters.prototype = Expr.filters = Expr.pseudos;\nExpr.setFilters = new setFilters();\n\ntokenize = Sizzle.tokenize = function( selector, parseOnly ) {\n\tvar matched, match, tokens, type,\n\t\tsoFar, groups, preFilters,\n\t\tcached = tokenCache[ selector + \" \" ];\n\n\tif ( cached ) {\n\t\treturn parseOnly ? 0 : cached.slice( 0 );\n\t}\n\n\tsoFar = selector;\n\tgroups = [];\n\tpreFilters = Expr.preFilter;\n\n\twhile ( soFar ) {\n\n\t\t// Comma and first run\n\t\tif ( !matched || (match = rcomma.exec( soFar )) ) {\n\t\t\tif ( match ) {\n\t\t\t\t// Don't consume trailing commas as valid\n\t\t\t\tsoFar = soFar.slice( match[0].length ) || soFar;\n\t\t\t}\n\t\t\tgroups.push( (tokens = []) );\n\t\t}\n\n\t\tmatched = false;\n\n\t\t// Combinators\n\t\tif ( (match = rcombinators.exec( soFar )) ) {\n\t\t\tmatched = match.shift();\n\t\t\ttokens.push({\n\t\t\t\tvalue: matched,\n\t\t\t\t// Cast descendant combinators to space\n\t\t\t\ttype: match[0].replace( rtrim, \" \" )\n\t\t\t});\n\t\t\tsoFar = soFar.slice( matched.length );\n\t\t}\n\n\t\t// Filters\n\t\tfor ( type in Expr.filter ) {\n\t\t\tif ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] ||\n\t\t\t\t(match = preFilters[ type ]( match ))) ) {\n\t\t\t\tmatched = match.shift();\n\t\t\t\ttokens.push({\n\t\t\t\t\tvalue: matched,\n\t\t\t\t\ttype: type,\n\t\t\t\t\tmatches: match\n\t\t\t\t});\n\t\t\t\tsoFar = soFar.slice( matched.length );\n\t\t\t}\n\t\t}\n\n\t\tif ( !matched ) {\n\t\t\tbreak;\n\t\t}\n\t}\n\n\t// Return the length of the invalid excess\n\t// if we're just parsing\n\t// Otherwise, throw an error or return tokens\n\treturn parseOnly ?\n\t\tsoFar.length :\n\t\tsoFar ?\n\t\t\tSizzle.error( selector ) :\n\t\t\t// Cache the tokens\n\t\t\ttokenCache( selector, groups ).slice( 0 );\n};\n\nfunction toSelector( tokens ) {\n\tvar i = 0,\n\t\tlen = tokens.length,\n\t\tselector = \"\";\n\tfor ( ; i < len; i++ ) {\n\t\tselector += tokens[i].value;\n\t}\n\treturn selector;\n}\n\nfunction addCombinator( matcher, combinator, base ) {\n\tvar dir = combinator.dir,\n\t\tcheckNonElements = base && dir === \"parentNode\",\n\t\tdoneName = done++;\n\n\treturn combinator.first ?\n\t\t// Check against closest ancestor/preceding element\n\t\tfunction( elem, context, xml ) {\n\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\treturn matcher( elem, context, xml );\n\t\t\t\t}\n\t\t\t}\n\t\t} :\n\n\t\t// Check against all ancestor/preceding elements\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar oldCache, uniqueCache, outerCache,\n\t\t\t\tnewCache = [ dirruns, doneName ];\n\n\t\t\t// We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching\n\t\t\tif ( xml ) {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\tif ( matcher( elem, context, xml ) ) {\n\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\twhile ( (elem = elem[ dir ]) ) {\n\t\t\t\t\tif ( elem.nodeType === 1 || checkNonElements ) {\n\t\t\t\t\t\touterCache = elem[ expando ] || (elem[ expando ] = {});\n\n\t\t\t\t\t\t// Support: IE <9 only\n\t\t\t\t\t\t// Defend against cloned attroperties (jQuery gh-1709)\n\t\t\t\t\t\tuniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {});\n\n\t\t\t\t\t\tif ( (oldCache = uniqueCache[ dir ]) &&\n\t\t\t\t\t\t\toldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) {\n\n\t\t\t\t\t\t\t// Assign to newCache so results back-propagate to previous elements\n\t\t\t\t\t\t\treturn (newCache[ 2 ] = oldCache[ 2 ]);\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t// Reuse newcache so results back-propagate to previous elements\n\t\t\t\t\t\t\tuniqueCache[ dir ] = newCache;\n\n\t\t\t\t\t\t\t// A match means we're done; a fail means we have to keep checking\n\t\t\t\t\t\t\tif ( (newCache[ 2 ] = matcher( elem, context, xml )) ) {\n\t\t\t\t\t\t\t\treturn true;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t};\n}\n\nfunction elementMatcher( matchers ) {\n\treturn matchers.length > 1 ?\n\t\tfunction( elem, context, xml ) {\n\t\t\tvar i = matchers.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( !matchers[i]( elem, context, xml ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn true;\n\t\t} :\n\t\tmatchers[0];\n}\n\nfunction multipleContexts( selector, contexts, results ) {\n\tvar i = 0,\n\t\tlen = contexts.length;\n\tfor ( ; i < len; i++ ) {\n\t\tSizzle( selector, contexts[i], results );\n\t}\n\treturn results;\n}\n\nfunction condense( unmatched, map, filter, context, xml ) {\n\tvar elem,\n\t\tnewUnmatched = [],\n\t\ti = 0,\n\t\tlen = unmatched.length,\n\t\tmapped = map != null;\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (elem = unmatched[i]) ) {\n\t\t\tif ( !filter || filter( elem, context, xml ) ) {\n\t\t\t\tnewUnmatched.push( elem );\n\t\t\t\tif ( mapped ) {\n\t\t\t\t\tmap.push( i );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn newUnmatched;\n}\n\nfunction setMatcher( preFilter, selector, matcher, postFilter, postFinder, postSelector ) {\n\tif ( postFilter && !postFilter[ expando ] ) {\n\t\tpostFilter = setMatcher( postFilter );\n\t}\n\tif ( postFinder && !postFinder[ expando ] ) {\n\t\tpostFinder = setMatcher( postFinder, postSelector );\n\t}\n\treturn markFunction(function( seed, results, context, xml ) {\n\t\tvar temp, i, elem,\n\t\t\tpreMap = [],\n\t\t\tpostMap = [],\n\t\t\tpreexisting = results.length,\n\n\t\t\t// Get initial elements from seed or context\n\t\t\telems = seed || multipleContexts( selector || \"*\", context.nodeType ? [ context ] : context, [] ),\n\n\t\t\t// Prefilter to get matcher input, preserving a map for seed-results synchronization\n\t\t\tmatcherIn = preFilter && ( seed || !selector ) ?\n\t\t\t\tcondense( elems, preMap, preFilter, context, xml ) :\n\t\t\t\telems,\n\n\t\t\tmatcherOut = matcher ?\n\t\t\t\t// If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n\t\t\t\tpostFinder || ( seed ? preFilter : preexisting || postFilter ) ?\n\n\t\t\t\t\t// ...intermediate processing is necessary\n\t\t\t\t\t[] :\n\n\t\t\t\t\t// ...otherwise use results directly\n\t\t\t\t\tresults :\n\t\t\t\tmatcherIn;\n\n\t\t// Find primary matches\n\t\tif ( matcher ) {\n\t\t\tmatcher( matcherIn, matcherOut, context, xml );\n\t\t}\n\n\t\t// Apply postFilter\n\t\tif ( postFilter ) {\n\t\t\ttemp = condense( matcherOut, postMap );\n\t\t\tpostFilter( temp, [], context, xml );\n\n\t\t\t// Un-match failing elements by moving them back to matcherIn\n\t\t\ti = temp.length;\n\t\t\twhile ( i-- ) {\n\t\t\t\tif ( (elem = temp[i]) ) {\n\t\t\t\t\tmatcherOut[ postMap[i] ] = !(matcherIn[ postMap[i] ] = elem);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( seed ) {\n\t\t\tif ( postFinder || preFilter ) {\n\t\t\t\tif ( postFinder ) {\n\t\t\t\t\t// Get the final matcherOut by condensing this intermediate into postFinder contexts\n\t\t\t\t\ttemp = [];\n\t\t\t\t\ti = matcherOut.length;\n\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\tif ( (elem = matcherOut[i]) ) {\n\t\t\t\t\t\t\t// Restore matcherIn since elem is not yet a final match\n\t\t\t\t\t\t\ttemp.push( (matcherIn[i] = elem) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tpostFinder( null, (matcherOut = []), temp, xml );\n\t\t\t\t}\n\n\t\t\t\t// Move matched elements from seed to results to keep them synchronized\n\t\t\t\ti = matcherOut.length;\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\tif ( (elem = matcherOut[i]) &&\n\t\t\t\t\t\t(temp = postFinder ? indexOf( seed, elem ) : preMap[i]) > -1 ) {\n\n\t\t\t\t\t\tseed[temp] = !(results[temp] = elem);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Add elements to results, through postFinder if defined\n\t\t} else {\n\t\t\tmatcherOut = condense(\n\t\t\t\tmatcherOut === results ?\n\t\t\t\t\tmatcherOut.splice( preexisting, matcherOut.length ) :\n\t\t\t\t\tmatcherOut\n\t\t\t);\n\t\t\tif ( postFinder ) {\n\t\t\t\tpostFinder( null, results, matcherOut, xml );\n\t\t\t} else {\n\t\t\t\tpush.apply( results, matcherOut );\n\t\t\t}\n\t\t}\n\t});\n}\n\nfunction matcherFromTokens( tokens ) {\n\tvar checkContext, matcher, j,\n\t\tlen = tokens.length,\n\t\tleadingRelative = Expr.relative[ tokens[0].type ],\n\t\timplicitRelative = leadingRelative || Expr.relative[\" \"],\n\t\ti = leadingRelative ? 1 : 0,\n\n\t\t// The foundational matcher ensures that elements are reachable from top-level context(s)\n\t\tmatchContext = addCombinator( function( elem ) {\n\t\t\treturn elem === checkContext;\n\t\t}, implicitRelative, true ),\n\t\tmatchAnyContext = addCombinator( function( elem ) {\n\t\t\treturn indexOf( checkContext, elem ) > -1;\n\t\t}, implicitRelative, true ),\n\t\tmatchers = [ function( elem, context, xml ) {\n\t\t\tvar ret = ( !leadingRelative && ( xml || context !== outermostContext ) ) || (\n\t\t\t\t(checkContext = context).nodeType ?\n\t\t\t\t\tmatchContext( elem, context, xml ) :\n\t\t\t\t\tmatchAnyContext( elem, context, xml ) );\n\t\t\t// Avoid hanging onto element (issue #299)\n\t\t\tcheckContext = null;\n\t\t\treturn ret;\n\t\t} ];\n\n\tfor ( ; i < len; i++ ) {\n\t\tif ( (matcher = Expr.relative[ tokens[i].type ]) ) {\n\t\t\tmatchers = [ addCombinator(elementMatcher( matchers ), matcher) ];\n\t\t} else {\n\t\t\tmatcher = Expr.filter[ tokens[i].type ].apply( null, tokens[i].matches );\n\n\t\t\t// Return special upon seeing a positional matcher\n\t\t\tif ( matcher[ expando ] ) {\n\t\t\t\t// Find the next relative operator (if any) for proper handling\n\t\t\t\tj = ++i;\n\t\t\t\tfor ( ; j < len; j++ ) {\n\t\t\t\t\tif ( Expr.relative[ tokens[j].type ] ) {\n\t\t\t\t\t\tbreak;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn setMatcher(\n\t\t\t\t\ti > 1 && elementMatcher( matchers ),\n\t\t\t\t\ti > 1 && toSelector(\n\t\t\t\t\t\t// If the preceding token was a descendant combinator, insert an implicit any-element `*`\n\t\t\t\t\t\ttokens.slice( 0, i - 1 ).concat({ value: tokens[ i - 2 ].type === \" \" ? \"*\" : \"\" })\n\t\t\t\t\t).replace( rtrim, \"$1\" ),\n\t\t\t\t\tmatcher,\n\t\t\t\t\ti < j && matcherFromTokens( tokens.slice( i, j ) ),\n\t\t\t\t\tj < len && matcherFromTokens( (tokens = tokens.slice( j )) ),\n\t\t\t\t\tj < len && toSelector( tokens )\n\t\t\t\t);\n\t\t\t}\n\t\t\tmatchers.push( matcher );\n\t\t}\n\t}\n\n\treturn elementMatcher( matchers );\n}\n\nfunction matcherFromGroupMatchers( elementMatchers, setMatchers ) {\n\tvar bySet = setMatchers.length > 0,\n\t\tbyElement = elementMatchers.length > 0,\n\t\tsuperMatcher = function( seed, context, xml, results, outermost ) {\n\t\t\tvar elem, j, matcher,\n\t\t\t\tmatchedCount = 0,\n\t\t\t\ti = \"0\",\n\t\t\t\tunmatched = seed && [],\n\t\t\t\tsetMatched = [],\n\t\t\t\tcontextBackup = outermostContext,\n\t\t\t\t// We must always have either seed elements or outermost context\n\t\t\t\telems = seed || byElement && Expr.find[\"TAG\"]( \"*\", outermost ),\n\t\t\t\t// Use integer dirruns iff this is the outermost matcher\n\t\t\t\tdirrunsUnique = (dirruns += contextBackup == null ? 1 : Math.random() || 0.1),\n\t\t\t\tlen = elems.length;\n\n\t\t\tif ( outermost ) {\n\t\t\t\toutermostContext = context === document || context || outermost;\n\t\t\t}\n\n\t\t\t// Add elements passing elementMatchers directly to results\n\t\t\t// Support: IE<9, Safari\n\t\t\t// Tolerate NodeList properties (IE: \"length\"; Safari: <number>) matching elements by id\n\t\t\tfor ( ; i !== len && (elem = elems[i]) != null; i++ ) {\n\t\t\t\tif ( byElement && elem ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\tif ( !context && elem.ownerDocument !== document ) {\n\t\t\t\t\t\tsetDocument( elem );\n\t\t\t\t\t\txml = !documentIsHTML;\n\t\t\t\t\t}\n\t\t\t\t\twhile ( (matcher = elementMatchers[j++]) ) {\n\t\t\t\t\t\tif ( matcher( elem, context || document, xml) ) {\n\t\t\t\t\t\t\tresults.push( elem );\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( outermost ) {\n\t\t\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Track unmatched elements for set filters\n\t\t\t\tif ( bySet ) {\n\t\t\t\t\t// They will have gone through all possible matchers\n\t\t\t\t\tif ( (elem = !matcher && elem) ) {\n\t\t\t\t\t\tmatchedCount--;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Lengthen the array for every element, matched or not\n\t\t\t\t\tif ( seed ) {\n\t\t\t\t\t\tunmatched.push( elem );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// `i` is now the count of elements visited above, and adding it to `matchedCount`\n\t\t\t// makes the latter nonnegative.\n\t\t\tmatchedCount += i;\n\n\t\t\t// Apply set filters to unmatched elements\n\t\t\t// NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n\t\t\t// equals `i`), unless we didn't visit _any_ elements in the above loop because we have\n\t\t\t// no element matchers and no seed.\n\t\t\t// Incrementing an initially-string \"0\" `i` allows `i` to remain a string only in that\n\t\t\t// case, which will result in a \"00\" `matchedCount` that differs from `i` but is also\n\t\t\t// numerically zero.\n\t\t\tif ( bySet && i !== matchedCount ) {\n\t\t\t\tj = 0;\n\t\t\t\twhile ( (matcher = setMatchers[j++]) ) {\n\t\t\t\t\tmatcher( unmatched, setMatched, context, xml );\n\t\t\t\t}\n\n\t\t\t\tif ( seed ) {\n\t\t\t\t\t// Reintegrate element matches to eliminate the need for sorting\n\t\t\t\t\tif ( matchedCount > 0 ) {\n\t\t\t\t\t\twhile ( i-- ) {\n\t\t\t\t\t\t\tif ( !(unmatched[i] || setMatched[i]) ) {\n\t\t\t\t\t\t\t\tsetMatched[i] = pop.call( results );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Discard index placeholder values to get only actual matches\n\t\t\t\t\tsetMatched = condense( setMatched );\n\t\t\t\t}\n\n\t\t\t\t// Add matches to results\n\t\t\t\tpush.apply( results, setMatched );\n\n\t\t\t\t// Seedless set matches succeeding multiple successful matchers stipulate sorting\n\t\t\t\tif ( outermost && !seed && setMatched.length > 0 &&\n\t\t\t\t\t( matchedCount + setMatchers.length ) > 1 ) {\n\n\t\t\t\t\tSizzle.uniqueSort( results );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Override manipulation of globals by nested matchers\n\t\t\tif ( outermost ) {\n\t\t\t\tdirruns = dirrunsUnique;\n\t\t\t\toutermostContext = contextBackup;\n\t\t\t}\n\n\t\t\treturn unmatched;\n\t\t};\n\n\treturn bySet ?\n\t\tmarkFunction( superMatcher ) :\n\t\tsuperMatcher;\n}\n\ncompile = Sizzle.compile = function( selector, match /* Internal Use Only */ ) {\n\tvar i,\n\t\tsetMatchers = [],\n\t\telementMatchers = [],\n\t\tcached = compilerCache[ selector + \" \" ];\n\n\tif ( !cached ) {\n\t\t// Generate a function of recursive functions that can be used to check each element\n\t\tif ( !match ) {\n\t\t\tmatch = tokenize( selector );\n\t\t}\n\t\ti = match.length;\n\t\twhile ( i-- ) {\n\t\t\tcached = matcherFromTokens( match[i] );\n\t\t\tif ( cached[ expando ] ) {\n\t\t\t\tsetMatchers.push( cached );\n\t\t\t} else {\n\t\t\t\telementMatchers.push( cached );\n\t\t\t}\n\t\t}\n\n\t\t// Cache the compiled function\n\t\tcached = compilerCache( selector, matcherFromGroupMatchers( elementMatchers, setMatchers ) );\n\n\t\t// Save selector and tokenization\n\t\tcached.selector = selector;\n\t}\n\treturn cached;\n};\n\n/**\n * A low-level selection function that works with Sizzle's compiled\n *  selector functions\n * @param {String|Function} selector A selector or a pre-compiled\n *  selector function built with Sizzle.compile\n * @param {Element} context\n * @param {Array} [results]\n * @param {Array} [seed] A set of elements to match against\n */\nselect = Sizzle.select = function( selector, context, results, seed ) {\n\tvar i, tokens, token, type, find,\n\t\tcompiled = typeof selector === \"function\" && selector,\n\t\tmatch = !seed && tokenize( (selector = compiled.selector || selector) );\n\n\tresults = results || [];\n\n\t// Try to minimize operations if there is only one selector in the list and no seed\n\t// (the latter of which guarantees us context)\n\tif ( match.length === 1 ) {\n\n\t\t// Reduce context if the leading compound selector is an ID\n\t\ttokens = match[0] = match[0].slice( 0 );\n\t\tif ( tokens.length > 2 && (token = tokens[0]).type === \"ID\" &&\n\t\t\t\tsupport.getById && context.nodeType === 9 && documentIsHTML &&\n\t\t\t\tExpr.relative[ tokens[1].type ] ) {\n\n\t\t\tcontext = ( Expr.find[\"ID\"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0];\n\t\t\tif ( !context ) {\n\t\t\t\treturn results;\n\n\t\t\t// Precompiled matchers will still verify ancestry, so step up a level\n\t\t\t} else if ( compiled ) {\n\t\t\t\tcontext = context.parentNode;\n\t\t\t}\n\n\t\t\tselector = selector.slice( tokens.shift().value.length );\n\t\t}\n\n\t\t// Fetch a seed set for right-to-left matching\n\t\ti = matchExpr[\"needsContext\"].test( selector ) ? 0 : tokens.length;\n\t\twhile ( i-- ) {\n\t\t\ttoken = tokens[i];\n\n\t\t\t// Abort if we hit a combinator\n\t\t\tif ( Expr.relative[ (type = token.type) ] ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( (find = Expr.find[ type ]) ) {\n\t\t\t\t// Search, expanding context for leading sibling combinators\n\t\t\t\tif ( (seed = find(\n\t\t\t\t\ttoken.matches[0].replace( runescape, funescape ),\n\t\t\t\t\trsibling.test( tokens[0].type ) && testContext( context.parentNode ) || context\n\t\t\t\t)) ) {\n\n\t\t\t\t\t// If seed is empty or no tokens remain, we can return early\n\t\t\t\t\ttokens.splice( i, 1 );\n\t\t\t\t\tselector = seed.length && toSelector( tokens );\n\t\t\t\t\tif ( !selector ) {\n\t\t\t\t\t\tpush.apply( results, seed );\n\t\t\t\t\t\treturn results;\n\t\t\t\t\t}\n\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// Compile and execute a filtering function if one is not provided\n\t// Provide `match` to avoid retokenization if we modified the selector above\n\t( compiled || compile( selector, match ) )(\n\t\tseed,\n\t\tcontext,\n\t\t!documentIsHTML,\n\t\tresults,\n\t\t!context || rsibling.test( selector ) && testContext( context.parentNode ) || context\n\t);\n\treturn results;\n};\n\n// One-time assignments\n\n// Sort stability\nsupport.sortStable = expando.split(\"\").sort( sortOrder ).join(\"\") === expando;\n\n// Support: Chrome 14-35+\n// Always assume duplicates if they aren't passed to the comparison function\nsupport.detectDuplicates = !!hasDuplicate;\n\n// Initialize against the default document\nsetDocument();\n\n// Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n// Detached nodes confoundingly follow *each other*\nsupport.sortDetached = assert(function( div1 ) {\n\t// Should return 1, but returns 4 (following)\n\treturn div1.compareDocumentPosition( document.createElement(\"div\") ) & 1;\n});\n\n// Support: IE<8\n// Prevent attribute/property \"interpolation\"\n// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\nif ( !assert(function( div ) {\n\tdiv.innerHTML = \"<a href='#'></a>\";\n\treturn div.firstChild.getAttribute(\"href\") === \"#\" ;\n}) ) {\n\taddHandle( \"type|href|height|width\", function( elem, name, isXML ) {\n\t\tif ( !isXML ) {\n\t\t\treturn elem.getAttribute( name, name.toLowerCase() === \"type\" ? 1 : 2 );\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use defaultValue in place of getAttribute(\"value\")\nif ( !support.attributes || !assert(function( div ) {\n\tdiv.innerHTML = \"<input/>\";\n\tdiv.firstChild.setAttribute( \"value\", \"\" );\n\treturn div.firstChild.getAttribute( \"value\" ) === \"\";\n}) ) {\n\taddHandle( \"value\", function( elem, name, isXML ) {\n\t\tif ( !isXML && elem.nodeName.toLowerCase() === \"input\" ) {\n\t\t\treturn elem.defaultValue;\n\t\t}\n\t});\n}\n\n// Support: IE<9\n// Use getAttributeNode to fetch booleans when getAttribute lies\nif ( !assert(function( div ) {\n\treturn div.getAttribute(\"disabled\") == null;\n}) ) {\n\taddHandle( booleans, function( elem, name, isXML ) {\n\t\tvar val;\n\t\tif ( !isXML ) {\n\t\t\treturn elem[ name ] === true ? name.toLowerCase() :\n\t\t\t\t\t(val = elem.getAttributeNode( name )) && val.specified ?\n\t\t\t\t\tval.value :\n\t\t\t\tnull;\n\t\t}\n\t});\n}\n\nreturn Sizzle;\n\n})( window );\n\n\n\njQuery.find = Sizzle;\njQuery.expr = Sizzle.selectors;\njQuery.expr[ \":\" ] = jQuery.expr.pseudos;\njQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\njQuery.text = Sizzle.getText;\njQuery.isXMLDoc = Sizzle.isXML;\njQuery.contains = Sizzle.contains;\n\n\n\nvar dir = function( elem, dir, until ) {\n\tvar matched = [],\n\t\ttruncate = until !== undefined;\n\n\twhile ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) {\n\t\tif ( elem.nodeType === 1 ) {\n\t\t\tif ( truncate && jQuery( elem ).is( until ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tmatched.push( elem );\n\t\t}\n\t}\n\treturn matched;\n};\n\n\nvar siblings = function( n, elem ) {\n\tvar matched = [];\n\n\tfor ( ; n; n = n.nextSibling ) {\n\t\tif ( n.nodeType === 1 && n !== elem ) {\n\t\t\tmatched.push( n );\n\t\t}\n\t}\n\n\treturn matched;\n};\n\n\nvar rneedsContext = jQuery.expr.match.needsContext;\n\nvar rsingleTag = ( /^<([\\w-]+)\\s*\\/?>(?:<\\/\\1>|)$/ );\n\n\n\nvar risSimple = /^.[^:#\\[\\.,]*$/;\n\n// Implement the identical functionality for filter and not\nfunction winnow( elements, qualifier, not ) {\n\tif ( jQuery.isFunction( qualifier ) ) {\n\t\treturn jQuery.grep( elements, function( elem, i ) {\n\t\t\t/* jshint -W018 */\n\t\t\treturn !!qualifier.call( elem, i, elem ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( qualifier.nodeType ) {\n\t\treturn jQuery.grep( elements, function( elem ) {\n\t\t\treturn ( elem === qualifier ) !== not;\n\t\t} );\n\n\t}\n\n\tif ( typeof qualifier === \"string\" ) {\n\t\tif ( risSimple.test( qualifier ) ) {\n\t\t\treturn jQuery.filter( qualifier, elements, not );\n\t\t}\n\n\t\tqualifier = jQuery.filter( qualifier, elements );\n\t}\n\n\treturn jQuery.grep( elements, function( elem ) {\n\t\treturn ( indexOf.call( qualifier, elem ) > -1 ) !== not;\n\t} );\n}\n\njQuery.filter = function( expr, elems, not ) {\n\tvar elem = elems[ 0 ];\n\n\tif ( not ) {\n\t\texpr = \":not(\" + expr + \")\";\n\t}\n\n\treturn elems.length === 1 && elem.nodeType === 1 ?\n\t\tjQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] :\n\t\tjQuery.find.matches( expr, jQuery.grep( elems, function( elem ) {\n\t\t\treturn elem.nodeType === 1;\n\t\t} ) );\n};\n\njQuery.fn.extend( {\n\tfind: function( selector ) {\n\t\tvar i,\n\t\t\tlen = this.length,\n\t\t\tret = [],\n\t\t\tself = this;\n\n\t\tif ( typeof selector !== \"string\" ) {\n\t\t\treturn this.pushStack( jQuery( selector ).filter( function() {\n\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\tif ( jQuery.contains( self[ i ], this ) ) {\n\t\t\t\t\t\treturn true;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t} ) );\n\t\t}\n\n\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\tjQuery.find( selector, self[ i ], ret );\n\t\t}\n\n\t\t// Needed because $( selector, context ) becomes $( context ).find( selector )\n\t\tret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret );\n\t\tret.selector = this.selector ? this.selector + \" \" + selector : selector;\n\t\treturn ret;\n\t},\n\tfilter: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], false ) );\n\t},\n\tnot: function( selector ) {\n\t\treturn this.pushStack( winnow( this, selector || [], true ) );\n\t},\n\tis: function( selector ) {\n\t\treturn !!winnow(\n\t\t\tthis,\n\n\t\t\t// If this is a positional/relative selector, check membership in the returned set\n\t\t\t// so $(\"p:first\").is(\"p:last\") won't return true for a doc with two \"p\".\n\t\t\ttypeof selector === \"string\" && rneedsContext.test( selector ) ?\n\t\t\t\tjQuery( selector ) :\n\t\t\t\tselector || [],\n\t\t\tfalse\n\t\t).length;\n\t}\n} );\n\n\n// Initialize a jQuery object\n\n\n// A central reference to the root jQuery(document)\nvar rootjQuery,\n\n\t// A simple way to check for HTML strings\n\t// Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n\t// Strict HTML recognition (#11290: must start with <)\n\trquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]*))$/,\n\n\tinit = jQuery.fn.init = function( selector, context, root ) {\n\t\tvar match, elem;\n\n\t\t// HANDLE: $(\"\"), $(null), $(undefined), $(false)\n\t\tif ( !selector ) {\n\t\t\treturn this;\n\t\t}\n\n\t\t// Method init() accepts an alternate rootjQuery\n\t\t// so migrate can support jQuery.sub (gh-2101)\n\t\troot = root || rootjQuery;\n\n\t\t// Handle HTML strings\n\t\tif ( typeof selector === \"string\" ) {\n\t\t\tif ( selector[ 0 ] === \"<\" &&\n\t\t\t\tselector[ selector.length - 1 ] === \">\" &&\n\t\t\t\tselector.length >= 3 ) {\n\n\t\t\t\t// Assume that strings that start and end with <> are HTML and skip the regex check\n\t\t\t\tmatch = [ null, selector, null ];\n\n\t\t\t} else {\n\t\t\t\tmatch = rquickExpr.exec( selector );\n\t\t\t}\n\n\t\t\t// Match html or make sure no context is specified for #id\n\t\t\tif ( match && ( match[ 1 ] || !context ) ) {\n\n\t\t\t\t// HANDLE: $(html) -> $(array)\n\t\t\t\tif ( match[ 1 ] ) {\n\t\t\t\t\tcontext = context instanceof jQuery ? context[ 0 ] : context;\n\n\t\t\t\t\t// Option to run scripts is true for back-compat\n\t\t\t\t\t// Intentionally let the error be thrown if parseHTML is not present\n\t\t\t\t\tjQuery.merge( this, jQuery.parseHTML(\n\t\t\t\t\t\tmatch[ 1 ],\n\t\t\t\t\t\tcontext && context.nodeType ? context.ownerDocument || context : document,\n\t\t\t\t\t\ttrue\n\t\t\t\t\t) );\n\n\t\t\t\t\t// HANDLE: $(html, props)\n\t\t\t\t\tif ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) {\n\t\t\t\t\t\tfor ( match in context ) {\n\n\t\t\t\t\t\t\t// Properties of context are called as methods if possible\n\t\t\t\t\t\t\tif ( jQuery.isFunction( this[ match ] ) ) {\n\t\t\t\t\t\t\t\tthis[ match ]( context[ match ] );\n\n\t\t\t\t\t\t\t// ...and otherwise set as attributes\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tthis.attr( match, context[ match ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\treturn this;\n\n\t\t\t\t// HANDLE: $(#id)\n\t\t\t\t} else {\n\t\t\t\t\telem = document.getElementById( match[ 2 ] );\n\n\t\t\t\t\t// Support: Blackberry 4.6\n\t\t\t\t\t// gEBID returns nodes no longer in the document (#6963)\n\t\t\t\t\tif ( elem && elem.parentNode ) {\n\n\t\t\t\t\t\t// Inject the element directly into the jQuery object\n\t\t\t\t\t\tthis.length = 1;\n\t\t\t\t\t\tthis[ 0 ] = elem;\n\t\t\t\t\t}\n\n\t\t\t\t\tthis.context = document;\n\t\t\t\t\tthis.selector = selector;\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\n\t\t\t// HANDLE: $(expr, $(...))\n\t\t\t} else if ( !context || context.jquery ) {\n\t\t\t\treturn ( context || root ).find( selector );\n\n\t\t\t// HANDLE: $(expr, context)\n\t\t\t// (which is just equivalent to: $(context).find(expr)\n\t\t\t} else {\n\t\t\t\treturn this.constructor( context ).find( selector );\n\t\t\t}\n\n\t\t// HANDLE: $(DOMElement)\n\t\t} else if ( selector.nodeType ) {\n\t\t\tthis.context = this[ 0 ] = selector;\n\t\t\tthis.length = 1;\n\t\t\treturn this;\n\n\t\t// HANDLE: $(function)\n\t\t// Shortcut for document ready\n\t\t} else if ( jQuery.isFunction( selector ) ) {\n\t\t\treturn root.ready !== undefined ?\n\t\t\t\troot.ready( selector ) :\n\n\t\t\t\t// Execute immediately if ready is not present\n\t\t\t\tselector( jQuery );\n\t\t}\n\n\t\tif ( selector.selector !== undefined ) {\n\t\t\tthis.selector = selector.selector;\n\t\t\tthis.context = selector.context;\n\t\t}\n\n\t\treturn jQuery.makeArray( selector, this );\n\t};\n\n// Give the init function the jQuery prototype for later instantiation\ninit.prototype = jQuery.fn;\n\n// Initialize central reference\nrootjQuery = jQuery( document );\n\n\nvar rparentsprev = /^(?:parents|prev(?:Until|All))/,\n\n\t// Methods guaranteed to produce a unique set when starting from a unique set\n\tguaranteedUnique = {\n\t\tchildren: true,\n\t\tcontents: true,\n\t\tnext: true,\n\t\tprev: true\n\t};\n\njQuery.fn.extend( {\n\thas: function( target ) {\n\t\tvar targets = jQuery( target, this ),\n\t\t\tl = targets.length;\n\n\t\treturn this.filter( function() {\n\t\t\tvar i = 0;\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tif ( jQuery.contains( this, targets[ i ] ) ) {\n\t\t\t\t\treturn true;\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\tclosest: function( selectors, context ) {\n\t\tvar cur,\n\t\t\ti = 0,\n\t\t\tl = this.length,\n\t\t\tmatched = [],\n\t\t\tpos = rneedsContext.test( selectors ) || typeof selectors !== \"string\" ?\n\t\t\t\tjQuery( selectors, context || this.context ) :\n\t\t\t\t0;\n\n\t\tfor ( ; i < l; i++ ) {\n\t\t\tfor ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) {\n\n\t\t\t\t// Always skip document fragments\n\t\t\t\tif ( cur.nodeType < 11 && ( pos ?\n\t\t\t\t\tpos.index( cur ) > -1 :\n\n\t\t\t\t\t// Don't pass non-elements to Sizzle\n\t\t\t\t\tcur.nodeType === 1 &&\n\t\t\t\t\t\tjQuery.find.matchesSelector( cur, selectors ) ) ) {\n\n\t\t\t\t\tmatched.push( cur );\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched );\n\t},\n\n\t// Determine the position of an element within the set\n\tindex: function( elem ) {\n\n\t\t// No argument, return index in parent\n\t\tif ( !elem ) {\n\t\t\treturn ( this[ 0 ] && this[ 0 ].parentNode ) ? this.first().prevAll().length : -1;\n\t\t}\n\n\t\t// Index in selector\n\t\tif ( typeof elem === \"string\" ) {\n\t\t\treturn indexOf.call( jQuery( elem ), this[ 0 ] );\n\t\t}\n\n\t\t// Locate the position of the desired element\n\t\treturn indexOf.call( this,\n\n\t\t\t// If it receives a jQuery object, the first element is used\n\t\t\telem.jquery ? elem[ 0 ] : elem\n\t\t);\n\t},\n\n\tadd: function( selector, context ) {\n\t\treturn this.pushStack(\n\t\t\tjQuery.uniqueSort(\n\t\t\t\tjQuery.merge( this.get(), jQuery( selector, context ) )\n\t\t\t)\n\t\t);\n\t},\n\n\taddBack: function( selector ) {\n\t\treturn this.add( selector == null ?\n\t\t\tthis.prevObject : this.prevObject.filter( selector )\n\t\t);\n\t}\n} );\n\nfunction sibling( cur, dir ) {\n\twhile ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {}\n\treturn cur;\n}\n\njQuery.each( {\n\tparent: function( elem ) {\n\t\tvar parent = elem.parentNode;\n\t\treturn parent && parent.nodeType !== 11 ? parent : null;\n\t},\n\tparents: function( elem ) {\n\t\treturn dir( elem, \"parentNode\" );\n\t},\n\tparentsUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"parentNode\", until );\n\t},\n\tnext: function( elem ) {\n\t\treturn sibling( elem, \"nextSibling\" );\n\t},\n\tprev: function( elem ) {\n\t\treturn sibling( elem, \"previousSibling\" );\n\t},\n\tnextAll: function( elem ) {\n\t\treturn dir( elem, \"nextSibling\" );\n\t},\n\tprevAll: function( elem ) {\n\t\treturn dir( elem, \"previousSibling\" );\n\t},\n\tnextUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"nextSibling\", until );\n\t},\n\tprevUntil: function( elem, i, until ) {\n\t\treturn dir( elem, \"previousSibling\", until );\n\t},\n\tsiblings: function( elem ) {\n\t\treturn siblings( ( elem.parentNode || {} ).firstChild, elem );\n\t},\n\tchildren: function( elem ) {\n\t\treturn siblings( elem.firstChild );\n\t},\n\tcontents: function( elem ) {\n\t\treturn elem.contentDocument || jQuery.merge( [], elem.childNodes );\n\t}\n}, function( name, fn ) {\n\tjQuery.fn[ name ] = function( until, selector ) {\n\t\tvar matched = jQuery.map( this, fn, until );\n\n\t\tif ( name.slice( -5 ) !== \"Until\" ) {\n\t\t\tselector = until;\n\t\t}\n\n\t\tif ( selector && typeof selector === \"string\" ) {\n\t\t\tmatched = jQuery.filter( selector, matched );\n\t\t}\n\n\t\tif ( this.length > 1 ) {\n\n\t\t\t// Remove duplicates\n\t\t\tif ( !guaranteedUnique[ name ] ) {\n\t\t\t\tjQuery.uniqueSort( matched );\n\t\t\t}\n\n\t\t\t// Reverse order for parents* and prev-derivatives\n\t\t\tif ( rparentsprev.test( name ) ) {\n\t\t\t\tmatched.reverse();\n\t\t\t}\n\t\t}\n\n\t\treturn this.pushStack( matched );\n\t};\n} );\nvar rnotwhite = ( /\\S+/g );\n\n\n\n// Convert String-formatted options into Object-formatted ones\nfunction createOptions( options ) {\n\tvar object = {};\n\tjQuery.each( options.match( rnotwhite ) || [], function( _, flag ) {\n\t\tobject[ flag ] = true;\n\t} );\n\treturn object;\n}\n\n/*\n * Create a callback list using the following parameters:\n *\n *\toptions: an optional list of space-separated options that will change how\n *\t\t\tthe callback list behaves or a more traditional option object\n *\n * By default a callback list will act like an event callback list and can be\n * \"fired\" multiple times.\n *\n * Possible options:\n *\n *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n *\n *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n *\t\t\t\t\tafter the list has been fired right away with the latest \"memorized\"\n *\t\t\t\t\tvalues (like a Deferred)\n *\n *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n *\n *\tstopOnFalse:\tinterrupt callings when a callback returns false\n *\n */\njQuery.Callbacks = function( options ) {\n\n\t// Convert options from String-formatted to Object-formatted if needed\n\t// (we check in cache first)\n\toptions = typeof options === \"string\" ?\n\t\tcreateOptions( options ) :\n\t\tjQuery.extend( {}, options );\n\n\tvar // Flag to know if list is currently firing\n\t\tfiring,\n\n\t\t// Last fire value for non-forgettable lists\n\t\tmemory,\n\n\t\t// Flag to know if list was already fired\n\t\tfired,\n\n\t\t// Flag to prevent firing\n\t\tlocked,\n\n\t\t// Actual callback list\n\t\tlist = [],\n\n\t\t// Queue of execution data for repeatable lists\n\t\tqueue = [],\n\n\t\t// Index of currently firing callback (modified by add/remove as needed)\n\t\tfiringIndex = -1,\n\n\t\t// Fire callbacks\n\t\tfire = function() {\n\n\t\t\t// Enforce single-firing\n\t\t\tlocked = options.once;\n\n\t\t\t// Execute callbacks for all pending executions,\n\t\t\t// respecting firingIndex overrides and runtime changes\n\t\t\tfired = firing = true;\n\t\t\tfor ( ; queue.length; firingIndex = -1 ) {\n\t\t\t\tmemory = queue.shift();\n\t\t\t\twhile ( ++firingIndex < list.length ) {\n\n\t\t\t\t\t// Run callback and check for early termination\n\t\t\t\t\tif ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false &&\n\t\t\t\t\t\toptions.stopOnFalse ) {\n\n\t\t\t\t\t\t// Jump to end and forget the data so .add doesn't re-fire\n\t\t\t\t\t\tfiringIndex = list.length;\n\t\t\t\t\t\tmemory = false;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Forget the data if we're done with it\n\t\t\tif ( !options.memory ) {\n\t\t\t\tmemory = false;\n\t\t\t}\n\n\t\t\tfiring = false;\n\n\t\t\t// Clean up if we're done firing for good\n\t\t\tif ( locked ) {\n\n\t\t\t\t// Keep an empty list if we have data for future add calls\n\t\t\t\tif ( memory ) {\n\t\t\t\t\tlist = [];\n\n\t\t\t\t// Otherwise, this object is spent\n\t\t\t\t} else {\n\t\t\t\t\tlist = \"\";\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t// Actual Callbacks object\n\t\tself = {\n\n\t\t\t// Add a callback or a collection of callbacks to the list\n\t\t\tadd: function() {\n\t\t\t\tif ( list ) {\n\n\t\t\t\t\t// If we have memory from a past run, we should fire after adding\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfiringIndex = list.length - 1;\n\t\t\t\t\t\tqueue.push( memory );\n\t\t\t\t\t}\n\n\t\t\t\t\t( function add( args ) {\n\t\t\t\t\t\tjQuery.each( args, function( _, arg ) {\n\t\t\t\t\t\t\tif ( jQuery.isFunction( arg ) ) {\n\t\t\t\t\t\t\t\tif ( !options.unique || !self.has( arg ) ) {\n\t\t\t\t\t\t\t\t\tlist.push( arg );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else if ( arg && arg.length && jQuery.type( arg ) !== \"string\" ) {\n\n\t\t\t\t\t\t\t\t// Inspect recursively\n\t\t\t\t\t\t\t\tadd( arg );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} );\n\t\t\t\t\t} )( arguments );\n\n\t\t\t\t\tif ( memory && !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Remove a callback from the list\n\t\t\tremove: function() {\n\t\t\t\tjQuery.each( arguments, function( _, arg ) {\n\t\t\t\t\tvar index;\n\t\t\t\t\twhile ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) {\n\t\t\t\t\t\tlist.splice( index, 1 );\n\n\t\t\t\t\t\t// Handle firing indexes\n\t\t\t\t\t\tif ( index <= firingIndex ) {\n\t\t\t\t\t\t\tfiringIndex--;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Check if a given callback is in the list.\n\t\t\t// If no argument is given, return whether or not list has callbacks attached.\n\t\t\thas: function( fn ) {\n\t\t\t\treturn fn ?\n\t\t\t\t\tjQuery.inArray( fn, list ) > -1 :\n\t\t\t\t\tlist.length > 0;\n\t\t\t},\n\n\t\t\t// Remove all callbacks from the list\n\t\t\tempty: function() {\n\t\t\t\tif ( list ) {\n\t\t\t\t\tlist = [];\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Disable .fire and .add\n\t\t\t// Abort any current/pending executions\n\t\t\t// Clear all callbacks and values\n\t\t\tdisable: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tlist = memory = \"\";\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tdisabled: function() {\n\t\t\t\treturn !list;\n\t\t\t},\n\n\t\t\t// Disable .fire\n\t\t\t// Also disable .add unless we have memory (since it would have no effect)\n\t\t\t// Abort any pending executions\n\t\t\tlock: function() {\n\t\t\t\tlocked = queue = [];\n\t\t\t\tif ( !memory ) {\n\t\t\t\t\tlist = memory = \"\";\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\t\t\tlocked: function() {\n\t\t\t\treturn !!locked;\n\t\t\t},\n\n\t\t\t// Call all callbacks with the given context and arguments\n\t\t\tfireWith: function( context, args ) {\n\t\t\t\tif ( !locked ) {\n\t\t\t\t\targs = args || [];\n\t\t\t\t\targs = [ context, args.slice ? args.slice() : args ];\n\t\t\t\t\tqueue.push( args );\n\t\t\t\t\tif ( !firing ) {\n\t\t\t\t\t\tfire();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// Call all the callbacks with the given arguments\n\t\t\tfire: function() {\n\t\t\t\tself.fireWith( this, arguments );\n\t\t\t\treturn this;\n\t\t\t},\n\n\t\t\t// To know if the callbacks have already been called at least once\n\t\t\tfired: function() {\n\t\t\t\treturn !!fired;\n\t\t\t}\n\t\t};\n\n\treturn self;\n};\n\n\njQuery.extend( {\n\n\tDeferred: function( func ) {\n\t\tvar tuples = [\n\n\t\t\t\t// action, add listener, listener list, final state\n\t\t\t\t[ \"resolve\", \"done\", jQuery.Callbacks( \"once memory\" ), \"resolved\" ],\n\t\t\t\t[ \"reject\", \"fail\", jQuery.Callbacks( \"once memory\" ), \"rejected\" ],\n\t\t\t\t[ \"notify\", \"progress\", jQuery.Callbacks( \"memory\" ) ]\n\t\t\t],\n\t\t\tstate = \"pending\",\n\t\t\tpromise = {\n\t\t\t\tstate: function() {\n\t\t\t\t\treturn state;\n\t\t\t\t},\n\t\t\t\talways: function() {\n\t\t\t\t\tdeferred.done( arguments ).fail( arguments );\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\t\t\t\tthen: function( /* fnDone, fnFail, fnProgress */ ) {\n\t\t\t\t\tvar fns = arguments;\n\t\t\t\t\treturn jQuery.Deferred( function( newDefer ) {\n\t\t\t\t\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\t\t\t\t\tvar fn = jQuery.isFunction( fns[ i ] ) && fns[ i ];\n\n\t\t\t\t\t\t\t// deferred[ done | fail | progress ] for forwarding actions to newDefer\n\t\t\t\t\t\t\tdeferred[ tuple[ 1 ] ]( function() {\n\t\t\t\t\t\t\t\tvar returned = fn && fn.apply( this, arguments );\n\t\t\t\t\t\t\t\tif ( returned && jQuery.isFunction( returned.promise ) ) {\n\t\t\t\t\t\t\t\t\treturned.promise()\n\t\t\t\t\t\t\t\t\t\t.progress( newDefer.notify )\n\t\t\t\t\t\t\t\t\t\t.done( newDefer.resolve )\n\t\t\t\t\t\t\t\t\t\t.fail( newDefer.reject );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tnewDefer[ tuple[ 0 ] + \"With\" ](\n\t\t\t\t\t\t\t\t\t\tthis === promise ? newDefer.promise() : this,\n\t\t\t\t\t\t\t\t\t\tfn ? [ returned ] : arguments\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t} );\n\t\t\t\t\t\tfns = null;\n\t\t\t\t\t} ).promise();\n\t\t\t\t},\n\n\t\t\t\t// Get a promise for this deferred\n\t\t\t\t// If obj is provided, the promise aspect is added to the object\n\t\t\t\tpromise: function( obj ) {\n\t\t\t\t\treturn obj != null ? jQuery.extend( obj, promise ) : promise;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdeferred = {};\n\n\t\t// Keep pipe for back-compat\n\t\tpromise.pipe = promise.then;\n\n\t\t// Add list-specific methods\n\t\tjQuery.each( tuples, function( i, tuple ) {\n\t\t\tvar list = tuple[ 2 ],\n\t\t\t\tstateString = tuple[ 3 ];\n\n\t\t\t// promise[ done | fail | progress ] = list.add\n\t\t\tpromise[ tuple[ 1 ] ] = list.add;\n\n\t\t\t// Handle state\n\t\t\tif ( stateString ) {\n\t\t\t\tlist.add( function() {\n\n\t\t\t\t\t// state = [ resolved | rejected ]\n\t\t\t\t\tstate = stateString;\n\n\t\t\t\t// [ reject_list | resolve_list ].disable; progress_list.lock\n\t\t\t\t}, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock );\n\t\t\t}\n\n\t\t\t// deferred[ resolve | reject | notify ]\n\t\t\tdeferred[ tuple[ 0 ] ] = function() {\n\t\t\t\tdeferred[ tuple[ 0 ] + \"With\" ]( this === deferred ? promise : this, arguments );\n\t\t\t\treturn this;\n\t\t\t};\n\t\t\tdeferred[ tuple[ 0 ] + \"With\" ] = list.fireWith;\n\t\t} );\n\n\t\t// Make the deferred a promise\n\t\tpromise.promise( deferred );\n\n\t\t// Call given func if any\n\t\tif ( func ) {\n\t\t\tfunc.call( deferred, deferred );\n\t\t}\n\n\t\t// All done!\n\t\treturn deferred;\n\t},\n\n\t// Deferred helper\n\twhen: function( subordinate /* , ..., subordinateN */ ) {\n\t\tvar i = 0,\n\t\t\tresolveValues = slice.call( arguments ),\n\t\t\tlength = resolveValues.length,\n\n\t\t\t// the count of uncompleted subordinates\n\t\t\tremaining = length !== 1 ||\n\t\t\t\t( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0,\n\n\t\t\t// the master Deferred.\n\t\t\t// If resolveValues consist of only a single Deferred, just use that.\n\t\t\tdeferred = remaining === 1 ? subordinate : jQuery.Deferred(),\n\n\t\t\t// Update function for both resolve and progress values\n\t\t\tupdateFunc = function( i, contexts, values ) {\n\t\t\t\treturn function( value ) {\n\t\t\t\t\tcontexts[ i ] = this;\n\t\t\t\t\tvalues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value;\n\t\t\t\t\tif ( values === progressValues ) {\n\t\t\t\t\t\tdeferred.notifyWith( contexts, values );\n\t\t\t\t\t} else if ( !( --remaining ) ) {\n\t\t\t\t\t\tdeferred.resolveWith( contexts, values );\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t},\n\n\t\t\tprogressValues, progressContexts, resolveContexts;\n\n\t\t// Add listeners to Deferred subordinates; treat others as resolved\n\t\tif ( length > 1 ) {\n\t\t\tprogressValues = new Array( length );\n\t\t\tprogressContexts = new Array( length );\n\t\t\tresolveContexts = new Array( length );\n\t\t\tfor ( ; i < length; i++ ) {\n\t\t\t\tif ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) {\n\t\t\t\t\tresolveValues[ i ].promise()\n\t\t\t\t\t\t.progress( updateFunc( i, progressContexts, progressValues ) )\n\t\t\t\t\t\t.done( updateFunc( i, resolveContexts, resolveValues ) )\n\t\t\t\t\t\t.fail( deferred.reject );\n\t\t\t\t} else {\n\t\t\t\t\t--remaining;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// If we're not waiting on anything, resolve the master\n\t\tif ( !remaining ) {\n\t\t\tdeferred.resolveWith( resolveContexts, resolveValues );\n\t\t}\n\n\t\treturn deferred.promise();\n\t}\n} );\n\n\n// The deferred used on DOM ready\nvar readyList;\n\njQuery.fn.ready = function( fn ) {\n\n\t// Add the callback\n\tjQuery.ready.promise().done( fn );\n\n\treturn this;\n};\n\njQuery.extend( {\n\n\t// Is the DOM ready to be used? Set to true once it occurs.\n\tisReady: false,\n\n\t// A counter to track how many items to wait for before\n\t// the ready event fires. See #6781\n\treadyWait: 1,\n\n\t// Hold (or release) the ready event\n\tholdReady: function( hold ) {\n\t\tif ( hold ) {\n\t\t\tjQuery.readyWait++;\n\t\t} else {\n\t\t\tjQuery.ready( true );\n\t\t}\n\t},\n\n\t// Handle when the DOM is ready\n\tready: function( wait ) {\n\n\t\t// Abort if there are pending holds or we're already ready\n\t\tif ( wait === true ? --jQuery.readyWait : jQuery.isReady ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Remember that the DOM is ready\n\t\tjQuery.isReady = true;\n\n\t\t// If a normal DOM Ready event fired, decrement, and wait if need be\n\t\tif ( wait !== true && --jQuery.readyWait > 0 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// If there are functions bound, to execute\n\t\treadyList.resolveWith( document, [ jQuery ] );\n\n\t\t// Trigger any bound ready events\n\t\tif ( jQuery.fn.triggerHandler ) {\n\t\t\tjQuery( document ).triggerHandler( \"ready\" );\n\t\t\tjQuery( document ).off( \"ready\" );\n\t\t}\n\t}\n} );\n\n/**\n * The ready event handler and self cleanup method\n */\nfunction completed() {\n\tdocument.removeEventListener( \"DOMContentLoaded\", completed );\n\twindow.removeEventListener( \"load\", completed );\n\tjQuery.ready();\n}\n\njQuery.ready.promise = function( obj ) {\n\tif ( !readyList ) {\n\n\t\treadyList = jQuery.Deferred();\n\n\t\t// Catch cases where $(document).ready() is called\n\t\t// after the browser event has already occurred.\n\t\t// Support: IE9-10 only\n\t\t// Older IE sometimes signals \"interactive\" too soon\n\t\tif ( document.readyState === \"complete\" ||\n\t\t\t( document.readyState !== \"loading\" && !document.documentElement.doScroll ) ) {\n\n\t\t\t// Handle it asynchronously to allow scripts the opportunity to delay ready\n\t\t\twindow.setTimeout( jQuery.ready );\n\n\t\t} else {\n\n\t\t\t// Use the handy event callback\n\t\t\tdocument.addEventListener( \"DOMContentLoaded\", completed );\n\n\t\t\t// A fallback to window.onload, that will always work\n\t\t\twindow.addEventListener( \"load\", completed );\n\t\t}\n\t}\n\treturn readyList.promise( obj );\n};\n\n// Kick off the DOM ready check even if the user does not\njQuery.ready.promise();\n\n\n\n\n// Multifunctional method to get and set values of a collection\n// The value/s can optionally be executed if it's a function\nvar access = function( elems, fn, key, value, chainable, emptyGet, raw ) {\n\tvar i = 0,\n\t\tlen = elems.length,\n\t\tbulk = key == null;\n\n\t// Sets many values\n\tif ( jQuery.type( key ) === \"object\" ) {\n\t\tchainable = true;\n\t\tfor ( i in key ) {\n\t\t\taccess( elems, fn, i, key[ i ], true, emptyGet, raw );\n\t\t}\n\n\t// Sets one value\n\t} else if ( value !== undefined ) {\n\t\tchainable = true;\n\n\t\tif ( !jQuery.isFunction( value ) ) {\n\t\t\traw = true;\n\t\t}\n\n\t\tif ( bulk ) {\n\n\t\t\t// Bulk operations run against the entire set\n\t\t\tif ( raw ) {\n\t\t\t\tfn.call( elems, value );\n\t\t\t\tfn = null;\n\n\t\t\t// ...except when executing function values\n\t\t\t} else {\n\t\t\t\tbulk = fn;\n\t\t\t\tfn = function( elem, key, value ) {\n\t\t\t\t\treturn bulk.call( jQuery( elem ), value );\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tif ( fn ) {\n\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\tfn(\n\t\t\t\t\telems[ i ], key, raw ?\n\t\t\t\t\tvalue :\n\t\t\t\t\tvalue.call( elems[ i ], i, fn( elems[ i ], key ) )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\treturn chainable ?\n\t\telems :\n\n\t\t// Gets\n\t\tbulk ?\n\t\t\tfn.call( elems ) :\n\t\t\tlen ? fn( elems[ 0 ], key ) : emptyGet;\n};\nvar acceptData = function( owner ) {\n\n\t// Accepts only:\n\t//  - Node\n\t//    - Node.ELEMENT_NODE\n\t//    - Node.DOCUMENT_NODE\n\t//  - Object\n\t//    - Any\n\t/* jshint -W018 */\n\treturn owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType );\n};\n\n\n\n\nfunction Data() {\n\tthis.expando = jQuery.expando + Data.uid++;\n}\n\nData.uid = 1;\n\nData.prototype = {\n\n\tregister: function( owner, initial ) {\n\t\tvar value = initial || {};\n\n\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t// use plain assignment\n\t\tif ( owner.nodeType ) {\n\t\t\towner[ this.expando ] = value;\n\n\t\t// Otherwise secure it in a non-enumerable, non-writable property\n\t\t// configurability must be true to allow the property to be\n\t\t// deleted with the delete operator\n\t\t} else {\n\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\tvalue: value,\n\t\t\t\twritable: true,\n\t\t\t\tconfigurable: true\n\t\t\t} );\n\t\t}\n\t\treturn owner[ this.expando ];\n\t},\n\tcache: function( owner ) {\n\n\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t// but we should not, see #8335.\n\t\t// Always return an empty object.\n\t\tif ( !acceptData( owner ) ) {\n\t\t\treturn {};\n\t\t}\n\n\t\t// Check if the owner object already has a cache\n\t\tvar value = owner[ this.expando ];\n\n\t\t// If not, create one\n\t\tif ( !value ) {\n\t\t\tvalue = {};\n\n\t\t\t// We can accept data for non-element nodes in modern browsers,\n\t\t\t// but we should not, see #8335.\n\t\t\t// Always return an empty object.\n\t\t\tif ( acceptData( owner ) ) {\n\n\t\t\t\t// If it is a node unlikely to be stringify-ed or looped over\n\t\t\t\t// use plain assignment\n\t\t\t\tif ( owner.nodeType ) {\n\t\t\t\t\towner[ this.expando ] = value;\n\n\t\t\t\t// Otherwise secure it in a non-enumerable property\n\t\t\t\t// configurable must be true to allow the property to be\n\t\t\t\t// deleted when data is removed\n\t\t\t\t} else {\n\t\t\t\t\tObject.defineProperty( owner, this.expando, {\n\t\t\t\t\t\tvalue: value,\n\t\t\t\t\t\tconfigurable: true\n\t\t\t\t\t} );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn value;\n\t},\n\tset: function( owner, data, value ) {\n\t\tvar prop,\n\t\t\tcache = this.cache( owner );\n\n\t\t// Handle: [ owner, key, value ] args\n\t\tif ( typeof data === \"string\" ) {\n\t\t\tcache[ data ] = value;\n\n\t\t// Handle: [ owner, { properties } ] args\n\t\t} else {\n\n\t\t\t// Copy the properties one-by-one to the cache object\n\t\t\tfor ( prop in data ) {\n\t\t\t\tcache[ prop ] = data[ prop ];\n\t\t\t}\n\t\t}\n\t\treturn cache;\n\t},\n\tget: function( owner, key ) {\n\t\treturn key === undefined ?\n\t\t\tthis.cache( owner ) :\n\t\t\towner[ this.expando ] && owner[ this.expando ][ key ];\n\t},\n\taccess: function( owner, key, value ) {\n\t\tvar stored;\n\n\t\t// In cases where either:\n\t\t//\n\t\t//   1. No key was specified\n\t\t//   2. A string key was specified, but no value provided\n\t\t//\n\t\t// Take the \"read\" path and allow the get method to determine\n\t\t// which value to return, respectively either:\n\t\t//\n\t\t//   1. The entire cache object\n\t\t//   2. The data stored at the key\n\t\t//\n\t\tif ( key === undefined ||\n\t\t\t\t( ( key && typeof key === \"string\" ) && value === undefined ) ) {\n\n\t\t\tstored = this.get( owner, key );\n\n\t\t\treturn stored !== undefined ?\n\t\t\t\tstored : this.get( owner, jQuery.camelCase( key ) );\n\t\t}\n\n\t\t// When the key is not a string, or both a key and value\n\t\t// are specified, set or extend (existing objects) with either:\n\t\t//\n\t\t//   1. An object of properties\n\t\t//   2. A key and value\n\t\t//\n\t\tthis.set( owner, key, value );\n\n\t\t// Since the \"set\" path can have two possible entry points\n\t\t// return the expected data based on which path was taken[*]\n\t\treturn value !== undefined ? value : key;\n\t},\n\tremove: function( owner, key ) {\n\t\tvar i, name, camel,\n\t\t\tcache = owner[ this.expando ];\n\n\t\tif ( cache === undefined ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( key === undefined ) {\n\t\t\tthis.register( owner );\n\n\t\t} else {\n\n\t\t\t// Support array or space separated string of keys\n\t\t\tif ( jQuery.isArray( key ) ) {\n\n\t\t\t\t// If \"name\" is an array of keys...\n\t\t\t\t// When data is initially created, via (\"key\", \"val\") signature,\n\t\t\t\t// keys will be converted to camelCase.\n\t\t\t\t// Since there is no way to tell _how_ a key was added, remove\n\t\t\t\t// both plain key and camelCase key. #12786\n\t\t\t\t// This will only penalize the array argument path.\n\t\t\t\tname = key.concat( key.map( jQuery.camelCase ) );\n\t\t\t} else {\n\t\t\t\tcamel = jQuery.camelCase( key );\n\n\t\t\t\t// Try the string as a key before any manipulation\n\t\t\t\tif ( key in cache ) {\n\t\t\t\t\tname = [ key, camel ];\n\t\t\t\t} else {\n\n\t\t\t\t\t// If a key with the spaces exists, use it.\n\t\t\t\t\t// Otherwise, create an array by matching non-whitespace\n\t\t\t\t\tname = camel;\n\t\t\t\t\tname = name in cache ?\n\t\t\t\t\t\t[ name ] : ( name.match( rnotwhite ) || [] );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\ti = name.length;\n\n\t\t\twhile ( i-- ) {\n\t\t\t\tdelete cache[ name[ i ] ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove the expando if there's no more data\n\t\tif ( key === undefined || jQuery.isEmptyObject( cache ) ) {\n\n\t\t\t// Support: Chrome <= 35-45+\n\t\t\t// Webkit & Blink performance suffers when deleting properties\n\t\t\t// from DOM nodes, so set to undefined instead\n\t\t\t// https://code.google.com/p/chromium/issues/detail?id=378607\n\t\t\tif ( owner.nodeType ) {\n\t\t\t\towner[ this.expando ] = undefined;\n\t\t\t} else {\n\t\t\t\tdelete owner[ this.expando ];\n\t\t\t}\n\t\t}\n\t},\n\thasData: function( owner ) {\n\t\tvar cache = owner[ this.expando ];\n\t\treturn cache !== undefined && !jQuery.isEmptyObject( cache );\n\t}\n};\nvar dataPriv = new Data();\n\nvar dataUser = new Data();\n\n\n\n//\tImplementation Summary\n//\n//\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n//\t2. Improve the module's maintainability by reducing the storage\n//\t\tpaths to a single mechanism.\n//\t3. Use the same single mechanism to support \"private\" and \"user\" data.\n//\t4. _Never_ expose \"private\" data to user code (TODO: Drop _data, _removeData)\n//\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n//\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\nvar rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n\trmultiDash = /[A-Z]/g;\n\nfunction dataAttr( elem, key, data ) {\n\tvar name;\n\n\t// If nothing was found internally, try to fetch any\n\t// data from the HTML5 data-* attribute\n\tif ( data === undefined && elem.nodeType === 1 ) {\n\t\tname = \"data-\" + key.replace( rmultiDash, \"-$&\" ).toLowerCase();\n\t\tdata = elem.getAttribute( name );\n\n\t\tif ( typeof data === \"string\" ) {\n\t\t\ttry {\n\t\t\t\tdata = data === \"true\" ? true :\n\t\t\t\t\tdata === \"false\" ? false :\n\t\t\t\t\tdata === \"null\" ? null :\n\n\t\t\t\t\t// Only convert to a number if it doesn't change the string\n\t\t\t\t\t+data + \"\" === data ? +data :\n\t\t\t\t\trbrace.test( data ) ? jQuery.parseJSON( data ) :\n\t\t\t\t\tdata;\n\t\t\t} catch ( e ) {}\n\n\t\t\t// Make sure we set the data so it isn't changed later\n\t\t\tdataUser.set( elem, key, data );\n\t\t} else {\n\t\t\tdata = undefined;\n\t\t}\n\t}\n\treturn data;\n}\n\njQuery.extend( {\n\thasData: function( elem ) {\n\t\treturn dataUser.hasData( elem ) || dataPriv.hasData( elem );\n\t},\n\n\tdata: function( elem, name, data ) {\n\t\treturn dataUser.access( elem, name, data );\n\t},\n\n\tremoveData: function( elem, name ) {\n\t\tdataUser.remove( elem, name );\n\t},\n\n\t// TODO: Now that all calls to _data and _removeData have been replaced\n\t// with direct calls to dataPriv methods, these can be deprecated.\n\t_data: function( elem, name, data ) {\n\t\treturn dataPriv.access( elem, name, data );\n\t},\n\n\t_removeData: function( elem, name ) {\n\t\tdataPriv.remove( elem, name );\n\t}\n} );\n\njQuery.fn.extend( {\n\tdata: function( key, value ) {\n\t\tvar i, name, data,\n\t\t\telem = this[ 0 ],\n\t\t\tattrs = elem && elem.attributes;\n\n\t\t// Gets all values\n\t\tif ( key === undefined ) {\n\t\t\tif ( this.length ) {\n\t\t\t\tdata = dataUser.get( elem );\n\n\t\t\t\tif ( elem.nodeType === 1 && !dataPriv.get( elem, \"hasDataAttrs\" ) ) {\n\t\t\t\t\ti = attrs.length;\n\t\t\t\t\twhile ( i-- ) {\n\n\t\t\t\t\t\t// Support: IE11+\n\t\t\t\t\t\t// The attrs elements can be null (#14894)\n\t\t\t\t\t\tif ( attrs[ i ] ) {\n\t\t\t\t\t\t\tname = attrs[ i ].name;\n\t\t\t\t\t\t\tif ( name.indexOf( \"data-\" ) === 0 ) {\n\t\t\t\t\t\t\t\tname = jQuery.camelCase( name.slice( 5 ) );\n\t\t\t\t\t\t\t\tdataAttr( elem, name, data[ name ] );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tdataPriv.set( elem, \"hasDataAttrs\", true );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn data;\n\t\t}\n\n\t\t// Sets multiple values\n\t\tif ( typeof key === \"object\" ) {\n\t\t\treturn this.each( function() {\n\t\t\t\tdataUser.set( this, key );\n\t\t\t} );\n\t\t}\n\n\t\treturn access( this, function( value ) {\n\t\t\tvar data, camelKey;\n\n\t\t\t// The calling jQuery object (element matches) is not empty\n\t\t\t// (and therefore has an element appears at this[ 0 ]) and the\n\t\t\t// `value` parameter was not undefined. An empty jQuery object\n\t\t\t// will result in `undefined` for elem = this[ 0 ] which will\n\t\t\t// throw an exception if an attempt to read a data cache is made.\n\t\t\tif ( elem && value === undefined ) {\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key as-is\n\t\t\t\tdata = dataUser.get( elem, key ) ||\n\n\t\t\t\t\t// Try to find dashed key if it exists (gh-2779)\n\t\t\t\t\t// This is for 2.2.x only\n\t\t\t\t\tdataUser.get( elem, key.replace( rmultiDash, \"-$&\" ).toLowerCase() );\n\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\tcamelKey = jQuery.camelCase( key );\n\n\t\t\t\t// Attempt to get data from the cache\n\t\t\t\t// with the key camelized\n\t\t\t\tdata = dataUser.get( elem, camelKey );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// Attempt to \"discover\" the data in\n\t\t\t\t// HTML5 custom data-* attrs\n\t\t\t\tdata = dataAttr( elem, camelKey, undefined );\n\t\t\t\tif ( data !== undefined ) {\n\t\t\t\t\treturn data;\n\t\t\t\t}\n\n\t\t\t\t// We tried really hard, but the data doesn't exist.\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Set the data...\n\t\t\tcamelKey = jQuery.camelCase( key );\n\t\t\tthis.each( function() {\n\n\t\t\t\t// First, attempt to store a copy or reference of any\n\t\t\t\t// data that might've been store with a camelCased key.\n\t\t\t\tvar data = dataUser.get( this, camelKey );\n\n\t\t\t\t// For HTML5 data-* attribute interop, we have to\n\t\t\t\t// store property names with dashes in a camelCase form.\n\t\t\t\t// This might not apply to all properties...*\n\t\t\t\tdataUser.set( this, camelKey, value );\n\n\t\t\t\t// *... In the case of properties that might _actually_\n\t\t\t\t// have dashes, we need to also store a copy of that\n\t\t\t\t// unchanged property.\n\t\t\t\tif ( key.indexOf( \"-\" ) > -1 && data !== undefined ) {\n\t\t\t\t\tdataUser.set( this, key, value );\n\t\t\t\t}\n\t\t\t} );\n\t\t}, null, value, arguments.length > 1, null, true );\n\t},\n\n\tremoveData: function( key ) {\n\t\treturn this.each( function() {\n\t\t\tdataUser.remove( this, key );\n\t\t} );\n\t}\n} );\n\n\njQuery.extend( {\n\tqueue: function( elem, type, data ) {\n\t\tvar queue;\n\n\t\tif ( elem ) {\n\t\t\ttype = ( type || \"fx\" ) + \"queue\";\n\t\t\tqueue = dataPriv.get( elem, type );\n\n\t\t\t// Speed up dequeue by getting out quickly if this is just a lookup\n\t\t\tif ( data ) {\n\t\t\t\tif ( !queue || jQuery.isArray( data ) ) {\n\t\t\t\t\tqueue = dataPriv.access( elem, type, jQuery.makeArray( data ) );\n\t\t\t\t} else {\n\t\t\t\t\tqueue.push( data );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn queue || [];\n\t\t}\n\t},\n\n\tdequeue: function( elem, type ) {\n\t\ttype = type || \"fx\";\n\n\t\tvar queue = jQuery.queue( elem, type ),\n\t\t\tstartLength = queue.length,\n\t\t\tfn = queue.shift(),\n\t\t\thooks = jQuery._queueHooks( elem, type ),\n\t\t\tnext = function() {\n\t\t\t\tjQuery.dequeue( elem, type );\n\t\t\t};\n\n\t\t// If the fx queue is dequeued, always remove the progress sentinel\n\t\tif ( fn === \"inprogress\" ) {\n\t\t\tfn = queue.shift();\n\t\t\tstartLength--;\n\t\t}\n\n\t\tif ( fn ) {\n\n\t\t\t// Add a progress sentinel to prevent the fx queue from being\n\t\t\t// automatically dequeued\n\t\t\tif ( type === \"fx\" ) {\n\t\t\t\tqueue.unshift( \"inprogress\" );\n\t\t\t}\n\n\t\t\t// Clear up the last queue stop function\n\t\t\tdelete hooks.stop;\n\t\t\tfn.call( elem, next, hooks );\n\t\t}\n\n\t\tif ( !startLength && hooks ) {\n\t\t\thooks.empty.fire();\n\t\t}\n\t},\n\n\t// Not public - generate a queueHooks object, or return the current one\n\t_queueHooks: function( elem, type ) {\n\t\tvar key = type + \"queueHooks\";\n\t\treturn dataPriv.get( elem, key ) || dataPriv.access( elem, key, {\n\t\t\tempty: jQuery.Callbacks( \"once memory\" ).add( function() {\n\t\t\t\tdataPriv.remove( elem, [ type + \"queue\", key ] );\n\t\t\t} )\n\t\t} );\n\t}\n} );\n\njQuery.fn.extend( {\n\tqueue: function( type, data ) {\n\t\tvar setter = 2;\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tdata = type;\n\t\t\ttype = \"fx\";\n\t\t\tsetter--;\n\t\t}\n\n\t\tif ( arguments.length < setter ) {\n\t\t\treturn jQuery.queue( this[ 0 ], type );\n\t\t}\n\n\t\treturn data === undefined ?\n\t\t\tthis :\n\t\t\tthis.each( function() {\n\t\t\t\tvar queue = jQuery.queue( this, type, data );\n\n\t\t\t\t// Ensure a hooks for this queue\n\t\t\t\tjQuery._queueHooks( this, type );\n\n\t\t\t\tif ( type === \"fx\" && queue[ 0 ] !== \"inprogress\" ) {\n\t\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t\t}\n\t\t\t} );\n\t},\n\tdequeue: function( type ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.dequeue( this, type );\n\t\t} );\n\t},\n\tclearQueue: function( type ) {\n\t\treturn this.queue( type || \"fx\", [] );\n\t},\n\n\t// Get a promise resolved when queues of a certain type\n\t// are emptied (fx is the type by default)\n\tpromise: function( type, obj ) {\n\t\tvar tmp,\n\t\t\tcount = 1,\n\t\t\tdefer = jQuery.Deferred(),\n\t\t\telements = this,\n\t\t\ti = this.length,\n\t\t\tresolve = function() {\n\t\t\t\tif ( !( --count ) ) {\n\t\t\t\t\tdefer.resolveWith( elements, [ elements ] );\n\t\t\t\t}\n\t\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tobj = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\ttype = type || \"fx\";\n\n\t\twhile ( i-- ) {\n\t\t\ttmp = dataPriv.get( elements[ i ], type + \"queueHooks\" );\n\t\t\tif ( tmp && tmp.empty ) {\n\t\t\t\tcount++;\n\t\t\t\ttmp.empty.add( resolve );\n\t\t\t}\n\t\t}\n\t\tresolve();\n\t\treturn defer.promise( obj );\n\t}\n} );\nvar pnum = ( /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/ ).source;\n\nvar rcssNum = new RegExp( \"^(?:([+-])=|)(\" + pnum + \")([a-z%]*)$\", \"i\" );\n\n\nvar cssExpand = [ \"Top\", \"Right\", \"Bottom\", \"Left\" ];\n\nvar isHidden = function( elem, el ) {\n\n\t\t// isHidden might be called from jQuery#filter function;\n\t\t// in that case, element will be second argument\n\t\telem = el || elem;\n\t\treturn jQuery.css( elem, \"display\" ) === \"none\" ||\n\t\t\t!jQuery.contains( elem.ownerDocument, elem );\n\t};\n\n\n\nfunction adjustCSS( elem, prop, valueParts, tween ) {\n\tvar adjusted,\n\t\tscale = 1,\n\t\tmaxIterations = 20,\n\t\tcurrentValue = tween ?\n\t\t\tfunction() { return tween.cur(); } :\n\t\t\tfunction() { return jQuery.css( elem, prop, \"\" ); },\n\t\tinitial = currentValue(),\n\t\tunit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" ),\n\n\t\t// Starting value computation is required for potential unit mismatches\n\t\tinitialInUnit = ( jQuery.cssNumber[ prop ] || unit !== \"px\" && +initial ) &&\n\t\t\trcssNum.exec( jQuery.css( elem, prop ) );\n\n\tif ( initialInUnit && initialInUnit[ 3 ] !== unit ) {\n\n\t\t// Trust units reported by jQuery.css\n\t\tunit = unit || initialInUnit[ 3 ];\n\n\t\t// Make sure we update the tween properties later on\n\t\tvalueParts = valueParts || [];\n\n\t\t// Iteratively approximate from a nonzero starting point\n\t\tinitialInUnit = +initial || 1;\n\n\t\tdo {\n\n\t\t\t// If previous iteration zeroed out, double until we get *something*.\n\t\t\t// Use string for doubling so we don't accidentally see scale as unchanged below\n\t\t\tscale = scale || \".5\";\n\n\t\t\t// Adjust and apply\n\t\t\tinitialInUnit = initialInUnit / scale;\n\t\t\tjQuery.style( elem, prop, initialInUnit + unit );\n\n\t\t// Update scale, tolerating zero or NaN from tween.cur()\n\t\t// Break the loop if scale is unchanged or perfect, or if we've just had enough.\n\t\t} while (\n\t\t\tscale !== ( scale = currentValue() / initial ) && scale !== 1 && --maxIterations\n\t\t);\n\t}\n\n\tif ( valueParts ) {\n\t\tinitialInUnit = +initialInUnit || +initial || 0;\n\n\t\t// Apply relative offset (+=/-=) if specified\n\t\tadjusted = valueParts[ 1 ] ?\n\t\t\tinitialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] :\n\t\t\t+valueParts[ 2 ];\n\t\tif ( tween ) {\n\t\t\ttween.unit = unit;\n\t\t\ttween.start = initialInUnit;\n\t\t\ttween.end = adjusted;\n\t\t}\n\t}\n\treturn adjusted;\n}\nvar rcheckableType = ( /^(?:checkbox|radio)$/i );\n\nvar rtagName = ( /<([\\w:-]+)/ );\n\nvar rscriptType = ( /^$|\\/(?:java|ecma)script/i );\n\n\n\n// We have to close these tags to support XHTML (#13200)\nvar wrapMap = {\n\n\t// Support: IE9\n\toption: [ 1, \"<select multiple='multiple'>\", \"</select>\" ],\n\n\t// XHTML parsers do not magically insert elements in the\n\t// same way that tag soup parsers do. So we cannot shorten\n\t// this by omitting <tbody> or other required elements.\n\tthead: [ 1, \"<table>\", \"</table>\" ],\n\tcol: [ 2, \"<table><colgroup>\", \"</colgroup></table>\" ],\n\ttr: [ 2, \"<table><tbody>\", \"</tbody></table>\" ],\n\ttd: [ 3, \"<table><tbody><tr>\", \"</tr></tbody></table>\" ],\n\n\t_default: [ 0, \"\", \"\" ]\n};\n\n// Support: IE9\nwrapMap.optgroup = wrapMap.option;\n\nwrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\nwrapMap.th = wrapMap.td;\n\n\nfunction getAll( context, tag ) {\n\n\t// Support: IE9-11+\n\t// Use typeof to avoid zero-argument method invocation on host objects (#15151)\n\tvar ret = typeof context.getElementsByTagName !== \"undefined\" ?\n\t\t\tcontext.getElementsByTagName( tag || \"*\" ) :\n\t\t\ttypeof context.querySelectorAll !== \"undefined\" ?\n\t\t\t\tcontext.querySelectorAll( tag || \"*\" ) :\n\t\t\t[];\n\n\treturn tag === undefined || tag && jQuery.nodeName( context, tag ) ?\n\t\tjQuery.merge( [ context ], ret ) :\n\t\tret;\n}\n\n\n// Mark scripts as having already been evaluated\nfunction setGlobalEval( elems, refElements ) {\n\tvar i = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\tdataPriv.set(\n\t\t\telems[ i ],\n\t\t\t\"globalEval\",\n\t\t\t!refElements || dataPriv.get( refElements[ i ], \"globalEval\" )\n\t\t);\n\t}\n}\n\n\nvar rhtml = /<|&#?\\w+;/;\n\nfunction buildFragment( elems, context, scripts, selection, ignored ) {\n\tvar elem, tmp, tag, wrap, contains, j,\n\t\tfragment = context.createDocumentFragment(),\n\t\tnodes = [],\n\t\ti = 0,\n\t\tl = elems.length;\n\n\tfor ( ; i < l; i++ ) {\n\t\telem = elems[ i ];\n\n\t\tif ( elem || elem === 0 ) {\n\n\t\t\t// Add nodes directly\n\t\t\tif ( jQuery.type( elem ) === \"object\" ) {\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );\n\n\t\t\t// Convert non-html into a text node\n\t\t\t} else if ( !rhtml.test( elem ) ) {\n\t\t\t\tnodes.push( context.createTextNode( elem ) );\n\n\t\t\t// Convert html into DOM nodes\n\t\t\t} else {\n\t\t\t\ttmp = tmp || fragment.appendChild( context.createElement( \"div\" ) );\n\n\t\t\t\t// Deserialize a standard representation\n\t\t\t\ttag = ( rtagName.exec( elem ) || [ \"\", \"\" ] )[ 1 ].toLowerCase();\n\t\t\t\twrap = wrapMap[ tag ] || wrapMap._default;\n\t\t\t\ttmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ];\n\n\t\t\t\t// Descend through wrappers to the right content\n\t\t\t\tj = wrap[ 0 ];\n\t\t\t\twhile ( j-- ) {\n\t\t\t\t\ttmp = tmp.lastChild;\n\t\t\t\t}\n\n\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\tjQuery.merge( nodes, tmp.childNodes );\n\n\t\t\t\t// Remember the top-level container\n\t\t\t\ttmp = fragment.firstChild;\n\n\t\t\t\t// Ensure the created nodes are orphaned (#12392)\n\t\t\t\ttmp.textContent = \"\";\n\t\t\t}\n\t\t}\n\t}\n\n\t// Remove wrapper from fragment\n\tfragment.textContent = \"\";\n\n\ti = 0;\n\twhile ( ( elem = nodes[ i++ ] ) ) {\n\n\t\t// Skip elements already in the context collection (trac-4087)\n\t\tif ( selection && jQuery.inArray( elem, selection ) > -1 ) {\n\t\t\tif ( ignored ) {\n\t\t\t\tignored.push( elem );\n\t\t\t}\n\t\t\tcontinue;\n\t\t}\n\n\t\tcontains = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Append to fragment\n\t\ttmp = getAll( fragment.appendChild( elem ), \"script\" );\n\n\t\t// Preserve script evaluation history\n\t\tif ( contains ) {\n\t\t\tsetGlobalEval( tmp );\n\t\t}\n\n\t\t// Capture executables\n\t\tif ( scripts ) {\n\t\t\tj = 0;\n\t\t\twhile ( ( elem = tmp[ j++ ] ) ) {\n\t\t\t\tif ( rscriptType.test( elem.type || \"\" ) ) {\n\t\t\t\t\tscripts.push( elem );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn fragment;\n}\n\n\n( function() {\n\tvar fragment = document.createDocumentFragment(),\n\t\tdiv = fragment.appendChild( document.createElement( \"div\" ) ),\n\t\tinput = document.createElement( \"input\" );\n\n\t// Support: Android 4.0-4.3, Safari<=5.1\n\t// Check state lost if the name is set (#11217)\n\t// Support: Windows Web Apps (WWA)\n\t// `name` and `type` must use .setAttribute for WWA (#14901)\n\tinput.setAttribute( \"type\", \"radio\" );\n\tinput.setAttribute( \"checked\", \"checked\" );\n\tinput.setAttribute( \"name\", \"t\" );\n\n\tdiv.appendChild( input );\n\n\t// Support: Safari<=5.1, Android<4.2\n\t// Older WebKit doesn't clone checked state correctly in fragments\n\tsupport.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked;\n\n\t// Support: IE<=11+\n\t// Make sure textarea (and checkbox) defaultValue is properly cloned\n\tdiv.innerHTML = \"<textarea>x</textarea>\";\n\tsupport.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;\n} )();\n\n\nvar\n\trkeyEvent = /^key/,\n\trmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n\trtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\nfunction returnTrue() {\n\treturn true;\n}\n\nfunction returnFalse() {\n\treturn false;\n}\n\n// Support: IE9\n// See #13393 for more info\nfunction safeActiveElement() {\n\ttry {\n\t\treturn document.activeElement;\n\t} catch ( err ) { }\n}\n\nfunction on( elem, types, selector, data, fn, one ) {\n\tvar origFn, type;\n\n\t// Types can be a map of types/handlers\n\tif ( typeof types === \"object\" ) {\n\n\t\t// ( types-Object, selector, data )\n\t\tif ( typeof selector !== \"string\" ) {\n\n\t\t\t// ( types-Object, data )\n\t\t\tdata = data || selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tfor ( type in types ) {\n\t\t\ton( elem, type, selector, data, types[ type ], one );\n\t\t}\n\t\treturn elem;\n\t}\n\n\tif ( data == null && fn == null ) {\n\n\t\t// ( types, fn )\n\t\tfn = selector;\n\t\tdata = selector = undefined;\n\t} else if ( fn == null ) {\n\t\tif ( typeof selector === \"string\" ) {\n\n\t\t\t// ( types, selector, fn )\n\t\t\tfn = data;\n\t\t\tdata = undefined;\n\t\t} else {\n\n\t\t\t// ( types, data, fn )\n\t\t\tfn = data;\n\t\t\tdata = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t}\n\tif ( fn === false ) {\n\t\tfn = returnFalse;\n\t} else if ( !fn ) {\n\t\treturn elem;\n\t}\n\n\tif ( one === 1 ) {\n\t\torigFn = fn;\n\t\tfn = function( event ) {\n\n\t\t\t// Can use an empty set, since event contains the info\n\t\t\tjQuery().off( event );\n\t\t\treturn origFn.apply( this, arguments );\n\t\t};\n\n\t\t// Use same guid so caller can remove using origFn\n\t\tfn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ );\n\t}\n\treturn elem.each( function() {\n\t\tjQuery.event.add( this, types, fn, data, selector );\n\t} );\n}\n\n/*\n * Helper functions for managing events -- not part of the public interface.\n * Props to Dean Edwards' addEvent library for many of the ideas.\n */\njQuery.event = {\n\n\tglobal: {},\n\n\tadd: function( elem, types, handler, data, selector ) {\n\n\t\tvar handleObjIn, eventHandle, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.get( elem );\n\n\t\t// Don't attach events to noData or text/comment nodes (but allow plain objects)\n\t\tif ( !elemData ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Caller can pass in an object of custom data in lieu of the handler\n\t\tif ( handler.handler ) {\n\t\t\thandleObjIn = handler;\n\t\t\thandler = handleObjIn.handler;\n\t\t\tselector = handleObjIn.selector;\n\t\t}\n\n\t\t// Make sure that the handler has a unique ID, used to find/remove it later\n\t\tif ( !handler.guid ) {\n\t\t\thandler.guid = jQuery.guid++;\n\t\t}\n\n\t\t// Init the element's event structure and main handler, if this is the first\n\t\tif ( !( events = elemData.events ) ) {\n\t\t\tevents = elemData.events = {};\n\t\t}\n\t\tif ( !( eventHandle = elemData.handle ) ) {\n\t\t\teventHandle = elemData.handle = function( e ) {\n\n\t\t\t\t// Discard the second event of a jQuery.event.trigger() and\n\t\t\t\t// when an event is called after a page has unloaded\n\t\t\t\treturn typeof jQuery !== \"undefined\" && jQuery.event.triggered !== e.type ?\n\t\t\t\t\tjQuery.event.dispatch.apply( elem, arguments ) : undefined;\n\t\t\t};\n\t\t}\n\n\t\t// Handle multiple events separated by a space\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// There *must* be a type, no attaching namespace-only handlers\n\t\t\tif ( !type ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\t// If event changes its type, use the special event handlers for the changed type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// If selector defined, determine special event api type, otherwise given type\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\n\t\t\t// Update special based on newly reset type\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\n\t\t\t// handleObj is passed to all event handlers\n\t\t\thandleObj = jQuery.extend( {\n\t\t\t\ttype: type,\n\t\t\t\torigType: origType,\n\t\t\t\tdata: data,\n\t\t\t\thandler: handler,\n\t\t\t\tguid: handler.guid,\n\t\t\t\tselector: selector,\n\t\t\t\tneedsContext: selector && jQuery.expr.match.needsContext.test( selector ),\n\t\t\t\tnamespace: namespaces.join( \".\" )\n\t\t\t}, handleObjIn );\n\n\t\t\t// Init the event handler queue if we're the first\n\t\t\tif ( !( handlers = events[ type ] ) ) {\n\t\t\t\thandlers = events[ type ] = [];\n\t\t\t\thandlers.delegateCount = 0;\n\n\t\t\t\t// Only use addEventListener if the special events handler returns false\n\t\t\t\tif ( !special.setup ||\n\t\t\t\t\tspecial.setup.call( elem, data, namespaces, eventHandle ) === false ) {\n\n\t\t\t\t\tif ( elem.addEventListener ) {\n\t\t\t\t\t\telem.addEventListener( type, eventHandle );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( special.add ) {\n\t\t\t\tspecial.add.call( elem, handleObj );\n\n\t\t\t\tif ( !handleObj.handler.guid ) {\n\t\t\t\t\thandleObj.handler.guid = handler.guid;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Add to the element's handler list, delegates in front\n\t\t\tif ( selector ) {\n\t\t\t\thandlers.splice( handlers.delegateCount++, 0, handleObj );\n\t\t\t} else {\n\t\t\t\thandlers.push( handleObj );\n\t\t\t}\n\n\t\t\t// Keep track of which events have ever been used, for event optimization\n\t\t\tjQuery.event.global[ type ] = true;\n\t\t}\n\n\t},\n\n\t// Detach an event or set of events from an element\n\tremove: function( elem, types, handler, selector, mappedTypes ) {\n\n\t\tvar j, origCount, tmp,\n\t\t\tevents, t, handleObj,\n\t\t\tspecial, handlers, type, namespaces, origType,\n\t\t\telemData = dataPriv.hasData( elem ) && dataPriv.get( elem );\n\n\t\tif ( !elemData || !( events = elemData.events ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Once for each type.namespace in types; type may be omitted\n\t\ttypes = ( types || \"\" ).match( rnotwhite ) || [ \"\" ];\n\t\tt = types.length;\n\t\twhile ( t-- ) {\n\t\t\ttmp = rtypenamespace.exec( types[ t ] ) || [];\n\t\t\ttype = origType = tmp[ 1 ];\n\t\t\tnamespaces = ( tmp[ 2 ] || \"\" ).split( \".\" ).sort();\n\n\t\t\t// Unbind all events (on this namespace, if provided) for the element\n\t\t\tif ( !type ) {\n\t\t\t\tfor ( type in events ) {\n\t\t\t\t\tjQuery.event.remove( elem, type + types[ t ], handler, selector, true );\n\t\t\t\t}\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tspecial = jQuery.event.special[ type ] || {};\n\t\t\ttype = ( selector ? special.delegateType : special.bindType ) || type;\n\t\t\thandlers = events[ type ] || [];\n\t\t\ttmp = tmp[ 2 ] &&\n\t\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" );\n\n\t\t\t// Remove matching events\n\t\t\torigCount = j = handlers.length;\n\t\t\twhile ( j-- ) {\n\t\t\t\thandleObj = handlers[ j ];\n\n\t\t\t\tif ( ( mappedTypes || origType === handleObj.origType ) &&\n\t\t\t\t\t( !handler || handler.guid === handleObj.guid ) &&\n\t\t\t\t\t( !tmp || tmp.test( handleObj.namespace ) ) &&\n\t\t\t\t\t( !selector || selector === handleObj.selector ||\n\t\t\t\t\t\tselector === \"**\" && handleObj.selector ) ) {\n\t\t\t\t\thandlers.splice( j, 1 );\n\n\t\t\t\t\tif ( handleObj.selector ) {\n\t\t\t\t\t\thandlers.delegateCount--;\n\t\t\t\t\t}\n\t\t\t\t\tif ( special.remove ) {\n\t\t\t\t\t\tspecial.remove.call( elem, handleObj );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Remove generic event handler if we removed something and no more handlers exist\n\t\t\t// (avoids potential for endless recursion during removal of special event handlers)\n\t\t\tif ( origCount && !handlers.length ) {\n\t\t\t\tif ( !special.teardown ||\n\t\t\t\t\tspecial.teardown.call( elem, namespaces, elemData.handle ) === false ) {\n\n\t\t\t\t\tjQuery.removeEvent( elem, type, elemData.handle );\n\t\t\t\t}\n\n\t\t\t\tdelete events[ type ];\n\t\t\t}\n\t\t}\n\n\t\t// Remove data and the expando if it's no longer used\n\t\tif ( jQuery.isEmptyObject( events ) ) {\n\t\t\tdataPriv.remove( elem, \"handle events\" );\n\t\t}\n\t},\n\n\tdispatch: function( event ) {\n\n\t\t// Make a writable jQuery.Event from the native event object\n\t\tevent = jQuery.event.fix( event );\n\n\t\tvar i, j, ret, matched, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\targs = slice.call( arguments ),\n\t\t\thandlers = ( dataPriv.get( this, \"events\" ) || {} )[ event.type ] || [],\n\t\t\tspecial = jQuery.event.special[ event.type ] || {};\n\n\t\t// Use the fix-ed jQuery.Event rather than the (read-only) native event\n\t\targs[ 0 ] = event;\n\t\tevent.delegateTarget = this;\n\n\t\t// Call the preDispatch hook for the mapped type, and let it bail if desired\n\t\tif ( special.preDispatch && special.preDispatch.call( this, event ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine handlers\n\t\thandlerQueue = jQuery.event.handlers.call( this, event, handlers );\n\n\t\t// Run delegates first; they may want to stop propagation beneath us\n\t\ti = 0;\n\t\twhile ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) {\n\t\t\tevent.currentTarget = matched.elem;\n\n\t\t\tj = 0;\n\t\t\twhile ( ( handleObj = matched.handlers[ j++ ] ) &&\n\t\t\t\t!event.isImmediatePropagationStopped() ) {\n\n\t\t\t\t// Triggered event must either 1) have no namespace, or 2) have namespace(s)\n\t\t\t\t// a subset or equal to those in the bound event (both can have no namespace).\n\t\t\t\tif ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) {\n\n\t\t\t\t\tevent.handleObj = handleObj;\n\t\t\t\t\tevent.data = handleObj.data;\n\n\t\t\t\t\tret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle ||\n\t\t\t\t\t\thandleObj.handler ).apply( matched.elem, args );\n\n\t\t\t\t\tif ( ret !== undefined ) {\n\t\t\t\t\t\tif ( ( event.result = ret ) === false ) {\n\t\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t\t\tevent.stopPropagation();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Call the postDispatch hook for the mapped type\n\t\tif ( special.postDispatch ) {\n\t\t\tspecial.postDispatch.call( this, event );\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\thandlers: function( event, handlers ) {\n\t\tvar i, matches, sel, handleObj,\n\t\t\thandlerQueue = [],\n\t\t\tdelegateCount = handlers.delegateCount,\n\t\t\tcur = event.target;\n\n\t\t// Support (at least): Chrome, IE9\n\t\t// Find delegate handlers\n\t\t// Black-hole SVG <use> instance trees (#13180)\n\t\t//\n\t\t// Support: Firefox<=42+\n\t\t// Avoid non-left-click in FF but don't block IE radio events (#3861, gh-2343)\n\t\tif ( delegateCount && cur.nodeType &&\n\t\t\t( event.type !== \"click\" || isNaN( event.button ) || event.button < 1 ) ) {\n\n\t\t\tfor ( ; cur !== this; cur = cur.parentNode || this ) {\n\n\t\t\t\t// Don't check non-elements (#13208)\n\t\t\t\t// Don't process clicks on disabled elements (#6911, #8165, #11382, #11764)\n\t\t\t\tif ( cur.nodeType === 1 && ( cur.disabled !== true || event.type !== \"click\" ) ) {\n\t\t\t\t\tmatches = [];\n\t\t\t\t\tfor ( i = 0; i < delegateCount; i++ ) {\n\t\t\t\t\t\thandleObj = handlers[ i ];\n\n\t\t\t\t\t\t// Don't conflict with Object.prototype properties (#13203)\n\t\t\t\t\t\tsel = handleObj.selector + \" \";\n\n\t\t\t\t\t\tif ( matches[ sel ] === undefined ) {\n\t\t\t\t\t\t\tmatches[ sel ] = handleObj.needsContext ?\n\t\t\t\t\t\t\t\tjQuery( sel, this ).index( cur ) > -1 :\n\t\t\t\t\t\t\t\tjQuery.find( sel, this, null, [ cur ] ).length;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( matches[ sel ] ) {\n\t\t\t\t\t\t\tmatches.push( handleObj );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif ( matches.length ) {\n\t\t\t\t\t\thandlerQueue.push( { elem: cur, handlers: matches } );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Add the remaining (directly-bound) handlers\n\t\tif ( delegateCount < handlers.length ) {\n\t\t\thandlerQueue.push( { elem: this, handlers: handlers.slice( delegateCount ) } );\n\t\t}\n\n\t\treturn handlerQueue;\n\t},\n\n\t// Includes some event props shared by KeyEvent and MouseEvent\n\tprops: ( \"altKey bubbles cancelable ctrlKey currentTarget detail eventPhase \" +\n\t\t\"metaKey relatedTarget shiftKey target timeStamp view which\" ).split( \" \" ),\n\n\tfixHooks: {},\n\n\tkeyHooks: {\n\t\tprops: \"char charCode key keyCode\".split( \" \" ),\n\t\tfilter: function( event, original ) {\n\n\t\t\t// Add which for key events\n\t\t\tif ( event.which == null ) {\n\t\t\t\tevent.which = original.charCode != null ? original.charCode : original.keyCode;\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tmouseHooks: {\n\t\tprops: ( \"button buttons clientX clientY offsetX offsetY pageX pageY \" +\n\t\t\t\"screenX screenY toElement\" ).split( \" \" ),\n\t\tfilter: function( event, original ) {\n\t\t\tvar eventDoc, doc, body,\n\t\t\t\tbutton = original.button;\n\n\t\t\t// Calculate pageX/Y if missing and clientX/Y available\n\t\t\tif ( event.pageX == null && original.clientX != null ) {\n\t\t\t\teventDoc = event.target.ownerDocument || document;\n\t\t\t\tdoc = eventDoc.documentElement;\n\t\t\t\tbody = eventDoc.body;\n\n\t\t\t\tevent.pageX = original.clientX +\n\t\t\t\t\t( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) -\n\t\t\t\t\t( doc && doc.clientLeft || body && body.clientLeft || 0 );\n\t\t\t\tevent.pageY = original.clientY +\n\t\t\t\t\t( doc && doc.scrollTop  || body && body.scrollTop  || 0 ) -\n\t\t\t\t\t( doc && doc.clientTop  || body && body.clientTop  || 0 );\n\t\t\t}\n\n\t\t\t// Add which for click: 1 === left; 2 === middle; 3 === right\n\t\t\t// Note: button is not normalized, so don't use it\n\t\t\tif ( !event.which && button !== undefined ) {\n\t\t\t\tevent.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) );\n\t\t\t}\n\n\t\t\treturn event;\n\t\t}\n\t},\n\n\tfix: function( event ) {\n\t\tif ( event[ jQuery.expando ] ) {\n\t\t\treturn event;\n\t\t}\n\n\t\t// Create a writable copy of the event object and normalize some properties\n\t\tvar i, prop, copy,\n\t\t\ttype = event.type,\n\t\t\toriginalEvent = event,\n\t\t\tfixHook = this.fixHooks[ type ];\n\n\t\tif ( !fixHook ) {\n\t\t\tthis.fixHooks[ type ] = fixHook =\n\t\t\t\trmouseEvent.test( type ) ? this.mouseHooks :\n\t\t\t\trkeyEvent.test( type ) ? this.keyHooks :\n\t\t\t\t{};\n\t\t}\n\t\tcopy = fixHook.props ? this.props.concat( fixHook.props ) : this.props;\n\n\t\tevent = new jQuery.Event( originalEvent );\n\n\t\ti = copy.length;\n\t\twhile ( i-- ) {\n\t\t\tprop = copy[ i ];\n\t\t\tevent[ prop ] = originalEvent[ prop ];\n\t\t}\n\n\t\t// Support: Cordova 2.5 (WebKit) (#13255)\n\t\t// All events should have a target; Cordova deviceready doesn't\n\t\tif ( !event.target ) {\n\t\t\tevent.target = document;\n\t\t}\n\n\t\t// Support: Safari 6.0+, Chrome<28\n\t\t// Target should not be a text node (#504, #13143)\n\t\tif ( event.target.nodeType === 3 ) {\n\t\t\tevent.target = event.target.parentNode;\n\t\t}\n\n\t\treturn fixHook.filter ? fixHook.filter( event, originalEvent ) : event;\n\t},\n\n\tspecial: {\n\t\tload: {\n\n\t\t\t// Prevent triggered image.load events from bubbling to window.load\n\t\t\tnoBubble: true\n\t\t},\n\t\tfocus: {\n\n\t\t\t// Fire native event if possible so blur/focus sequence is correct\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this !== safeActiveElement() && this.focus ) {\n\t\t\t\t\tthis.focus();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusin\"\n\t\t},\n\t\tblur: {\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this === safeActiveElement() && this.blur ) {\n\t\t\t\t\tthis.blur();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\t\t\tdelegateType: \"focusout\"\n\t\t},\n\t\tclick: {\n\n\t\t\t// For checkbox, fire native event so checked state will be right\n\t\t\ttrigger: function() {\n\t\t\t\tif ( this.type === \"checkbox\" && this.click && jQuery.nodeName( this, \"input\" ) ) {\n\t\t\t\t\tthis.click();\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// For cross-browser consistency, don't fire native .click() on links\n\t\t\t_default: function( event ) {\n\t\t\t\treturn jQuery.nodeName( event.target, \"a\" );\n\t\t\t}\n\t\t},\n\n\t\tbeforeunload: {\n\t\t\tpostDispatch: function( event ) {\n\n\t\t\t\t// Support: Firefox 20+\n\t\t\t\t// Firefox doesn't alert if the returnValue field is not set.\n\t\t\t\tif ( event.result !== undefined && event.originalEvent ) {\n\t\t\t\t\tevent.originalEvent.returnValue = event.result;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n};\n\njQuery.removeEvent = function( elem, type, handle ) {\n\n\t// This \"if\" is needed for plain objects\n\tif ( elem.removeEventListener ) {\n\t\telem.removeEventListener( type, handle );\n\t}\n};\n\njQuery.Event = function( src, props ) {\n\n\t// Allow instantiation without the 'new' keyword\n\tif ( !( this instanceof jQuery.Event ) ) {\n\t\treturn new jQuery.Event( src, props );\n\t}\n\n\t// Event object\n\tif ( src && src.type ) {\n\t\tthis.originalEvent = src;\n\t\tthis.type = src.type;\n\n\t\t// Events bubbling up the document may have been marked as prevented\n\t\t// by a handler lower down the tree; reflect the correct value.\n\t\tthis.isDefaultPrevented = src.defaultPrevented ||\n\t\t\t\tsrc.defaultPrevented === undefined &&\n\n\t\t\t\t// Support: Android<4.0\n\t\t\t\tsrc.returnValue === false ?\n\t\t\treturnTrue :\n\t\t\treturnFalse;\n\n\t// Event type\n\t} else {\n\t\tthis.type = src;\n\t}\n\n\t// Put explicitly provided properties onto the event object\n\tif ( props ) {\n\t\tjQuery.extend( this, props );\n\t}\n\n\t// Create a timestamp if incoming event doesn't have one\n\tthis.timeStamp = src && src.timeStamp || jQuery.now();\n\n\t// Mark it as fixed\n\tthis[ jQuery.expando ] = true;\n};\n\n// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\njQuery.Event.prototype = {\n\tconstructor: jQuery.Event,\n\tisDefaultPrevented: returnFalse,\n\tisPropagationStopped: returnFalse,\n\tisImmediatePropagationStopped: returnFalse,\n\tisSimulated: false,\n\n\tpreventDefault: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isDefaultPrevented = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.preventDefault();\n\t\t}\n\t},\n\tstopPropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isPropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopPropagation();\n\t\t}\n\t},\n\tstopImmediatePropagation: function() {\n\t\tvar e = this.originalEvent;\n\n\t\tthis.isImmediatePropagationStopped = returnTrue;\n\n\t\tif ( e && !this.isSimulated ) {\n\t\t\te.stopImmediatePropagation();\n\t\t}\n\n\t\tthis.stopPropagation();\n\t}\n};\n\n// Create mouseenter/leave events using mouseover/out and event-time checks\n// so that event delegation works in jQuery.\n// Do the same for pointerenter/pointerleave and pointerover/pointerout\n//\n// Support: Safari 7 only\n// Safari sends mouseenter too often; see:\n// https://code.google.com/p/chromium/issues/detail?id=470258\n// for the description of the bug (it existed in older Chrome versions as well).\njQuery.each( {\n\tmouseenter: \"mouseover\",\n\tmouseleave: \"mouseout\",\n\tpointerenter: \"pointerover\",\n\tpointerleave: \"pointerout\"\n}, function( orig, fix ) {\n\tjQuery.event.special[ orig ] = {\n\t\tdelegateType: fix,\n\t\tbindType: fix,\n\n\t\thandle: function( event ) {\n\t\t\tvar ret,\n\t\t\t\ttarget = this,\n\t\t\t\trelated = event.relatedTarget,\n\t\t\t\thandleObj = event.handleObj;\n\n\t\t\t// For mouseenter/leave call the handler if related is outside the target.\n\t\t\t// NB: No relatedTarget if the mouse left/entered the browser window\n\t\t\tif ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) {\n\t\t\t\tevent.type = handleObj.origType;\n\t\t\t\tret = handleObj.handler.apply( this, arguments );\n\t\t\t\tevent.type = fix;\n\t\t\t}\n\t\t\treturn ret;\n\t\t}\n\t};\n} );\n\njQuery.fn.extend( {\n\ton: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn );\n\t},\n\tone: function( types, selector, data, fn ) {\n\t\treturn on( this, types, selector, data, fn, 1 );\n\t},\n\toff: function( types, selector, fn ) {\n\t\tvar handleObj, type;\n\t\tif ( types && types.preventDefault && types.handleObj ) {\n\n\t\t\t// ( event )  dispatched jQuery.Event\n\t\t\thandleObj = types.handleObj;\n\t\t\tjQuery( types.delegateTarget ).off(\n\t\t\t\thandleObj.namespace ?\n\t\t\t\t\thandleObj.origType + \".\" + handleObj.namespace :\n\t\t\t\t\thandleObj.origType,\n\t\t\t\thandleObj.selector,\n\t\t\t\thandleObj.handler\n\t\t\t);\n\t\t\treturn this;\n\t\t}\n\t\tif ( typeof types === \"object\" ) {\n\n\t\t\t// ( types-object [, selector] )\n\t\t\tfor ( type in types ) {\n\t\t\t\tthis.off( type, selector, types[ type ] );\n\t\t\t}\n\t\t\treturn this;\n\t\t}\n\t\tif ( selector === false || typeof selector === \"function\" ) {\n\n\t\t\t// ( types [, fn] )\n\t\t\tfn = selector;\n\t\t\tselector = undefined;\n\t\t}\n\t\tif ( fn === false ) {\n\t\t\tfn = returnFalse;\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.remove( this, types, fn, selector );\n\t\t} );\n\t}\n} );\n\n\nvar\n\trxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\\w:-]+)[^>]*)\\/>/gi,\n\n\t// Support: IE 10-11, Edge 10240+\n\t// In IE/Edge using regex groups here causes severe slowdowns.\n\t// See https://connect.microsoft.com/IE/feedback/details/1736512/\n\trnoInnerhtml = /<script|<style|<link/i,\n\n\t// checked=\"checked\" or checked\n\trchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n\trscriptTypeMasked = /^true\\/(.*)/,\n\trcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g;\n\n// Manipulating tables requires a tbody\nfunction manipulationTarget( elem, content ) {\n\treturn jQuery.nodeName( elem, \"table\" ) &&\n\t\tjQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, \"tr\" ) ?\n\n\t\telem.getElementsByTagName( \"tbody\" )[ 0 ] ||\n\t\t\telem.appendChild( elem.ownerDocument.createElement( \"tbody\" ) ) :\n\t\telem;\n}\n\n// Replace/restore the type attribute of script elements for safe DOM manipulation\nfunction disableScript( elem ) {\n\telem.type = ( elem.getAttribute( \"type\" ) !== null ) + \"/\" + elem.type;\n\treturn elem;\n}\nfunction restoreScript( elem ) {\n\tvar match = rscriptTypeMasked.exec( elem.type );\n\n\tif ( match ) {\n\t\telem.type = match[ 1 ];\n\t} else {\n\t\telem.removeAttribute( \"type\" );\n\t}\n\n\treturn elem;\n}\n\nfunction cloneCopyEvent( src, dest ) {\n\tvar i, l, type, pdataOld, pdataCur, udataOld, udataCur, events;\n\n\tif ( dest.nodeType !== 1 ) {\n\t\treturn;\n\t}\n\n\t// 1. Copy private data: events, handlers, etc.\n\tif ( dataPriv.hasData( src ) ) {\n\t\tpdataOld = dataPriv.access( src );\n\t\tpdataCur = dataPriv.set( dest, pdataOld );\n\t\tevents = pdataOld.events;\n\n\t\tif ( events ) {\n\t\t\tdelete pdataCur.handle;\n\t\t\tpdataCur.events = {};\n\n\t\t\tfor ( type in events ) {\n\t\t\t\tfor ( i = 0, l = events[ type ].length; i < l; i++ ) {\n\t\t\t\t\tjQuery.event.add( dest, type, events[ type ][ i ] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t// 2. Copy user data\n\tif ( dataUser.hasData( src ) ) {\n\t\tudataOld = dataUser.access( src );\n\t\tudataCur = jQuery.extend( {}, udataOld );\n\n\t\tdataUser.set( dest, udataCur );\n\t}\n}\n\n// Fix IE bugs, see support tests\nfunction fixInput( src, dest ) {\n\tvar nodeName = dest.nodeName.toLowerCase();\n\n\t// Fails to persist the checked state of a cloned checkbox or radio button.\n\tif ( nodeName === \"input\" && rcheckableType.test( src.type ) ) {\n\t\tdest.checked = src.checked;\n\n\t// Fails to return the selected option to the default selected state when cloning options\n\t} else if ( nodeName === \"input\" || nodeName === \"textarea\" ) {\n\t\tdest.defaultValue = src.defaultValue;\n\t}\n}\n\nfunction domManip( collection, args, callback, ignored ) {\n\n\t// Flatten any nested arrays\n\targs = concat.apply( [], args );\n\n\tvar fragment, first, scripts, hasScripts, node, doc,\n\t\ti = 0,\n\t\tl = collection.length,\n\t\tiNoClone = l - 1,\n\t\tvalue = args[ 0 ],\n\t\tisFunction = jQuery.isFunction( value );\n\n\t// We can't cloneNode fragments that contain checked, in WebKit\n\tif ( isFunction ||\n\t\t\t( l > 1 && typeof value === \"string\" &&\n\t\t\t\t!support.checkClone && rchecked.test( value ) ) ) {\n\t\treturn collection.each( function( index ) {\n\t\t\tvar self = collection.eq( index );\n\t\t\tif ( isFunction ) {\n\t\t\t\targs[ 0 ] = value.call( this, index, self.html() );\n\t\t\t}\n\t\t\tdomManip( self, args, callback, ignored );\n\t\t} );\n\t}\n\n\tif ( l ) {\n\t\tfragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored );\n\t\tfirst = fragment.firstChild;\n\n\t\tif ( fragment.childNodes.length === 1 ) {\n\t\t\tfragment = first;\n\t\t}\n\n\t\t// Require either new content or an interest in ignored elements to invoke the callback\n\t\tif ( first || ignored ) {\n\t\t\tscripts = jQuery.map( getAll( fragment, \"script\" ), disableScript );\n\t\t\thasScripts = scripts.length;\n\n\t\t\t// Use the original fragment for the last item\n\t\t\t// instead of the first because it can end up\n\t\t\t// being emptied incorrectly in certain situations (#8070).\n\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\tnode = fragment;\n\n\t\t\t\tif ( i !== iNoClone ) {\n\t\t\t\t\tnode = jQuery.clone( node, true, true );\n\n\t\t\t\t\t// Keep references to cloned scripts for later restoration\n\t\t\t\t\tif ( hasScripts ) {\n\n\t\t\t\t\t\t// Support: Android<4.1, PhantomJS<2\n\t\t\t\t\t\t// push.apply(_, arraylike) throws on ancient WebKit\n\t\t\t\t\t\tjQuery.merge( scripts, getAll( node, \"script\" ) );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tcallback.call( collection[ i ], node, i );\n\t\t\t}\n\n\t\t\tif ( hasScripts ) {\n\t\t\t\tdoc = scripts[ scripts.length - 1 ].ownerDocument;\n\n\t\t\t\t// Reenable scripts\n\t\t\t\tjQuery.map( scripts, restoreScript );\n\n\t\t\t\t// Evaluate executable scripts on first document insertion\n\t\t\t\tfor ( i = 0; i < hasScripts; i++ ) {\n\t\t\t\t\tnode = scripts[ i ];\n\t\t\t\t\tif ( rscriptType.test( node.type || \"\" ) &&\n\t\t\t\t\t\t!dataPriv.access( node, \"globalEval\" ) &&\n\t\t\t\t\t\tjQuery.contains( doc, node ) ) {\n\n\t\t\t\t\t\tif ( node.src ) {\n\n\t\t\t\t\t\t\t// Optional AJAX dependency, but won't run scripts if not present\n\t\t\t\t\t\t\tif ( jQuery._evalUrl ) {\n\t\t\t\t\t\t\t\tjQuery._evalUrl( node.src );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tjQuery.globalEval( node.textContent.replace( rcleanScript, \"\" ) );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn collection;\n}\n\nfunction remove( elem, selector, keepData ) {\n\tvar node,\n\t\tnodes = selector ? jQuery.filter( selector, elem ) : elem,\n\t\ti = 0;\n\n\tfor ( ; ( node = nodes[ i ] ) != null; i++ ) {\n\t\tif ( !keepData && node.nodeType === 1 ) {\n\t\t\tjQuery.cleanData( getAll( node ) );\n\t\t}\n\n\t\tif ( node.parentNode ) {\n\t\t\tif ( keepData && jQuery.contains( node.ownerDocument, node ) ) {\n\t\t\t\tsetGlobalEval( getAll( node, \"script\" ) );\n\t\t\t}\n\t\t\tnode.parentNode.removeChild( node );\n\t\t}\n\t}\n\n\treturn elem;\n}\n\njQuery.extend( {\n\thtmlPrefilter: function( html ) {\n\t\treturn html.replace( rxhtmlTag, \"<$1></$2>\" );\n\t},\n\n\tclone: function( elem, dataAndEvents, deepDataAndEvents ) {\n\t\tvar i, l, srcElements, destElements,\n\t\t\tclone = elem.cloneNode( true ),\n\t\t\tinPage = jQuery.contains( elem.ownerDocument, elem );\n\n\t\t// Fix IE cloning issues\n\t\tif ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) &&\n\t\t\t\t!jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2\n\t\t\tdestElements = getAll( clone );\n\t\t\tsrcElements = getAll( elem );\n\n\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\tfixInput( srcElements[ i ], destElements[ i ] );\n\t\t\t}\n\t\t}\n\n\t\t// Copy the events from the original to the clone\n\t\tif ( dataAndEvents ) {\n\t\t\tif ( deepDataAndEvents ) {\n\t\t\t\tsrcElements = srcElements || getAll( elem );\n\t\t\t\tdestElements = destElements || getAll( clone );\n\n\t\t\t\tfor ( i = 0, l = srcElements.length; i < l; i++ ) {\n\t\t\t\t\tcloneCopyEvent( srcElements[ i ], destElements[ i ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tcloneCopyEvent( elem, clone );\n\t\t\t}\n\t\t}\n\n\t\t// Preserve script evaluation history\n\t\tdestElements = getAll( clone, \"script\" );\n\t\tif ( destElements.length > 0 ) {\n\t\t\tsetGlobalEval( destElements, !inPage && getAll( elem, \"script\" ) );\n\t\t}\n\n\t\t// Return the cloned set\n\t\treturn clone;\n\t},\n\n\tcleanData: function( elems ) {\n\t\tvar data, elem, type,\n\t\t\tspecial = jQuery.event.special,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = elems[ i ] ) !== undefined; i++ ) {\n\t\t\tif ( acceptData( elem ) ) {\n\t\t\t\tif ( ( data = elem[ dataPriv.expando ] ) ) {\n\t\t\t\t\tif ( data.events ) {\n\t\t\t\t\t\tfor ( type in data.events ) {\n\t\t\t\t\t\t\tif ( special[ type ] ) {\n\t\t\t\t\t\t\t\tjQuery.event.remove( elem, type );\n\n\t\t\t\t\t\t\t// This is a shortcut to avoid jQuery.event.remove's overhead\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tjQuery.removeEvent( elem, type, data.handle );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataPriv.expando ] = undefined;\n\t\t\t\t}\n\t\t\t\tif ( elem[ dataUser.expando ] ) {\n\n\t\t\t\t\t// Support: Chrome <= 35-45+\n\t\t\t\t\t// Assign undefined instead of using delete, see Data#remove\n\t\t\t\t\telem[ dataUser.expando ] = undefined;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n} );\n\njQuery.fn.extend( {\n\n\t// Keep domManip exposed until 3.0 (gh-2225)\n\tdomManip: domManip,\n\n\tdetach: function( selector ) {\n\t\treturn remove( this, selector, true );\n\t},\n\n\tremove: function( selector ) {\n\t\treturn remove( this, selector );\n\t},\n\n\ttext: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\treturn value === undefined ?\n\t\t\t\tjQuery.text( this ) :\n\t\t\t\tthis.empty().each( function() {\n\t\t\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\t\t\tthis.textContent = value;\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t}, null, value, arguments.length );\n\t},\n\n\tappend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.appendChild( elem );\n\t\t\t}\n\t\t} );\n\t},\n\n\tprepend: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) {\n\t\t\t\tvar target = manipulationTarget( this, elem );\n\t\t\t\ttarget.insertBefore( elem, target.firstChild );\n\t\t\t}\n\t\t} );\n\t},\n\n\tbefore: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this );\n\t\t\t}\n\t\t} );\n\t},\n\n\tafter: function() {\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tif ( this.parentNode ) {\n\t\t\t\tthis.parentNode.insertBefore( elem, this.nextSibling );\n\t\t\t}\n\t\t} );\n\t},\n\n\tempty: function() {\n\t\tvar elem,\n\t\t\ti = 0;\n\n\t\tfor ( ; ( elem = this[ i ] ) != null; i++ ) {\n\t\t\tif ( elem.nodeType === 1 ) {\n\n\t\t\t\t// Prevent memory leaks\n\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\n\t\t\t\t// Remove any remaining nodes\n\t\t\t\telem.textContent = \"\";\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tclone: function( dataAndEvents, deepDataAndEvents ) {\n\t\tdataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n\t\tdeepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n\n\t\treturn this.map( function() {\n\t\t\treturn jQuery.clone( this, dataAndEvents, deepDataAndEvents );\n\t\t} );\n\t},\n\n\thtml: function( value ) {\n\t\treturn access( this, function( value ) {\n\t\t\tvar elem = this[ 0 ] || {},\n\t\t\t\ti = 0,\n\t\t\t\tl = this.length;\n\n\t\t\tif ( value === undefined && elem.nodeType === 1 ) {\n\t\t\t\treturn elem.innerHTML;\n\t\t\t}\n\n\t\t\t// See if we can take a shortcut and just use innerHTML\n\t\t\tif ( typeof value === \"string\" && !rnoInnerhtml.test( value ) &&\n\t\t\t\t!wrapMap[ ( rtagName.exec( value ) || [ \"\", \"\" ] )[ 1 ].toLowerCase() ] ) {\n\n\t\t\t\tvalue = jQuery.htmlPrefilter( value );\n\n\t\t\t\ttry {\n\t\t\t\t\tfor ( ; i < l; i++ ) {\n\t\t\t\t\t\telem = this[ i ] || {};\n\n\t\t\t\t\t\t// Remove element nodes and prevent memory leaks\n\t\t\t\t\t\tif ( elem.nodeType === 1 ) {\n\t\t\t\t\t\t\tjQuery.cleanData( getAll( elem, false ) );\n\t\t\t\t\t\t\telem.innerHTML = value;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\telem = 0;\n\n\t\t\t\t// If using innerHTML throws an exception, use the fallback method\n\t\t\t\t} catch ( e ) {}\n\t\t\t}\n\n\t\t\tif ( elem ) {\n\t\t\t\tthis.empty().append( value );\n\t\t\t}\n\t\t}, null, value, arguments.length );\n\t},\n\n\treplaceWith: function() {\n\t\tvar ignored = [];\n\n\t\t// Make the changes, replacing each non-ignored context element with the new content\n\t\treturn domManip( this, arguments, function( elem ) {\n\t\t\tvar parent = this.parentNode;\n\n\t\t\tif ( jQuery.inArray( this, ignored ) < 0 ) {\n\t\t\t\tjQuery.cleanData( getAll( this ) );\n\t\t\t\tif ( parent ) {\n\t\t\t\t\tparent.replaceChild( elem, this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t// Force callback invocation\n\t\t}, ignored );\n\t}\n} );\n\njQuery.each( {\n\tappendTo: \"append\",\n\tprependTo: \"prepend\",\n\tinsertBefore: \"before\",\n\tinsertAfter: \"after\",\n\treplaceAll: \"replaceWith\"\n}, function( name, original ) {\n\tjQuery.fn[ name ] = function( selector ) {\n\t\tvar elems,\n\t\t\tret = [],\n\t\t\tinsert = jQuery( selector ),\n\t\t\tlast = insert.length - 1,\n\t\t\ti = 0;\n\n\t\tfor ( ; i <= last; i++ ) {\n\t\t\telems = i === last ? this : this.clone( true );\n\t\t\tjQuery( insert[ i ] )[ original ]( elems );\n\n\t\t\t// Support: QtWebKit\n\t\t\t// .get() because push.apply(_, arraylike) throws\n\t\t\tpush.apply( ret, elems.get() );\n\t\t}\n\n\t\treturn this.pushStack( ret );\n\t};\n} );\n\n\nvar iframe,\n\telemdisplay = {\n\n\t\t// Support: Firefox\n\t\t// We have to pre-define these values for FF (#10227)\n\t\tHTML: \"block\",\n\t\tBODY: \"block\"\n\t};\n\n/**\n * Retrieve the actual display of a element\n * @param {String} name nodeName of the element\n * @param {Object} doc Document object\n */\n\n// Called only from within defaultDisplay\nfunction actualDisplay( name, doc ) {\n\tvar elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ),\n\n\t\tdisplay = jQuery.css( elem[ 0 ], \"display\" );\n\n\t// We don't have any data stored on the element,\n\t// so use \"detach\" method as fast way to get rid of the element\n\telem.detach();\n\n\treturn display;\n}\n\n/**\n * Try to determine the default display value of an element\n * @param {String} nodeName\n */\nfunction defaultDisplay( nodeName ) {\n\tvar doc = document,\n\t\tdisplay = elemdisplay[ nodeName ];\n\n\tif ( !display ) {\n\t\tdisplay = actualDisplay( nodeName, doc );\n\n\t\t// If the simple way fails, read from inside an iframe\n\t\tif ( display === \"none\" || !display ) {\n\n\t\t\t// Use the already-created iframe if possible\n\t\t\tiframe = ( iframe || jQuery( \"<iframe frameborder='0' width='0' height='0'/>\" ) )\n\t\t\t\t.appendTo( doc.documentElement );\n\n\t\t\t// Always write a new HTML skeleton so Webkit and Firefox don't choke on reuse\n\t\t\tdoc = iframe[ 0 ].contentDocument;\n\n\t\t\t// Support: IE\n\t\t\tdoc.write();\n\t\t\tdoc.close();\n\n\t\t\tdisplay = actualDisplay( nodeName, doc );\n\t\t\tiframe.detach();\n\t\t}\n\n\t\t// Store the correct default display\n\t\telemdisplay[ nodeName ] = display;\n\t}\n\n\treturn display;\n}\nvar rmargin = ( /^margin/ );\n\nvar rnumnonpx = new RegExp( \"^(\" + pnum + \")(?!px)[a-z%]+$\", \"i\" );\n\nvar getStyles = function( elem ) {\n\n\t\t// Support: IE<=11+, Firefox<=30+ (#15098, #14150)\n\t\t// IE throws on elements created in popups\n\t\t// FF meanwhile throws on frame elements through \"defaultView.getComputedStyle\"\n\t\tvar view = elem.ownerDocument.defaultView;\n\n\t\tif ( !view || !view.opener ) {\n\t\t\tview = window;\n\t\t}\n\n\t\treturn view.getComputedStyle( elem );\n\t};\n\nvar swap = function( elem, options, callback, args ) {\n\tvar ret, name,\n\t\told = {};\n\n\t// Remember the old values, and insert the new ones\n\tfor ( name in options ) {\n\t\told[ name ] = elem.style[ name ];\n\t\telem.style[ name ] = options[ name ];\n\t}\n\n\tret = callback.apply( elem, args || [] );\n\n\t// Revert the old values\n\tfor ( name in options ) {\n\t\telem.style[ name ] = old[ name ];\n\t}\n\n\treturn ret;\n};\n\n\nvar documentElement = document.documentElement;\n\n\n\n( function() {\n\tvar pixelPositionVal, boxSizingReliableVal, pixelMarginRightVal, reliableMarginLeftVal,\n\t\tcontainer = document.createElement( \"div\" ),\n\t\tdiv = document.createElement( \"div\" );\n\n\t// Finish early in limited (non-browser) environments\n\tif ( !div.style ) {\n\t\treturn;\n\t}\n\n\t// Support: IE9-11+\n\t// Style of cloned element affects source element cloned (#8908)\n\tdiv.style.backgroundClip = \"content-box\";\n\tdiv.cloneNode( true ).style.backgroundClip = \"\";\n\tsupport.clearCloneStyle = div.style.backgroundClip === \"content-box\";\n\n\tcontainer.style.cssText = \"border:0;width:8px;height:0;top:0;left:-9999px;\" +\n\t\t\"padding:0;margin-top:1px;position:absolute\";\n\tcontainer.appendChild( div );\n\n\t// Executing both pixelPosition & boxSizingReliable tests require only one layout\n\t// so they're executed at the same time to save the second computation.\n\tfunction computeStyleTests() {\n\t\tdiv.style.cssText =\n\n\t\t\t// Support: Firefox<29, Android 2.3\n\t\t\t// Vendor-prefix box-sizing\n\t\t\t\"-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;\" +\n\t\t\t\"position:relative;display:block;\" +\n\t\t\t\"margin:auto;border:1px;padding:1px;\" +\n\t\t\t\"top:1%;width:50%\";\n\t\tdiv.innerHTML = \"\";\n\t\tdocumentElement.appendChild( container );\n\n\t\tvar divStyle = window.getComputedStyle( div );\n\t\tpixelPositionVal = divStyle.top !== \"1%\";\n\t\treliableMarginLeftVal = divStyle.marginLeft === \"2px\";\n\t\tboxSizingReliableVal = divStyle.width === \"4px\";\n\n\t\t// Support: Android 4.0 - 4.3 only\n\t\t// Some styles come back with percentage values, even though they shouldn't\n\t\tdiv.style.marginRight = \"50%\";\n\t\tpixelMarginRightVal = divStyle.marginRight === \"4px\";\n\n\t\tdocumentElement.removeChild( container );\n\t}\n\n\tjQuery.extend( support, {\n\t\tpixelPosition: function() {\n\n\t\t\t// This test is executed only once but we still do memoizing\n\t\t\t// since we can use the boxSizingReliable pre-computing.\n\t\t\t// No need to check if the test was already performed, though.\n\t\t\tcomputeStyleTests();\n\t\t\treturn pixelPositionVal;\n\t\t},\n\t\tboxSizingReliable: function() {\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn boxSizingReliableVal;\n\t\t},\n\t\tpixelMarginRight: function() {\n\n\t\t\t// Support: Android 4.0-4.3\n\t\t\t// We're checking for boxSizingReliableVal here instead of pixelMarginRightVal\n\t\t\t// since that compresses better and they're computed together anyway.\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn pixelMarginRightVal;\n\t\t},\n\t\treliableMarginLeft: function() {\n\n\t\t\t// Support: IE <=8 only, Android 4.0 - 4.3 only, Firefox <=3 - 37\n\t\t\tif ( boxSizingReliableVal == null ) {\n\t\t\t\tcomputeStyleTests();\n\t\t\t}\n\t\t\treturn reliableMarginLeftVal;\n\t\t},\n\t\treliableMarginRight: function() {\n\n\t\t\t// Support: Android 2.3\n\t\t\t// Check if div with explicit width and no margin-right incorrectly\n\t\t\t// gets computed margin-right based on width of container. (#3333)\n\t\t\t// WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right\n\t\t\t// This support function is only executed once so no memoizing is needed.\n\t\t\tvar ret,\n\t\t\t\tmarginDiv = div.appendChild( document.createElement( \"div\" ) );\n\n\t\t\t// Reset CSS: box-sizing; display; margin; border; padding\n\t\t\tmarginDiv.style.cssText = div.style.cssText =\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Vendor-prefix box-sizing\n\t\t\t\t\"-webkit-box-sizing:content-box;box-sizing:content-box;\" +\n\t\t\t\t\"display:block;margin:0;border:0;padding:0\";\n\t\t\tmarginDiv.style.marginRight = marginDiv.style.width = \"0\";\n\t\t\tdiv.style.width = \"1px\";\n\t\t\tdocumentElement.appendChild( container );\n\n\t\t\tret = !parseFloat( window.getComputedStyle( marginDiv ).marginRight );\n\n\t\t\tdocumentElement.removeChild( container );\n\t\t\tdiv.removeChild( marginDiv );\n\n\t\t\treturn ret;\n\t\t}\n\t} );\n} )();\n\n\nfunction curCSS( elem, name, computed ) {\n\tvar width, minWidth, maxWidth, ret,\n\t\tstyle = elem.style;\n\n\tcomputed = computed || getStyles( elem );\n\tret = computed ? computed.getPropertyValue( name ) || computed[ name ] : undefined;\n\n\t// Support: Opera 12.1x only\n\t// Fall back to style even without computed\n\t// computed is undefined for elems on document fragments\n\tif ( ( ret === \"\" || ret === undefined ) && !jQuery.contains( elem.ownerDocument, elem ) ) {\n\t\tret = jQuery.style( elem, name );\n\t}\n\n\t// Support: IE9\n\t// getPropertyValue is only needed for .css('filter') (#12537)\n\tif ( computed ) {\n\n\t\t// A tribute to the \"awesome hack by Dean Edwards\"\n\t\t// Android Browser returns percentage for some values,\n\t\t// but width seems to be reliably pixels.\n\t\t// This is against the CSSOM draft spec:\n\t\t// http://dev.w3.org/csswg/cssom/#resolved-values\n\t\tif ( !support.pixelMarginRight() && rnumnonpx.test( ret ) && rmargin.test( name ) ) {\n\n\t\t\t// Remember the original values\n\t\t\twidth = style.width;\n\t\t\tminWidth = style.minWidth;\n\t\t\tmaxWidth = style.maxWidth;\n\n\t\t\t// Put in the new values to get a computed value out\n\t\t\tstyle.minWidth = style.maxWidth = style.width = ret;\n\t\t\tret = computed.width;\n\n\t\t\t// Revert the changed values\n\t\t\tstyle.width = width;\n\t\t\tstyle.minWidth = minWidth;\n\t\t\tstyle.maxWidth = maxWidth;\n\t\t}\n\t}\n\n\treturn ret !== undefined ?\n\n\t\t// Support: IE9-11+\n\t\t// IE returns zIndex value as an integer.\n\t\tret + \"\" :\n\t\tret;\n}\n\n\nfunction addGetHookIf( conditionFn, hookFn ) {\n\n\t// Define the hook, we'll check on the first run if it's really needed.\n\treturn {\n\t\tget: function() {\n\t\t\tif ( conditionFn() ) {\n\n\t\t\t\t// Hook not needed (or it's not possible to use it due\n\t\t\t\t// to missing dependency), remove it.\n\t\t\t\tdelete this.get;\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// Hook needed; redefine it so that the support test is not executed again.\n\t\t\treturn ( this.get = hookFn ).apply( this, arguments );\n\t\t}\n\t};\n}\n\n\nvar\n\n\t// Swappable if display is none or starts with table\n\t// except \"table\", \"table-cell\", or \"table-caption\"\n\t// See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n\trdisplayswap = /^(none|table(?!-c[ea]).+)/,\n\n\tcssShow = { position: \"absolute\", visibility: \"hidden\", display: \"block\" },\n\tcssNormalTransform = {\n\t\tletterSpacing: \"0\",\n\t\tfontWeight: \"400\"\n\t},\n\n\tcssPrefixes = [ \"Webkit\", \"O\", \"Moz\", \"ms\" ],\n\temptyStyle = document.createElement( \"div\" ).style;\n\n// Return a css property mapped to a potentially vendor prefixed property\nfunction vendorPropName( name ) {\n\n\t// Shortcut for names that are not vendor prefixed\n\tif ( name in emptyStyle ) {\n\t\treturn name;\n\t}\n\n\t// Check for vendor prefixed names\n\tvar capName = name[ 0 ].toUpperCase() + name.slice( 1 ),\n\t\ti = cssPrefixes.length;\n\n\twhile ( i-- ) {\n\t\tname = cssPrefixes[ i ] + capName;\n\t\tif ( name in emptyStyle ) {\n\t\t\treturn name;\n\t\t}\n\t}\n}\n\nfunction setPositiveNumber( elem, value, subtract ) {\n\n\t// Any relative (+/-) values have already been\n\t// normalized at this point\n\tvar matches = rcssNum.exec( value );\n\treturn matches ?\n\n\t\t// Guard against undefined \"subtract\", e.g., when used as in cssHooks\n\t\tMath.max( 0, matches[ 2 ] - ( subtract || 0 ) ) + ( matches[ 3 ] || \"px\" ) :\n\t\tvalue;\n}\n\nfunction augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) {\n\tvar i = extra === ( isBorderBox ? \"border\" : \"content\" ) ?\n\n\t\t// If we already have the right measurement, avoid augmentation\n\t\t4 :\n\n\t\t// Otherwise initialize for horizontal or vertical properties\n\t\tname === \"width\" ? 1 : 0,\n\n\t\tval = 0;\n\n\tfor ( ; i < 4; i += 2 ) {\n\n\t\t// Both box models exclude margin, so add it if we want it\n\t\tif ( extra === \"margin\" ) {\n\t\t\tval += jQuery.css( elem, extra + cssExpand[ i ], true, styles );\n\t\t}\n\n\t\tif ( isBorderBox ) {\n\n\t\t\t// border-box includes padding, so remove it if we want content\n\t\t\tif ( extra === \"content\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\t\t\t}\n\n\t\t\t// At this point, extra isn't border nor margin, so remove border\n\t\t\tif ( extra !== \"margin\" ) {\n\t\t\t\tval -= jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t} else {\n\n\t\t\t// At this point, extra isn't content, so add padding\n\t\t\tval += jQuery.css( elem, \"padding\" + cssExpand[ i ], true, styles );\n\n\t\t\t// At this point, extra isn't content nor padding, so add border\n\t\t\tif ( extra !== \"padding\" ) {\n\t\t\t\tval += jQuery.css( elem, \"border\" + cssExpand[ i ] + \"Width\", true, styles );\n\t\t\t}\n\t\t}\n\t}\n\n\treturn val;\n}\n\nfunction getWidthOrHeight( elem, name, extra ) {\n\n\t// Start with offset property, which is equivalent to the border-box value\n\tvar valueIsBorderBox = true,\n\t\tval = name === \"width\" ? elem.offsetWidth : elem.offsetHeight,\n\t\tstyles = getStyles( elem ),\n\t\tisBorderBox = jQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\";\n\n\t// Some non-html elements return undefined for offsetWidth, so check for null/undefined\n\t// svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285\n\t// MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668\n\tif ( val <= 0 || val == null ) {\n\n\t\t// Fall back to computed then uncomputed css if necessary\n\t\tval = curCSS( elem, name, styles );\n\t\tif ( val < 0 || val == null ) {\n\t\t\tval = elem.style[ name ];\n\t\t}\n\n\t\t// Computed unit is not pixels. Stop here and return.\n\t\tif ( rnumnonpx.test( val ) ) {\n\t\t\treturn val;\n\t\t}\n\n\t\t// Check for style in case a browser which returns unreliable values\n\t\t// for getComputedStyle silently falls back to the reliable elem.style\n\t\tvalueIsBorderBox = isBorderBox &&\n\t\t\t( support.boxSizingReliable() || val === elem.style[ name ] );\n\n\t\t// Normalize \"\", auto, and prepare for extra\n\t\tval = parseFloat( val ) || 0;\n\t}\n\n\t// Use the active box-sizing model to add/subtract irrelevant styles\n\treturn ( val +\n\t\taugmentWidthOrHeight(\n\t\t\telem,\n\t\t\tname,\n\t\t\textra || ( isBorderBox ? \"border\" : \"content\" ),\n\t\t\tvalueIsBorderBox,\n\t\t\tstyles\n\t\t)\n\t) + \"px\";\n}\n\nfunction showHide( elements, show ) {\n\tvar display, elem, hidden,\n\t\tvalues = [],\n\t\tindex = 0,\n\t\tlength = elements.length;\n\n\tfor ( ; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\n\t\tvalues[ index ] = dataPriv.get( elem, \"olddisplay\" );\n\t\tdisplay = elem.style.display;\n\t\tif ( show ) {\n\n\t\t\t// Reset the inline display of this element to learn if it is\n\t\t\t// being hidden by cascaded rules or not\n\t\t\tif ( !values[ index ] && display === \"none\" ) {\n\t\t\t\telem.style.display = \"\";\n\t\t\t}\n\n\t\t\t// Set elements which have been overridden with display: none\n\t\t\t// in a stylesheet to whatever the default browser style is\n\t\t\t// for such an element\n\t\t\tif ( elem.style.display === \"\" && isHidden( elem ) ) {\n\t\t\t\tvalues[ index ] = dataPriv.access(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\tdefaultDisplay( elem.nodeName )\n\t\t\t\t);\n\t\t\t}\n\t\t} else {\n\t\t\thidden = isHidden( elem );\n\n\t\t\tif ( display !== \"none\" || !hidden ) {\n\t\t\t\tdataPriv.set(\n\t\t\t\t\telem,\n\t\t\t\t\t\"olddisplay\",\n\t\t\t\t\thidden ? display : jQuery.css( elem, \"display\" )\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t}\n\n\t// Set the display of most of the elements in a second loop\n\t// to avoid the constant reflow\n\tfor ( index = 0; index < length; index++ ) {\n\t\telem = elements[ index ];\n\t\tif ( !elem.style ) {\n\t\t\tcontinue;\n\t\t}\n\t\tif ( !show || elem.style.display === \"none\" || elem.style.display === \"\" ) {\n\t\t\telem.style.display = show ? values[ index ] || \"\" : \"none\";\n\t\t}\n\t}\n\n\treturn elements;\n}\n\njQuery.extend( {\n\n\t// Add in style property hooks for overriding the default\n\t// behavior of getting and setting a style property\n\tcssHooks: {\n\t\topacity: {\n\t\t\tget: function( elem, computed ) {\n\t\t\t\tif ( computed ) {\n\n\t\t\t\t\t// We should always get a number back from opacity\n\t\t\t\t\tvar ret = curCSS( elem, \"opacity\" );\n\t\t\t\t\treturn ret === \"\" ? \"1\" : ret;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\t// Don't automatically add \"px\" to these possibly-unitless properties\n\tcssNumber: {\n\t\t\"animationIterationCount\": true,\n\t\t\"columnCount\": true,\n\t\t\"fillOpacity\": true,\n\t\t\"flexGrow\": true,\n\t\t\"flexShrink\": true,\n\t\t\"fontWeight\": true,\n\t\t\"lineHeight\": true,\n\t\t\"opacity\": true,\n\t\t\"order\": true,\n\t\t\"orphans\": true,\n\t\t\"widows\": true,\n\t\t\"zIndex\": true,\n\t\t\"zoom\": true\n\t},\n\n\t// Add in properties whose names you wish to fix before\n\t// setting or getting the value\n\tcssProps: {\n\t\t\"float\": \"cssFloat\"\n\t},\n\n\t// Get and set the style property on a DOM Node\n\tstyle: function( elem, name, value, extra ) {\n\n\t\t// Don't set styles on text and comment nodes\n\t\tif ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Make sure that we're working with the right name\n\t\tvar ret, type, hooks,\n\t\t\torigName = jQuery.camelCase( name ),\n\t\t\tstyle = elem.style;\n\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Gets hook for the prefixed version, then unprefixed version\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// Check if we're setting a value\n\t\tif ( value !== undefined ) {\n\t\t\ttype = typeof value;\n\n\t\t\t// Convert \"+=\" or \"-=\" to relative numbers (#7345)\n\t\t\tif ( type === \"string\" && ( ret = rcssNum.exec( value ) ) && ret[ 1 ] ) {\n\t\t\t\tvalue = adjustCSS( elem, name, ret );\n\n\t\t\t\t// Fixes bug #9237\n\t\t\t\ttype = \"number\";\n\t\t\t}\n\n\t\t\t// Make sure that null and NaN values aren't set (#7116)\n\t\t\tif ( value == null || value !== value ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// If a number was passed in, add the unit (except for certain CSS properties)\n\t\t\tif ( type === \"number\" ) {\n\t\t\t\tvalue += ret && ret[ 3 ] || ( jQuery.cssNumber[ origName ] ? \"\" : \"px\" );\n\t\t\t}\n\n\t\t\t// Support: IE9-11+\n\t\t\t// background-* props affect original clone's values\n\t\t\tif ( !support.clearCloneStyle && value === \"\" && name.indexOf( \"background\" ) === 0 ) {\n\t\t\t\tstyle[ name ] = \"inherit\";\n\t\t\t}\n\n\t\t\t// If a hook was provided, use that value, otherwise just set the specified value\n\t\t\tif ( !hooks || !( \"set\" in hooks ) ||\n\t\t\t\t( value = hooks.set( elem, value, extra ) ) !== undefined ) {\n\n\t\t\t\tstyle[ name ] = value;\n\t\t\t}\n\n\t\t} else {\n\n\t\t\t// If a hook was provided get the non-computed value from there\n\t\t\tif ( hooks && \"get\" in hooks &&\n\t\t\t\t( ret = hooks.get( elem, false, extra ) ) !== undefined ) {\n\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\t// Otherwise just get the value from the style object\n\t\t\treturn style[ name ];\n\t\t}\n\t},\n\n\tcss: function( elem, name, extra, styles ) {\n\t\tvar val, num, hooks,\n\t\t\torigName = jQuery.camelCase( name );\n\n\t\t// Make sure that we're working with the right name\n\t\tname = jQuery.cssProps[ origName ] ||\n\t\t\t( jQuery.cssProps[ origName ] = vendorPropName( origName ) || origName );\n\n\t\t// Try prefixed name followed by the unprefixed name\n\t\thooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ];\n\n\t\t// If a hook was provided get the computed value from there\n\t\tif ( hooks && \"get\" in hooks ) {\n\t\t\tval = hooks.get( elem, true, extra );\n\t\t}\n\n\t\t// Otherwise, if a way to get the computed value exists, use that\n\t\tif ( val === undefined ) {\n\t\t\tval = curCSS( elem, name, styles );\n\t\t}\n\n\t\t// Convert \"normal\" to computed value\n\t\tif ( val === \"normal\" && name in cssNormalTransform ) {\n\t\t\tval = cssNormalTransform[ name ];\n\t\t}\n\n\t\t// Make numeric if forced or a qualifier was provided and val looks numeric\n\t\tif ( extra === \"\" || extra ) {\n\t\t\tnum = parseFloat( val );\n\t\t\treturn extra === true || isFinite( num ) ? num || 0 : val;\n\t\t}\n\t\treturn val;\n\t}\n} );\n\njQuery.each( [ \"height\", \"width\" ], function( i, name ) {\n\tjQuery.cssHooks[ name ] = {\n\t\tget: function( elem, computed, extra ) {\n\t\t\tif ( computed ) {\n\n\t\t\t\t// Certain elements can have dimension info if we invisibly show them\n\t\t\t\t// but it must have a current display style that would benefit\n\t\t\t\treturn rdisplayswap.test( jQuery.css( elem, \"display\" ) ) &&\n\t\t\t\t\telem.offsetWidth === 0 ?\n\t\t\t\t\t\tswap( elem, cssShow, function() {\n\t\t\t\t\t\t\treturn getWidthOrHeight( elem, name, extra );\n\t\t\t\t\t\t} ) :\n\t\t\t\t\t\tgetWidthOrHeight( elem, name, extra );\n\t\t\t}\n\t\t},\n\n\t\tset: function( elem, value, extra ) {\n\t\t\tvar matches,\n\t\t\t\tstyles = extra && getStyles( elem ),\n\t\t\t\tsubtract = extra && augmentWidthOrHeight(\n\t\t\t\t\telem,\n\t\t\t\t\tname,\n\t\t\t\t\textra,\n\t\t\t\t\tjQuery.css( elem, \"boxSizing\", false, styles ) === \"border-box\",\n\t\t\t\t\tstyles\n\t\t\t\t);\n\n\t\t\t// Convert to pixels if value adjustment is needed\n\t\t\tif ( subtract && ( matches = rcssNum.exec( value ) ) &&\n\t\t\t\t( matches[ 3 ] || \"px\" ) !== \"px\" ) {\n\n\t\t\t\telem.style[ name ] = value;\n\t\t\t\tvalue = jQuery.css( elem, name );\n\t\t\t}\n\n\t\t\treturn setPositiveNumber( elem, value, subtract );\n\t\t}\n\t};\n} );\n\njQuery.cssHooks.marginLeft = addGetHookIf( support.reliableMarginLeft,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn ( parseFloat( curCSS( elem, \"marginLeft\" ) ) ||\n\t\t\t\telem.getBoundingClientRect().left -\n\t\t\t\t\tswap( elem, { marginLeft: 0 }, function() {\n\t\t\t\t\t\treturn elem.getBoundingClientRect().left;\n\t\t\t\t\t} )\n\t\t\t\t) + \"px\";\n\t\t}\n\t}\n);\n\n// Support: Android 2.3\njQuery.cssHooks.marginRight = addGetHookIf( support.reliableMarginRight,\n\tfunction( elem, computed ) {\n\t\tif ( computed ) {\n\t\t\treturn swap( elem, { \"display\": \"inline-block\" },\n\t\t\t\tcurCSS, [ elem, \"marginRight\" ] );\n\t\t}\n\t}\n);\n\n// These hooks are used by animate to expand properties\njQuery.each( {\n\tmargin: \"\",\n\tpadding: \"\",\n\tborder: \"Width\"\n}, function( prefix, suffix ) {\n\tjQuery.cssHooks[ prefix + suffix ] = {\n\t\texpand: function( value ) {\n\t\t\tvar i = 0,\n\t\t\t\texpanded = {},\n\n\t\t\t\t// Assumes a single number if not a string\n\t\t\t\tparts = typeof value === \"string\" ? value.split( \" \" ) : [ value ];\n\n\t\t\tfor ( ; i < 4; i++ ) {\n\t\t\t\texpanded[ prefix + cssExpand[ i ] + suffix ] =\n\t\t\t\t\tparts[ i ] || parts[ i - 2 ] || parts[ 0 ];\n\t\t\t}\n\n\t\t\treturn expanded;\n\t\t}\n\t};\n\n\tif ( !rmargin.test( prefix ) ) {\n\t\tjQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber;\n\t}\n} );\n\njQuery.fn.extend( {\n\tcss: function( name, value ) {\n\t\treturn access( this, function( elem, name, value ) {\n\t\t\tvar styles, len,\n\t\t\t\tmap = {},\n\t\t\t\ti = 0;\n\n\t\t\tif ( jQuery.isArray( name ) ) {\n\t\t\t\tstyles = getStyles( elem );\n\t\t\t\tlen = name.length;\n\n\t\t\t\tfor ( ; i < len; i++ ) {\n\t\t\t\t\tmap[ name[ i ] ] = jQuery.css( elem, name[ i ], false, styles );\n\t\t\t\t}\n\n\t\t\t\treturn map;\n\t\t\t}\n\n\t\t\treturn value !== undefined ?\n\t\t\t\tjQuery.style( elem, name, value ) :\n\t\t\t\tjQuery.css( elem, name );\n\t\t}, name, value, arguments.length > 1 );\n\t},\n\tshow: function() {\n\t\treturn showHide( this, true );\n\t},\n\thide: function() {\n\t\treturn showHide( this );\n\t},\n\ttoggle: function( state ) {\n\t\tif ( typeof state === \"boolean\" ) {\n\t\t\treturn state ? this.show() : this.hide();\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tif ( isHidden( this ) ) {\n\t\t\t\tjQuery( this ).show();\n\t\t\t} else {\n\t\t\t\tjQuery( this ).hide();\n\t\t\t}\n\t\t} );\n\t}\n} );\n\n\nfunction Tween( elem, options, prop, end, easing ) {\n\treturn new Tween.prototype.init( elem, options, prop, end, easing );\n}\njQuery.Tween = Tween;\n\nTween.prototype = {\n\tconstructor: Tween,\n\tinit: function( elem, options, prop, end, easing, unit ) {\n\t\tthis.elem = elem;\n\t\tthis.prop = prop;\n\t\tthis.easing = easing || jQuery.easing._default;\n\t\tthis.options = options;\n\t\tthis.start = this.now = this.cur();\n\t\tthis.end = end;\n\t\tthis.unit = unit || ( jQuery.cssNumber[ prop ] ? \"\" : \"px\" );\n\t},\n\tcur: function() {\n\t\tvar hooks = Tween.propHooks[ this.prop ];\n\n\t\treturn hooks && hooks.get ?\n\t\t\thooks.get( this ) :\n\t\t\tTween.propHooks._default.get( this );\n\t},\n\trun: function( percent ) {\n\t\tvar eased,\n\t\t\thooks = Tween.propHooks[ this.prop ];\n\n\t\tif ( this.options.duration ) {\n\t\t\tthis.pos = eased = jQuery.easing[ this.easing ](\n\t\t\t\tpercent, this.options.duration * percent, 0, 1, this.options.duration\n\t\t\t);\n\t\t} else {\n\t\t\tthis.pos = eased = percent;\n\t\t}\n\t\tthis.now = ( this.end - this.start ) * eased + this.start;\n\n\t\tif ( this.options.step ) {\n\t\t\tthis.options.step.call( this.elem, this.now, this );\n\t\t}\n\n\t\tif ( hooks && hooks.set ) {\n\t\t\thooks.set( this );\n\t\t} else {\n\t\t\tTween.propHooks._default.set( this );\n\t\t}\n\t\treturn this;\n\t}\n};\n\nTween.prototype.init.prototype = Tween.prototype;\n\nTween.propHooks = {\n\t_default: {\n\t\tget: function( tween ) {\n\t\t\tvar result;\n\n\t\t\t// Use a property on the element directly when it is not a DOM element,\n\t\t\t// or when there is no matching style property that exists.\n\t\t\tif ( tween.elem.nodeType !== 1 ||\n\t\t\t\ttween.elem[ tween.prop ] != null && tween.elem.style[ tween.prop ] == null ) {\n\t\t\t\treturn tween.elem[ tween.prop ];\n\t\t\t}\n\n\t\t\t// Passing an empty string as a 3rd parameter to .css will automatically\n\t\t\t// attempt a parseFloat and fallback to a string if the parse fails.\n\t\t\t// Simple values such as \"10px\" are parsed to Float;\n\t\t\t// complex values such as \"rotate(1rad)\" are returned as-is.\n\t\t\tresult = jQuery.css( tween.elem, tween.prop, \"\" );\n\n\t\t\t// Empty strings, null, undefined and \"auto\" are converted to 0.\n\t\t\treturn !result || result === \"auto\" ? 0 : result;\n\t\t},\n\t\tset: function( tween ) {\n\n\t\t\t// Use step hook for back compat.\n\t\t\t// Use cssHook if its there.\n\t\t\t// Use .style if available and use plain properties where available.\n\t\t\tif ( jQuery.fx.step[ tween.prop ] ) {\n\t\t\t\tjQuery.fx.step[ tween.prop ]( tween );\n\t\t\t} else if ( tween.elem.nodeType === 1 &&\n\t\t\t\t( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null ||\n\t\t\t\t\tjQuery.cssHooks[ tween.prop ] ) ) {\n\t\t\t\tjQuery.style( tween.elem, tween.prop, tween.now + tween.unit );\n\t\t\t} else {\n\t\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t\t}\n\t\t}\n\t}\n};\n\n// Support: IE9\n// Panic based approach to setting things on disconnected nodes\nTween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n\tset: function( tween ) {\n\t\tif ( tween.elem.nodeType && tween.elem.parentNode ) {\n\t\t\ttween.elem[ tween.prop ] = tween.now;\n\t\t}\n\t}\n};\n\njQuery.easing = {\n\tlinear: function( p ) {\n\t\treturn p;\n\t},\n\tswing: function( p ) {\n\t\treturn 0.5 - Math.cos( p * Math.PI ) / 2;\n\t},\n\t_default: \"swing\"\n};\n\njQuery.fx = Tween.prototype.init;\n\n// Back Compat <1.8 extension point\njQuery.fx.step = {};\n\n\n\n\nvar\n\tfxNow, timerId,\n\trfxtypes = /^(?:toggle|show|hide)$/,\n\trrun = /queueHooks$/;\n\n// Animations created synchronously will run synchronously\nfunction createFxNow() {\n\twindow.setTimeout( function() {\n\t\tfxNow = undefined;\n\t} );\n\treturn ( fxNow = jQuery.now() );\n}\n\n// Generate parameters to create a standard animation\nfunction genFx( type, includeWidth ) {\n\tvar which,\n\t\ti = 0,\n\t\tattrs = { height: type };\n\n\t// If we include width, step value is 1 to do all cssExpand values,\n\t// otherwise step value is 2 to skip over Left and Right\n\tincludeWidth = includeWidth ? 1 : 0;\n\tfor ( ; i < 4 ; i += 2 - includeWidth ) {\n\t\twhich = cssExpand[ i ];\n\t\tattrs[ \"margin\" + which ] = attrs[ \"padding\" + which ] = type;\n\t}\n\n\tif ( includeWidth ) {\n\t\tattrs.opacity = attrs.width = type;\n\t}\n\n\treturn attrs;\n}\n\nfunction createTween( value, prop, animation ) {\n\tvar tween,\n\t\tcollection = ( Animation.tweeners[ prop ] || [] ).concat( Animation.tweeners[ \"*\" ] ),\n\t\tindex = 0,\n\t\tlength = collection.length;\n\tfor ( ; index < length; index++ ) {\n\t\tif ( ( tween = collection[ index ].call( animation, prop, value ) ) ) {\n\n\t\t\t// We're done with this property\n\t\t\treturn tween;\n\t\t}\n\t}\n}\n\nfunction defaultPrefilter( elem, props, opts ) {\n\t/* jshint validthis: true */\n\tvar prop, value, toggle, tween, hooks, oldfire, display, checkDisplay,\n\t\tanim = this,\n\t\torig = {},\n\t\tstyle = elem.style,\n\t\thidden = elem.nodeType && isHidden( elem ),\n\t\tdataShow = dataPriv.get( elem, \"fxshow\" );\n\n\t// Handle queue: false promises\n\tif ( !opts.queue ) {\n\t\thooks = jQuery._queueHooks( elem, \"fx\" );\n\t\tif ( hooks.unqueued == null ) {\n\t\t\thooks.unqueued = 0;\n\t\t\toldfire = hooks.empty.fire;\n\t\t\thooks.empty.fire = function() {\n\t\t\t\tif ( !hooks.unqueued ) {\n\t\t\t\t\toldfire();\n\t\t\t\t}\n\t\t\t};\n\t\t}\n\t\thooks.unqueued++;\n\n\t\tanim.always( function() {\n\n\t\t\t// Ensure the complete handler is called before this completes\n\t\t\tanim.always( function() {\n\t\t\t\thooks.unqueued--;\n\t\t\t\tif ( !jQuery.queue( elem, \"fx\" ).length ) {\n\t\t\t\t\thooks.empty.fire();\n\t\t\t\t}\n\t\t\t} );\n\t\t} );\n\t}\n\n\t// Height/width overflow pass\n\tif ( elem.nodeType === 1 && ( \"height\" in props || \"width\" in props ) ) {\n\n\t\t// Make sure that nothing sneaks out\n\t\t// Record all 3 overflow attributes because IE9-10 do not\n\t\t// change the overflow attribute when overflowX and\n\t\t// overflowY are set to the same value\n\t\topts.overflow = [ style.overflow, style.overflowX, style.overflowY ];\n\n\t\t// Set display property to inline-block for height/width\n\t\t// animations on inline elements that are having width/height animated\n\t\tdisplay = jQuery.css( elem, \"display\" );\n\n\t\t// Test default display if display is currently \"none\"\n\t\tcheckDisplay = display === \"none\" ?\n\t\t\tdataPriv.get( elem, \"olddisplay\" ) || defaultDisplay( elem.nodeName ) : display;\n\n\t\tif ( checkDisplay === \"inline\" && jQuery.css( elem, \"float\" ) === \"none\" ) {\n\t\t\tstyle.display = \"inline-block\";\n\t\t}\n\t}\n\n\tif ( opts.overflow ) {\n\t\tstyle.overflow = \"hidden\";\n\t\tanim.always( function() {\n\t\t\tstyle.overflow = opts.overflow[ 0 ];\n\t\t\tstyle.overflowX = opts.overflow[ 1 ];\n\t\t\tstyle.overflowY = opts.overflow[ 2 ];\n\t\t} );\n\t}\n\n\t// show/hide pass\n\tfor ( prop in props ) {\n\t\tvalue = props[ prop ];\n\t\tif ( rfxtypes.exec( value ) ) {\n\t\t\tdelete props[ prop ];\n\t\t\ttoggle = toggle || value === \"toggle\";\n\t\t\tif ( value === ( hidden ? \"hide\" : \"show\" ) ) {\n\n\t\t\t\t// If there is dataShow left over from a stopped hide or show\n\t\t\t\t// and we are going to proceed with show, we should pretend to be hidden\n\t\t\t\tif ( value === \"show\" && dataShow && dataShow[ prop ] !== undefined ) {\n\t\t\t\t\thidden = true;\n\t\t\t\t} else {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t}\n\t\t\torig[ prop ] = dataShow && dataShow[ prop ] || jQuery.style( elem, prop );\n\n\t\t// Any non-fx value stops us from restoring the original display value\n\t\t} else {\n\t\t\tdisplay = undefined;\n\t\t}\n\t}\n\n\tif ( !jQuery.isEmptyObject( orig ) ) {\n\t\tif ( dataShow ) {\n\t\t\tif ( \"hidden\" in dataShow ) {\n\t\t\t\thidden = dataShow.hidden;\n\t\t\t}\n\t\t} else {\n\t\t\tdataShow = dataPriv.access( elem, \"fxshow\", {} );\n\t\t}\n\n\t\t// Store state if its toggle - enables .stop().toggle() to \"reverse\"\n\t\tif ( toggle ) {\n\t\t\tdataShow.hidden = !hidden;\n\t\t}\n\t\tif ( hidden ) {\n\t\t\tjQuery( elem ).show();\n\t\t} else {\n\t\t\tanim.done( function() {\n\t\t\t\tjQuery( elem ).hide();\n\t\t\t} );\n\t\t}\n\t\tanim.done( function() {\n\t\t\tvar prop;\n\n\t\t\tdataPriv.remove( elem, \"fxshow\" );\n\t\t\tfor ( prop in orig ) {\n\t\t\t\tjQuery.style( elem, prop, orig[ prop ] );\n\t\t\t}\n\t\t} );\n\t\tfor ( prop in orig ) {\n\t\t\ttween = createTween( hidden ? dataShow[ prop ] : 0, prop, anim );\n\n\t\t\tif ( !( prop in dataShow ) ) {\n\t\t\t\tdataShow[ prop ] = tween.start;\n\t\t\t\tif ( hidden ) {\n\t\t\t\t\ttween.end = tween.start;\n\t\t\t\t\ttween.start = prop === \"width\" || prop === \"height\" ? 1 : 0;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t// If this is a noop like .hide().hide(), restore an overwritten display value\n\t} else if ( ( display === \"none\" ? defaultDisplay( elem.nodeName ) : display ) === \"inline\" ) {\n\t\tstyle.display = display;\n\t}\n}\n\nfunction propFilter( props, specialEasing ) {\n\tvar index, name, easing, value, hooks;\n\n\t// camelCase, specialEasing and expand cssHook pass\n\tfor ( index in props ) {\n\t\tname = jQuery.camelCase( index );\n\t\teasing = specialEasing[ name ];\n\t\tvalue = props[ index ];\n\t\tif ( jQuery.isArray( value ) ) {\n\t\t\teasing = value[ 1 ];\n\t\t\tvalue = props[ index ] = value[ 0 ];\n\t\t}\n\n\t\tif ( index !== name ) {\n\t\t\tprops[ name ] = value;\n\t\t\tdelete props[ index ];\n\t\t}\n\n\t\thooks = jQuery.cssHooks[ name ];\n\t\tif ( hooks && \"expand\" in hooks ) {\n\t\t\tvalue = hooks.expand( value );\n\t\t\tdelete props[ name ];\n\n\t\t\t// Not quite $.extend, this won't overwrite existing keys.\n\t\t\t// Reusing 'index' because we have the correct \"name\"\n\t\t\tfor ( index in value ) {\n\t\t\t\tif ( !( index in props ) ) {\n\t\t\t\t\tprops[ index ] = value[ index ];\n\t\t\t\t\tspecialEasing[ index ] = easing;\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tspecialEasing[ name ] = easing;\n\t\t}\n\t}\n}\n\nfunction Animation( elem, properties, options ) {\n\tvar result,\n\t\tstopped,\n\t\tindex = 0,\n\t\tlength = Animation.prefilters.length,\n\t\tdeferred = jQuery.Deferred().always( function() {\n\n\t\t\t// Don't match elem in the :animated selector\n\t\t\tdelete tick.elem;\n\t\t} ),\n\t\ttick = function() {\n\t\t\tif ( stopped ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\tvar currentTime = fxNow || createFxNow(),\n\t\t\t\tremaining = Math.max( 0, animation.startTime + animation.duration - currentTime ),\n\n\t\t\t\t// Support: Android 2.3\n\t\t\t\t// Archaic crash bug won't allow us to use `1 - ( 0.5 || 0 )` (#12497)\n\t\t\t\ttemp = remaining / animation.duration || 0,\n\t\t\t\tpercent = 1 - temp,\n\t\t\t\tindex = 0,\n\t\t\t\tlength = animation.tweens.length;\n\n\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\tanimation.tweens[ index ].run( percent );\n\t\t\t}\n\n\t\t\tdeferred.notifyWith( elem, [ animation, percent, remaining ] );\n\n\t\t\tif ( percent < 1 && length ) {\n\t\t\t\treturn remaining;\n\t\t\t} else {\n\t\t\t\tdeferred.resolveWith( elem, [ animation ] );\n\t\t\t\treturn false;\n\t\t\t}\n\t\t},\n\t\tanimation = deferred.promise( {\n\t\t\telem: elem,\n\t\t\tprops: jQuery.extend( {}, properties ),\n\t\t\topts: jQuery.extend( true, {\n\t\t\t\tspecialEasing: {},\n\t\t\t\teasing: jQuery.easing._default\n\t\t\t}, options ),\n\t\t\toriginalProperties: properties,\n\t\t\toriginalOptions: options,\n\t\t\tstartTime: fxNow || createFxNow(),\n\t\t\tduration: options.duration,\n\t\t\ttweens: [],\n\t\t\tcreateTween: function( prop, end ) {\n\t\t\t\tvar tween = jQuery.Tween( elem, animation.opts, prop, end,\n\t\t\t\t\t\tanimation.opts.specialEasing[ prop ] || animation.opts.easing );\n\t\t\t\tanimation.tweens.push( tween );\n\t\t\t\treturn tween;\n\t\t\t},\n\t\t\tstop: function( gotoEnd ) {\n\t\t\t\tvar index = 0,\n\n\t\t\t\t\t// If we are going to the end, we want to run all the tweens\n\t\t\t\t\t// otherwise we skip this part\n\t\t\t\t\tlength = gotoEnd ? animation.tweens.length : 0;\n\t\t\t\tif ( stopped ) {\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t\tstopped = true;\n\t\t\t\tfor ( ; index < length ; index++ ) {\n\t\t\t\t\tanimation.tweens[ index ].run( 1 );\n\t\t\t\t}\n\n\t\t\t\t// Resolve when we played the last frame; otherwise, reject\n\t\t\t\tif ( gotoEnd ) {\n\t\t\t\t\tdeferred.notifyWith( elem, [ animation, 1, 0 ] );\n\t\t\t\t\tdeferred.resolveWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.rejectWith( elem, [ animation, gotoEnd ] );\n\t\t\t\t}\n\t\t\t\treturn this;\n\t\t\t}\n\t\t} ),\n\t\tprops = animation.props;\n\n\tpropFilter( props, animation.opts.specialEasing );\n\n\tfor ( ; index < length ; index++ ) {\n\t\tresult = Animation.prefilters[ index ].call( animation, elem, props, animation.opts );\n\t\tif ( result ) {\n\t\t\tif ( jQuery.isFunction( result.stop ) ) {\n\t\t\t\tjQuery._queueHooks( animation.elem, animation.opts.queue ).stop =\n\t\t\t\t\tjQuery.proxy( result.stop, result );\n\t\t\t}\n\t\t\treturn result;\n\t\t}\n\t}\n\n\tjQuery.map( props, createTween, animation );\n\n\tif ( jQuery.isFunction( animation.opts.start ) ) {\n\t\tanimation.opts.start.call( elem, animation );\n\t}\n\n\tjQuery.fx.timer(\n\t\tjQuery.extend( tick, {\n\t\t\telem: elem,\n\t\t\tanim: animation,\n\t\t\tqueue: animation.opts.queue\n\t\t} )\n\t);\n\n\t// attach callbacks from options\n\treturn animation.progress( animation.opts.progress )\n\t\t.done( animation.opts.done, animation.opts.complete )\n\t\t.fail( animation.opts.fail )\n\t\t.always( animation.opts.always );\n}\n\njQuery.Animation = jQuery.extend( Animation, {\n\ttweeners: {\n\t\t\"*\": [ function( prop, value ) {\n\t\t\tvar tween = this.createTween( prop, value );\n\t\t\tadjustCSS( tween.elem, prop, rcssNum.exec( value ), tween );\n\t\t\treturn tween;\n\t\t} ]\n\t},\n\n\ttweener: function( props, callback ) {\n\t\tif ( jQuery.isFunction( props ) ) {\n\t\t\tcallback = props;\n\t\t\tprops = [ \"*\" ];\n\t\t} else {\n\t\t\tprops = props.match( rnotwhite );\n\t\t}\n\n\t\tvar prop,\n\t\t\tindex = 0,\n\t\t\tlength = props.length;\n\n\t\tfor ( ; index < length ; index++ ) {\n\t\t\tprop = props[ index ];\n\t\t\tAnimation.tweeners[ prop ] = Animation.tweeners[ prop ] || [];\n\t\t\tAnimation.tweeners[ prop ].unshift( callback );\n\t\t}\n\t},\n\n\tprefilters: [ defaultPrefilter ],\n\n\tprefilter: function( callback, prepend ) {\n\t\tif ( prepend ) {\n\t\t\tAnimation.prefilters.unshift( callback );\n\t\t} else {\n\t\t\tAnimation.prefilters.push( callback );\n\t\t}\n\t}\n} );\n\njQuery.speed = function( speed, easing, fn ) {\n\tvar opt = speed && typeof speed === \"object\" ? jQuery.extend( {}, speed ) : {\n\t\tcomplete: fn || !fn && easing ||\n\t\t\tjQuery.isFunction( speed ) && speed,\n\t\tduration: speed,\n\t\teasing: fn && easing || easing && !jQuery.isFunction( easing ) && easing\n\t};\n\n\topt.duration = jQuery.fx.off ? 0 : typeof opt.duration === \"number\" ?\n\t\topt.duration : opt.duration in jQuery.fx.speeds ?\n\t\t\tjQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default;\n\n\t// Normalize opt.queue - true/undefined/null -> \"fx\"\n\tif ( opt.queue == null || opt.queue === true ) {\n\t\topt.queue = \"fx\";\n\t}\n\n\t// Queueing\n\topt.old = opt.complete;\n\n\topt.complete = function() {\n\t\tif ( jQuery.isFunction( opt.old ) ) {\n\t\t\topt.old.call( this );\n\t\t}\n\n\t\tif ( opt.queue ) {\n\t\t\tjQuery.dequeue( this, opt.queue );\n\t\t}\n\t};\n\n\treturn opt;\n};\n\njQuery.fn.extend( {\n\tfadeTo: function( speed, to, easing, callback ) {\n\n\t\t// Show any hidden elements after setting opacity to 0\n\t\treturn this.filter( isHidden ).css( \"opacity\", 0 ).show()\n\n\t\t\t// Animate to the value specified\n\t\t\t.end().animate( { opacity: to }, speed, easing, callback );\n\t},\n\tanimate: function( prop, speed, easing, callback ) {\n\t\tvar empty = jQuery.isEmptyObject( prop ),\n\t\t\toptall = jQuery.speed( speed, easing, callback ),\n\t\t\tdoAnimation = function() {\n\n\t\t\t\t// Operate on a copy of prop so per-property easing won't be lost\n\t\t\t\tvar anim = Animation( this, jQuery.extend( {}, prop ), optall );\n\n\t\t\t\t// Empty animations, or finishing resolves immediately\n\t\t\t\tif ( empty || dataPriv.get( this, \"finish\" ) ) {\n\t\t\t\t\tanim.stop( true );\n\t\t\t\t}\n\t\t\t};\n\t\t\tdoAnimation.finish = doAnimation;\n\n\t\treturn empty || optall.queue === false ?\n\t\t\tthis.each( doAnimation ) :\n\t\t\tthis.queue( optall.queue, doAnimation );\n\t},\n\tstop: function( type, clearQueue, gotoEnd ) {\n\t\tvar stopQueue = function( hooks ) {\n\t\t\tvar stop = hooks.stop;\n\t\t\tdelete hooks.stop;\n\t\t\tstop( gotoEnd );\n\t\t};\n\n\t\tif ( typeof type !== \"string\" ) {\n\t\t\tgotoEnd = clearQueue;\n\t\t\tclearQueue = type;\n\t\t\ttype = undefined;\n\t\t}\n\t\tif ( clearQueue && type !== false ) {\n\t\t\tthis.queue( type || \"fx\", [] );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar dequeue = true,\n\t\t\t\tindex = type != null && type + \"queueHooks\",\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tdata = dataPriv.get( this );\n\n\t\t\tif ( index ) {\n\t\t\t\tif ( data[ index ] && data[ index ].stop ) {\n\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\tfor ( index in data ) {\n\t\t\t\t\tif ( data[ index ] && data[ index ].stop && rrun.test( index ) ) {\n\t\t\t\t\t\tstopQueue( data[ index ] );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this &&\n\t\t\t\t\t( type == null || timers[ index ].queue === type ) ) {\n\n\t\t\t\t\ttimers[ index ].anim.stop( gotoEnd );\n\t\t\t\t\tdequeue = false;\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Start the next in the queue if the last step wasn't forced.\n\t\t\t// Timers currently will call their complete callbacks, which\n\t\t\t// will dequeue but only if they were gotoEnd.\n\t\t\tif ( dequeue || !gotoEnd ) {\n\t\t\t\tjQuery.dequeue( this, type );\n\t\t\t}\n\t\t} );\n\t},\n\tfinish: function( type ) {\n\t\tif ( type !== false ) {\n\t\t\ttype = type || \"fx\";\n\t\t}\n\t\treturn this.each( function() {\n\t\t\tvar index,\n\t\t\t\tdata = dataPriv.get( this ),\n\t\t\t\tqueue = data[ type + \"queue\" ],\n\t\t\t\thooks = data[ type + \"queueHooks\" ],\n\t\t\t\ttimers = jQuery.timers,\n\t\t\t\tlength = queue ? queue.length : 0;\n\n\t\t\t// Enable finishing flag on private data\n\t\t\tdata.finish = true;\n\n\t\t\t// Empty the queue first\n\t\t\tjQuery.queue( this, type, [] );\n\n\t\t\tif ( hooks && hooks.stop ) {\n\t\t\t\thooks.stop.call( this, true );\n\t\t\t}\n\n\t\t\t// Look for any active animations, and finish them\n\t\t\tfor ( index = timers.length; index--; ) {\n\t\t\t\tif ( timers[ index ].elem === this && timers[ index ].queue === type ) {\n\t\t\t\t\ttimers[ index ].anim.stop( true );\n\t\t\t\t\ttimers.splice( index, 1 );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Look for any animations in the old queue and finish them\n\t\t\tfor ( index = 0; index < length; index++ ) {\n\t\t\t\tif ( queue[ index ] && queue[ index ].finish ) {\n\t\t\t\t\tqueue[ index ].finish.call( this );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Turn off finishing flag\n\t\t\tdelete data.finish;\n\t\t} );\n\t}\n} );\n\njQuery.each( [ \"toggle\", \"show\", \"hide\" ], function( i, name ) {\n\tvar cssFn = jQuery.fn[ name ];\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn speed == null || typeof speed === \"boolean\" ?\n\t\t\tcssFn.apply( this, arguments ) :\n\t\t\tthis.animate( genFx( name, true ), speed, easing, callback );\n\t};\n} );\n\n// Generate shortcuts for custom animations\njQuery.each( {\n\tslideDown: genFx( \"show\" ),\n\tslideUp: genFx( \"hide\" ),\n\tslideToggle: genFx( \"toggle\" ),\n\tfadeIn: { opacity: \"show\" },\n\tfadeOut: { opacity: \"hide\" },\n\tfadeToggle: { opacity: \"toggle\" }\n}, function( name, props ) {\n\tjQuery.fn[ name ] = function( speed, easing, callback ) {\n\t\treturn this.animate( props, speed, easing, callback );\n\t};\n} );\n\njQuery.timers = [];\njQuery.fx.tick = function() {\n\tvar timer,\n\t\ti = 0,\n\t\ttimers = jQuery.timers;\n\n\tfxNow = jQuery.now();\n\n\tfor ( ; i < timers.length; i++ ) {\n\t\ttimer = timers[ i ];\n\n\t\t// Checks the timer has not already been removed\n\t\tif ( !timer() && timers[ i ] === timer ) {\n\t\t\ttimers.splice( i--, 1 );\n\t\t}\n\t}\n\n\tif ( !timers.length ) {\n\t\tjQuery.fx.stop();\n\t}\n\tfxNow = undefined;\n};\n\njQuery.fx.timer = function( timer ) {\n\tjQuery.timers.push( timer );\n\tif ( timer() ) {\n\t\tjQuery.fx.start();\n\t} else {\n\t\tjQuery.timers.pop();\n\t}\n};\n\njQuery.fx.interval = 13;\njQuery.fx.start = function() {\n\tif ( !timerId ) {\n\t\ttimerId = window.setInterval( jQuery.fx.tick, jQuery.fx.interval );\n\t}\n};\n\njQuery.fx.stop = function() {\n\twindow.clearInterval( timerId );\n\n\ttimerId = null;\n};\n\njQuery.fx.speeds = {\n\tslow: 600,\n\tfast: 200,\n\n\t// Default speed\n\t_default: 400\n};\n\n\n// Based off of the plugin by Clint Helfers, with permission.\n// http://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\njQuery.fn.delay = function( time, type ) {\n\ttime = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time;\n\ttype = type || \"fx\";\n\n\treturn this.queue( type, function( next, hooks ) {\n\t\tvar timeout = window.setTimeout( next, time );\n\t\thooks.stop = function() {\n\t\t\twindow.clearTimeout( timeout );\n\t\t};\n\t} );\n};\n\n\n( function() {\n\tvar input = document.createElement( \"input\" ),\n\t\tselect = document.createElement( \"select\" ),\n\t\topt = select.appendChild( document.createElement( \"option\" ) );\n\n\tinput.type = \"checkbox\";\n\n\t// Support: iOS<=5.1, Android<=4.2+\n\t// Default value for a checkbox should be \"on\"\n\tsupport.checkOn = input.value !== \"\";\n\n\t// Support: IE<=11+\n\t// Must access selectedIndex to make default options select\n\tsupport.optSelected = opt.selected;\n\n\t// Support: Android<=2.3\n\t// Options inside disabled selects are incorrectly marked as disabled\n\tselect.disabled = true;\n\tsupport.optDisabled = !opt.disabled;\n\n\t// Support: IE<=11+\n\t// An input loses its value after becoming a radio\n\tinput = document.createElement( \"input\" );\n\tinput.value = \"t\";\n\tinput.type = \"radio\";\n\tsupport.radioValue = input.value === \"t\";\n} )();\n\n\nvar boolHook,\n\tattrHandle = jQuery.expr.attrHandle;\n\njQuery.fn.extend( {\n\tattr: function( name, value ) {\n\t\treturn access( this, jQuery.attr, name, value, arguments.length > 1 );\n\t},\n\n\tremoveAttr: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.removeAttr( this, name );\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tattr: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set attributes on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Fallback to prop when attributes are not supported\n\t\tif ( typeof elem.getAttribute === \"undefined\" ) {\n\t\t\treturn jQuery.prop( elem, name, value );\n\t\t}\n\n\t\t// All attributes are lowercase\n\t\t// Grab necessary hook if one is defined\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\t\t\tname = name.toLowerCase();\n\t\t\thooks = jQuery.attrHooks[ name ] ||\n\t\t\t\t( jQuery.expr.match.bool.test( name ) ? boolHook : undefined );\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( value === null ) {\n\t\t\t\tjQuery.removeAttr( elem, name );\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\telem.setAttribute( name, value + \"\" );\n\t\t\treturn value;\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\tret = jQuery.find.attr( elem, name );\n\n\t\t// Non-existent attributes return null, we normalize to undefined\n\t\treturn ret == null ? undefined : ret;\n\t},\n\n\tattrHooks: {\n\t\ttype: {\n\t\t\tset: function( elem, value ) {\n\t\t\t\tif ( !support.radioValue && value === \"radio\" &&\n\t\t\t\t\tjQuery.nodeName( elem, \"input\" ) ) {\n\t\t\t\t\tvar val = elem.value;\n\t\t\t\t\telem.setAttribute( \"type\", value );\n\t\t\t\t\tif ( val ) {\n\t\t\t\t\t\telem.value = val;\n\t\t\t\t\t}\n\t\t\t\t\treturn value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t},\n\n\tremoveAttr: function( elem, value ) {\n\t\tvar name, propName,\n\t\t\ti = 0,\n\t\t\tattrNames = value && value.match( rnotwhite );\n\n\t\tif ( attrNames && elem.nodeType === 1 ) {\n\t\t\twhile ( ( name = attrNames[ i++ ] ) ) {\n\t\t\t\tpropName = jQuery.propFix[ name ] || name;\n\n\t\t\t\t// Boolean attributes get special treatment (#10870)\n\t\t\t\tif ( jQuery.expr.match.bool.test( name ) ) {\n\n\t\t\t\t\t// Set corresponding property to false\n\t\t\t\t\telem[ propName ] = false;\n\t\t\t\t}\n\n\t\t\t\telem.removeAttribute( name );\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Hooks for boolean attributes\nboolHook = {\n\tset: function( elem, value, name ) {\n\t\tif ( value === false ) {\n\n\t\t\t// Remove boolean attributes when set to false\n\t\t\tjQuery.removeAttr( elem, name );\n\t\t} else {\n\t\t\telem.setAttribute( name, name );\n\t\t}\n\t\treturn name;\n\t}\n};\njQuery.each( jQuery.expr.match.bool.source.match( /\\w+/g ), function( i, name ) {\n\tvar getter = attrHandle[ name ] || jQuery.find.attr;\n\n\tattrHandle[ name ] = function( elem, name, isXML ) {\n\t\tvar ret, handle;\n\t\tif ( !isXML ) {\n\n\t\t\t// Avoid an infinite loop by temporarily removing this function from the getter\n\t\t\thandle = attrHandle[ name ];\n\t\t\tattrHandle[ name ] = ret;\n\t\t\tret = getter( elem, name, isXML ) != null ?\n\t\t\t\tname.toLowerCase() :\n\t\t\t\tnull;\n\t\t\tattrHandle[ name ] = handle;\n\t\t}\n\t\treturn ret;\n\t};\n} );\n\n\n\n\nvar rfocusable = /^(?:input|select|textarea|button)$/i,\n\trclickable = /^(?:a|area)$/i;\n\njQuery.fn.extend( {\n\tprop: function( name, value ) {\n\t\treturn access( this, jQuery.prop, name, value, arguments.length > 1 );\n\t},\n\n\tremoveProp: function( name ) {\n\t\treturn this.each( function() {\n\t\t\tdelete this[ jQuery.propFix[ name ] || name ];\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tprop: function( elem, name, value ) {\n\t\tvar ret, hooks,\n\t\t\tnType = elem.nodeType;\n\n\t\t// Don't get/set properties on text, comment and attribute nodes\n\t\tif ( nType === 3 || nType === 8 || nType === 2 ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( nType !== 1 || !jQuery.isXMLDoc( elem ) ) {\n\n\t\t\t// Fix name and attach hooks\n\t\t\tname = jQuery.propFix[ name ] || name;\n\t\t\thooks = jQuery.propHooks[ name ];\n\t\t}\n\n\t\tif ( value !== undefined ) {\n\t\t\tif ( hooks && \"set\" in hooks &&\n\t\t\t\t( ret = hooks.set( elem, value, name ) ) !== undefined ) {\n\t\t\t\treturn ret;\n\t\t\t}\n\n\t\t\treturn ( elem[ name ] = value );\n\t\t}\n\n\t\tif ( hooks && \"get\" in hooks && ( ret = hooks.get( elem, name ) ) !== null ) {\n\t\t\treturn ret;\n\t\t}\n\n\t\treturn elem[ name ];\n\t},\n\n\tpropHooks: {\n\t\ttabIndex: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\t// elem.tabIndex doesn't always return the\n\t\t\t\t// correct value when it hasn't been explicitly set\n\t\t\t\t// http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n\t\t\t\t// Use proper attribute retrieval(#12072)\n\t\t\t\tvar tabindex = jQuery.find.attr( elem, \"tabindex\" );\n\n\t\t\t\treturn tabindex ?\n\t\t\t\t\tparseInt( tabindex, 10 ) :\n\t\t\t\t\trfocusable.test( elem.nodeName ) ||\n\t\t\t\t\t\trclickable.test( elem.nodeName ) && elem.href ?\n\t\t\t\t\t\t\t0 :\n\t\t\t\t\t\t\t-1;\n\t\t\t}\n\t\t}\n\t},\n\n\tpropFix: {\n\t\t\"for\": \"htmlFor\",\n\t\t\"class\": \"className\"\n\t}\n} );\n\n// Support: IE <=11 only\n// Accessing the selectedIndex property\n// forces the browser to respect setting selected\n// on the option\n// The getter ensures a default option is selected\n// when in an optgroup\nif ( !support.optSelected ) {\n\tjQuery.propHooks.selected = {\n\t\tget: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent && parent.parentNode ) {\n\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t}\n\t\t\treturn null;\n\t\t},\n\t\tset: function( elem ) {\n\t\t\tvar parent = elem.parentNode;\n\t\t\tif ( parent ) {\n\t\t\t\tparent.selectedIndex;\n\n\t\t\t\tif ( parent.parentNode ) {\n\t\t\t\t\tparent.parentNode.selectedIndex;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\njQuery.each( [\n\t\"tabIndex\",\n\t\"readOnly\",\n\t\"maxLength\",\n\t\"cellSpacing\",\n\t\"cellPadding\",\n\t\"rowSpan\",\n\t\"colSpan\",\n\t\"useMap\",\n\t\"frameBorder\",\n\t\"contentEditable\"\n], function() {\n\tjQuery.propFix[ this.toLowerCase() ] = this;\n} );\n\n\n\n\nvar rclass = /[\\t\\r\\n\\f]/g;\n\nfunction getClass( elem ) {\n\treturn elem.getAttribute && elem.getAttribute( \"class\" ) || \"\";\n}\n\njQuery.fn.extend( {\n\taddClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).addClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\t\t\t\t\t\tif ( cur.indexOf( \" \" + clazz + \" \" ) < 0 ) {\n\t\t\t\t\t\t\tcur += clazz + \" \";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\tremoveClass: function( value ) {\n\t\tvar classes, elem, cur, curValue, clazz, j, finalValue,\n\t\t\ti = 0;\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( j ) {\n\t\t\t\tjQuery( this ).removeClass( value.call( this, j, getClass( this ) ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( !arguments.length ) {\n\t\t\treturn this.attr( \"class\", \"\" );\n\t\t}\n\n\t\tif ( typeof value === \"string\" && value ) {\n\t\t\tclasses = value.match( rnotwhite ) || [];\n\n\t\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\t\tcurValue = getClass( elem );\n\n\t\t\t\t// This expression is here for better compressibility (see addClass)\n\t\t\t\tcur = elem.nodeType === 1 &&\n\t\t\t\t\t( \" \" + curValue + \" \" ).replace( rclass, \" \" );\n\n\t\t\t\tif ( cur ) {\n\t\t\t\t\tj = 0;\n\t\t\t\t\twhile ( ( clazz = classes[ j++ ] ) ) {\n\n\t\t\t\t\t\t// Remove *all* instances\n\t\t\t\t\t\twhile ( cur.indexOf( \" \" + clazz + \" \" ) > -1 ) {\n\t\t\t\t\t\t\tcur = cur.replace( \" \" + clazz + \" \", \" \" );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// Only assign if different to avoid unneeded rendering.\n\t\t\t\t\tfinalValue = jQuery.trim( cur );\n\t\t\t\t\tif ( curValue !== finalValue ) {\n\t\t\t\t\t\telem.setAttribute( \"class\", finalValue );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn this;\n\t},\n\n\ttoggleClass: function( value, stateVal ) {\n\t\tvar type = typeof value;\n\n\t\tif ( typeof stateVal === \"boolean\" && type === \"string\" ) {\n\t\t\treturn stateVal ? this.addClass( value ) : this.removeClass( value );\n\t\t}\n\n\t\tif ( jQuery.isFunction( value ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).toggleClass(\n\t\t\t\t\tvalue.call( this, i, getClass( this ), stateVal ),\n\t\t\t\t\tstateVal\n\t\t\t\t);\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar className, i, self, classNames;\n\n\t\t\tif ( type === \"string\" ) {\n\n\t\t\t\t// Toggle individual class names\n\t\t\t\ti = 0;\n\t\t\t\tself = jQuery( this );\n\t\t\t\tclassNames = value.match( rnotwhite ) || [];\n\n\t\t\t\twhile ( ( className = classNames[ i++ ] ) ) {\n\n\t\t\t\t\t// Check each className given, space separated list\n\t\t\t\t\tif ( self.hasClass( className ) ) {\n\t\t\t\t\t\tself.removeClass( className );\n\t\t\t\t\t} else {\n\t\t\t\t\t\tself.addClass( className );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t// Toggle whole class name\n\t\t\t} else if ( value === undefined || type === \"boolean\" ) {\n\t\t\t\tclassName = getClass( this );\n\t\t\t\tif ( className ) {\n\n\t\t\t\t\t// Store className if set\n\t\t\t\t\tdataPriv.set( this, \"__className__\", className );\n\t\t\t\t}\n\n\t\t\t\t// If the element has a class name or if we're passed `false`,\n\t\t\t\t// then remove the whole classname (if there was one, the above saved it).\n\t\t\t\t// Otherwise bring back whatever was previously saved (if anything),\n\t\t\t\t// falling back to the empty string if nothing was stored.\n\t\t\t\tif ( this.setAttribute ) {\n\t\t\t\t\tthis.setAttribute( \"class\",\n\t\t\t\t\t\tclassName || value === false ?\n\t\t\t\t\t\t\"\" :\n\t\t\t\t\t\tdataPriv.get( this, \"__className__\" ) || \"\"\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t} );\n\t},\n\n\thasClass: function( selector ) {\n\t\tvar className, elem,\n\t\t\ti = 0;\n\n\t\tclassName = \" \" + selector + \" \";\n\t\twhile ( ( elem = this[ i++ ] ) ) {\n\t\t\tif ( elem.nodeType === 1 &&\n\t\t\t\t( \" \" + getClass( elem ) + \" \" ).replace( rclass, \" \" )\n\t\t\t\t\t.indexOf( className ) > -1\n\t\t\t) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t}\n\n\t\treturn false;\n\t}\n} );\n\n\n\n\nvar rreturn = /\\r/g,\n\trspaces = /[\\x20\\t\\r\\n\\f]+/g;\n\njQuery.fn.extend( {\n\tval: function( value ) {\n\t\tvar hooks, ret, isFunction,\n\t\t\telem = this[ 0 ];\n\n\t\tif ( !arguments.length ) {\n\t\t\tif ( elem ) {\n\t\t\t\thooks = jQuery.valHooks[ elem.type ] ||\n\t\t\t\t\tjQuery.valHooks[ elem.nodeName.toLowerCase() ];\n\n\t\t\t\tif ( hooks &&\n\t\t\t\t\t\"get\" in hooks &&\n\t\t\t\t\t( ret = hooks.get( elem, \"value\" ) ) !== undefined\n\t\t\t\t) {\n\t\t\t\t\treturn ret;\n\t\t\t\t}\n\n\t\t\t\tret = elem.value;\n\n\t\t\t\treturn typeof ret === \"string\" ?\n\n\t\t\t\t\t// Handle most common string cases\n\t\t\t\t\tret.replace( rreturn, \"\" ) :\n\n\t\t\t\t\t// Handle cases where value is null/undef or number\n\t\t\t\t\tret == null ? \"\" : ret;\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tisFunction = jQuery.isFunction( value );\n\n\t\treturn this.each( function( i ) {\n\t\t\tvar val;\n\n\t\t\tif ( this.nodeType !== 1 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\tif ( isFunction ) {\n\t\t\t\tval = value.call( this, i, jQuery( this ).val() );\n\t\t\t} else {\n\t\t\t\tval = value;\n\t\t\t}\n\n\t\t\t// Treat null/undefined as \"\"; convert numbers to string\n\t\t\tif ( val == null ) {\n\t\t\t\tval = \"\";\n\n\t\t\t} else if ( typeof val === \"number\" ) {\n\t\t\t\tval += \"\";\n\n\t\t\t} else if ( jQuery.isArray( val ) ) {\n\t\t\t\tval = jQuery.map( val, function( value ) {\n\t\t\t\t\treturn value == null ? \"\" : value + \"\";\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\thooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ];\n\n\t\t\t// If set returns undefined, fall back to normal setting\n\t\t\tif ( !hooks || !( \"set\" in hooks ) || hooks.set( this, val, \"value\" ) === undefined ) {\n\t\t\t\tthis.value = val;\n\t\t\t}\n\t\t} );\n\t}\n} );\n\njQuery.extend( {\n\tvalHooks: {\n\t\toption: {\n\t\t\tget: function( elem ) {\n\n\t\t\t\tvar val = jQuery.find.attr( elem, \"value\" );\n\t\t\t\treturn val != null ?\n\t\t\t\t\tval :\n\n\t\t\t\t\t// Support: IE10-11+\n\t\t\t\t\t// option.text throws exceptions (#14686, #14858)\n\t\t\t\t\t// Strip and collapse whitespace\n\t\t\t\t\t// https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n\t\t\t\t\tjQuery.trim( jQuery.text( elem ) ).replace( rspaces, \" \" );\n\t\t\t}\n\t\t},\n\t\tselect: {\n\t\t\tget: function( elem ) {\n\t\t\t\tvar value, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tindex = elem.selectedIndex,\n\t\t\t\t\tone = elem.type === \"select-one\" || index < 0,\n\t\t\t\t\tvalues = one ? null : [],\n\t\t\t\t\tmax = one ? index + 1 : options.length,\n\t\t\t\t\ti = index < 0 ?\n\t\t\t\t\t\tmax :\n\t\t\t\t\t\tone ? index : 0;\n\n\t\t\t\t// Loop through all the selected options\n\t\t\t\tfor ( ; i < max; i++ ) {\n\t\t\t\t\toption = options[ i ];\n\n\t\t\t\t\t// IE8-9 doesn't update selected after form reset (#2551)\n\t\t\t\t\tif ( ( option.selected || i === index ) &&\n\n\t\t\t\t\t\t\t// Don't return options that are disabled or in a disabled optgroup\n\t\t\t\t\t\t\t( support.optDisabled ?\n\t\t\t\t\t\t\t\t!option.disabled : option.getAttribute( \"disabled\" ) === null ) &&\n\t\t\t\t\t\t\t( !option.parentNode.disabled ||\n\t\t\t\t\t\t\t\t!jQuery.nodeName( option.parentNode, \"optgroup\" ) ) ) {\n\n\t\t\t\t\t\t// Get the specific value for the option\n\t\t\t\t\t\tvalue = jQuery( option ).val();\n\n\t\t\t\t\t\t// We don't need an array for one selects\n\t\t\t\t\t\tif ( one ) {\n\t\t\t\t\t\t\treturn value;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t// Multi-Selects return an array\n\t\t\t\t\t\tvalues.push( value );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\treturn values;\n\t\t\t},\n\n\t\t\tset: function( elem, value ) {\n\t\t\t\tvar optionSet, option,\n\t\t\t\t\toptions = elem.options,\n\t\t\t\t\tvalues = jQuery.makeArray( value ),\n\t\t\t\t\ti = options.length;\n\n\t\t\t\twhile ( i-- ) {\n\t\t\t\t\toption = options[ i ];\n\t\t\t\t\tif ( option.selected =\n\t\t\t\t\t\tjQuery.inArray( jQuery.valHooks.option.get( option ), values ) > -1\n\t\t\t\t\t) {\n\t\t\t\t\t\toptionSet = true;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Force browsers to behave consistently when non-matching value is set\n\t\t\t\tif ( !optionSet ) {\n\t\t\t\t\telem.selectedIndex = -1;\n\t\t\t\t}\n\t\t\t\treturn values;\n\t\t\t}\n\t\t}\n\t}\n} );\n\n// Radios and checkboxes getter/setter\njQuery.each( [ \"radio\", \"checkbox\" ], function() {\n\tjQuery.valHooks[ this ] = {\n\t\tset: function( elem, value ) {\n\t\t\tif ( jQuery.isArray( value ) ) {\n\t\t\t\treturn ( elem.checked = jQuery.inArray( jQuery( elem ).val(), value ) > -1 );\n\t\t\t}\n\t\t}\n\t};\n\tif ( !support.checkOn ) {\n\t\tjQuery.valHooks[ this ].get = function( elem ) {\n\t\t\treturn elem.getAttribute( \"value\" ) === null ? \"on\" : elem.value;\n\t\t};\n\t}\n} );\n\n\n\n\n// Return jQuery for attributes-only inclusion\n\n\nvar rfocusMorph = /^(?:focusinfocus|focusoutblur)$/;\n\njQuery.extend( jQuery.event, {\n\n\ttrigger: function( event, data, elem, onlyHandlers ) {\n\n\t\tvar i, cur, tmp, bubbleType, ontype, handle, special,\n\t\t\teventPath = [ elem || document ],\n\t\t\ttype = hasOwn.call( event, \"type\" ) ? event.type : event,\n\t\t\tnamespaces = hasOwn.call( event, \"namespace\" ) ? event.namespace.split( \".\" ) : [];\n\n\t\tcur = tmp = elem = elem || document;\n\n\t\t// Don't do events on text and comment nodes\n\t\tif ( elem.nodeType === 3 || elem.nodeType === 8 ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// focus/blur morphs to focusin/out; ensure we're not firing them right now\n\t\tif ( rfocusMorph.test( type + jQuery.event.triggered ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\tif ( type.indexOf( \".\" ) > -1 ) {\n\n\t\t\t// Namespaced trigger; create a regexp to match event type in handle()\n\t\t\tnamespaces = type.split( \".\" );\n\t\t\ttype = namespaces.shift();\n\t\t\tnamespaces.sort();\n\t\t}\n\t\tontype = type.indexOf( \":\" ) < 0 && \"on\" + type;\n\n\t\t// Caller can pass in a jQuery.Event object, Object, or just an event type string\n\t\tevent = event[ jQuery.expando ] ?\n\t\t\tevent :\n\t\t\tnew jQuery.Event( type, typeof event === \"object\" && event );\n\n\t\t// Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\t\tevent.isTrigger = onlyHandlers ? 2 : 3;\n\t\tevent.namespace = namespaces.join( \".\" );\n\t\tevent.rnamespace = event.namespace ?\n\t\t\tnew RegExp( \"(^|\\\\.)\" + namespaces.join( \"\\\\.(?:.*\\\\.|)\" ) + \"(\\\\.|$)\" ) :\n\t\t\tnull;\n\n\t\t// Clean up the event in case it is being reused\n\t\tevent.result = undefined;\n\t\tif ( !event.target ) {\n\t\t\tevent.target = elem;\n\t\t}\n\n\t\t// Clone any incoming data and prepend the event, creating the handler arg list\n\t\tdata = data == null ?\n\t\t\t[ event ] :\n\t\t\tjQuery.makeArray( data, [ event ] );\n\n\t\t// Allow special events to draw outside the lines\n\t\tspecial = jQuery.event.special[ type ] || {};\n\t\tif ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) {\n\t\t\treturn;\n\t\t}\n\n\t\t// Determine event propagation path in advance, per W3C events spec (#9951)\n\t\t// Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\t\tif ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) {\n\n\t\t\tbubbleType = special.delegateType || type;\n\t\t\tif ( !rfocusMorph.test( bubbleType + type ) ) {\n\t\t\t\tcur = cur.parentNode;\n\t\t\t}\n\t\t\tfor ( ; cur; cur = cur.parentNode ) {\n\t\t\t\teventPath.push( cur );\n\t\t\t\ttmp = cur;\n\t\t\t}\n\n\t\t\t// Only add window if we got to document (e.g., not plain obj or detached DOM)\n\t\t\tif ( tmp === ( elem.ownerDocument || document ) ) {\n\t\t\t\teventPath.push( tmp.defaultView || tmp.parentWindow || window );\n\t\t\t}\n\t\t}\n\n\t\t// Fire handlers on the event path\n\t\ti = 0;\n\t\twhile ( ( cur = eventPath[ i++ ] ) && !event.isPropagationStopped() ) {\n\n\t\t\tevent.type = i > 1 ?\n\t\t\t\tbubbleType :\n\t\t\t\tspecial.bindType || type;\n\n\t\t\t// jQuery handler\n\t\t\thandle = ( dataPriv.get( cur, \"events\" ) || {} )[ event.type ] &&\n\t\t\t\tdataPriv.get( cur, \"handle\" );\n\t\t\tif ( handle ) {\n\t\t\t\thandle.apply( cur, data );\n\t\t\t}\n\n\t\t\t// Native handler\n\t\t\thandle = ontype && cur[ ontype ];\n\t\t\tif ( handle && handle.apply && acceptData( cur ) ) {\n\t\t\t\tevent.result = handle.apply( cur, data );\n\t\t\t\tif ( event.result === false ) {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\tevent.type = type;\n\n\t\t// If nobody prevented the default action, do it now\n\t\tif ( !onlyHandlers && !event.isDefaultPrevented() ) {\n\n\t\t\tif ( ( !special._default ||\n\t\t\t\tspecial._default.apply( eventPath.pop(), data ) === false ) &&\n\t\t\t\tacceptData( elem ) ) {\n\n\t\t\t\t// Call a native DOM method on the target with the same name name as the event.\n\t\t\t\t// Don't do default actions on window, that's where global variables be (#6170)\n\t\t\t\tif ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// Don't re-trigger an onFOO event when we call its FOO() method\n\t\t\t\t\ttmp = elem[ ontype ];\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = null;\n\t\t\t\t\t}\n\n\t\t\t\t\t// Prevent re-triggering of the same event, since we already bubbled it above\n\t\t\t\t\tjQuery.event.triggered = type;\n\t\t\t\t\telem[ type ]();\n\t\t\t\t\tjQuery.event.triggered = undefined;\n\n\t\t\t\t\tif ( tmp ) {\n\t\t\t\t\t\telem[ ontype ] = tmp;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn event.result;\n\t},\n\n\t// Piggyback on a donor event to simulate a different one\n\t// Used only for `focus(in | out)` events\n\tsimulate: function( type, elem, event ) {\n\t\tvar e = jQuery.extend(\n\t\t\tnew jQuery.Event(),\n\t\t\tevent,\n\t\t\t{\n\t\t\t\ttype: type,\n\t\t\t\tisSimulated: true\n\t\t\t}\n\t\t);\n\n\t\tjQuery.event.trigger( e, null, elem );\n\t}\n\n} );\n\njQuery.fn.extend( {\n\n\ttrigger: function( type, data ) {\n\t\treturn this.each( function() {\n\t\t\tjQuery.event.trigger( type, data, this );\n\t\t} );\n\t},\n\ttriggerHandler: function( type, data ) {\n\t\tvar elem = this[ 0 ];\n\t\tif ( elem ) {\n\t\t\treturn jQuery.event.trigger( type, data, elem, true );\n\t\t}\n\t}\n} );\n\n\njQuery.each( ( \"blur focus focusin focusout load resize scroll unload click dblclick \" +\n\t\"mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave \" +\n\t\"change select submit keydown keypress keyup error contextmenu\" ).split( \" \" ),\n\tfunction( i, name ) {\n\n\t// Handle event binding\n\tjQuery.fn[ name ] = function( data, fn ) {\n\t\treturn arguments.length > 0 ?\n\t\t\tthis.on( name, null, data, fn ) :\n\t\t\tthis.trigger( name );\n\t};\n} );\n\njQuery.fn.extend( {\n\thover: function( fnOver, fnOut ) {\n\t\treturn this.mouseenter( fnOver ).mouseleave( fnOut || fnOver );\n\t}\n} );\n\n\n\n\nsupport.focusin = \"onfocusin\" in window;\n\n\n// Support: Firefox\n// Firefox doesn't have focus(in | out) events\n// Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n//\n// Support: Chrome, Safari\n// focus(in | out) events fire after focus & blur events,\n// which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n// Related ticket - https://code.google.com/p/chromium/issues/detail?id=449857\nif ( !support.focusin ) {\n\tjQuery.each( { focus: \"focusin\", blur: \"focusout\" }, function( orig, fix ) {\n\n\t\t// Attach a single capturing handler on the document while someone wants focusin/focusout\n\t\tvar handler = function( event ) {\n\t\t\tjQuery.event.simulate( fix, event.target, jQuery.event.fix( event ) );\n\t\t};\n\n\t\tjQuery.event.special[ fix ] = {\n\t\t\tsetup: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix );\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.addEventListener( orig, handler, true );\n\t\t\t\t}\n\t\t\t\tdataPriv.access( doc, fix, ( attaches || 0 ) + 1 );\n\t\t\t},\n\t\t\tteardown: function() {\n\t\t\t\tvar doc = this.ownerDocument || this,\n\t\t\t\t\tattaches = dataPriv.access( doc, fix ) - 1;\n\n\t\t\t\tif ( !attaches ) {\n\t\t\t\t\tdoc.removeEventListener( orig, handler, true );\n\t\t\t\t\tdataPriv.remove( doc, fix );\n\n\t\t\t\t} else {\n\t\t\t\t\tdataPriv.access( doc, fix, attaches );\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t} );\n}\nvar location = window.location;\n\nvar nonce = jQuery.now();\n\nvar rquery = ( /\\?/ );\n\n\n\n// Support: Android 2.3\n// Workaround failure to string-cast null input\njQuery.parseJSON = function( data ) {\n\treturn JSON.parse( data + \"\" );\n};\n\n\n// Cross-browser xml parsing\njQuery.parseXML = function( data ) {\n\tvar xml;\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\n\t// Support: IE9\n\ttry {\n\t\txml = ( new window.DOMParser() ).parseFromString( data, \"text/xml\" );\n\t} catch ( e ) {\n\t\txml = undefined;\n\t}\n\n\tif ( !xml || xml.getElementsByTagName( \"parsererror\" ).length ) {\n\t\tjQuery.error( \"Invalid XML: \" + data );\n\t}\n\treturn xml;\n};\n\n\nvar\n\trhash = /#.*$/,\n\trts = /([?&])_=[^&]*/,\n\trheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n\n\t// #7653, #8125, #8152: local protocol detection\n\trlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n\trnoContent = /^(?:GET|HEAD)$/,\n\trprotocol = /^\\/\\//,\n\n\t/* Prefilters\n\t * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n\t * 2) These are called:\n\t *    - BEFORE asking for a transport\n\t *    - AFTER param serialization (s.data is a string if s.processData is true)\n\t * 3) key is the dataType\n\t * 4) the catchall symbol \"*\" can be used\n\t * 5) execution will start with transport dataType and THEN continue down to \"*\" if needed\n\t */\n\tprefilters = {},\n\n\t/* Transports bindings\n\t * 1) key is the dataType\n\t * 2) the catchall symbol \"*\" can be used\n\t * 3) selection will start with transport dataType and THEN go to \"*\" if needed\n\t */\n\ttransports = {},\n\n\t// Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n\tallTypes = \"*/\".concat( \"*\" ),\n\n\t// Anchor tag for parsing the document origin\n\toriginAnchor = document.createElement( \"a\" );\n\toriginAnchor.href = location.href;\n\n// Base \"constructor\" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\nfunction addToPrefiltersOrTransports( structure ) {\n\n\t// dataTypeExpression is optional and defaults to \"*\"\n\treturn function( dataTypeExpression, func ) {\n\n\t\tif ( typeof dataTypeExpression !== \"string\" ) {\n\t\t\tfunc = dataTypeExpression;\n\t\t\tdataTypeExpression = \"*\";\n\t\t}\n\n\t\tvar dataType,\n\t\t\ti = 0,\n\t\t\tdataTypes = dataTypeExpression.toLowerCase().match( rnotwhite ) || [];\n\n\t\tif ( jQuery.isFunction( func ) ) {\n\n\t\t\t// For each dataType in the dataTypeExpression\n\t\t\twhile ( ( dataType = dataTypes[ i++ ] ) ) {\n\n\t\t\t\t// Prepend if requested\n\t\t\t\tif ( dataType[ 0 ] === \"+\" ) {\n\t\t\t\t\tdataType = dataType.slice( 1 ) || \"*\";\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).unshift( func );\n\n\t\t\t\t// Otherwise append\n\t\t\t\t} else {\n\t\t\t\t\t( structure[ dataType ] = structure[ dataType ] || [] ).push( func );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n}\n\n// Base inspection function for prefilters and transports\nfunction inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR ) {\n\n\tvar inspected = {},\n\t\tseekingTransport = ( structure === transports );\n\n\tfunction inspect( dataType ) {\n\t\tvar selected;\n\t\tinspected[ dataType ] = true;\n\t\tjQuery.each( structure[ dataType ] || [], function( _, prefilterOrFactory ) {\n\t\t\tvar dataTypeOrTransport = prefilterOrFactory( options, originalOptions, jqXHR );\n\t\t\tif ( typeof dataTypeOrTransport === \"string\" &&\n\t\t\t\t!seekingTransport && !inspected[ dataTypeOrTransport ] ) {\n\n\t\t\t\toptions.dataTypes.unshift( dataTypeOrTransport );\n\t\t\t\tinspect( dataTypeOrTransport );\n\t\t\t\treturn false;\n\t\t\t} else if ( seekingTransport ) {\n\t\t\t\treturn !( selected = dataTypeOrTransport );\n\t\t\t}\n\t\t} );\n\t\treturn selected;\n\t}\n\n\treturn inspect( options.dataTypes[ 0 ] ) || !inspected[ \"*\" ] && inspect( \"*\" );\n}\n\n// A special extend for ajax options\n// that takes \"flat\" options (not to be deep extended)\n// Fixes #9887\nfunction ajaxExtend( target, src ) {\n\tvar key, deep,\n\t\tflatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n\tfor ( key in src ) {\n\t\tif ( src[ key ] !== undefined ) {\n\t\t\t( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ];\n\t\t}\n\t}\n\tif ( deep ) {\n\t\tjQuery.extend( true, target, deep );\n\t}\n\n\treturn target;\n}\n\n/* Handles responses to an ajax request:\n * - finds the right dataType (mediates between content-type and expected dataType)\n * - returns the corresponding response\n */\nfunction ajaxHandleResponses( s, jqXHR, responses ) {\n\n\tvar ct, type, finalDataType, firstDataType,\n\t\tcontents = s.contents,\n\t\tdataTypes = s.dataTypes;\n\n\t// Remove auto dataType and get content-type in the process\n\twhile ( dataTypes[ 0 ] === \"*\" ) {\n\t\tdataTypes.shift();\n\t\tif ( ct === undefined ) {\n\t\t\tct = s.mimeType || jqXHR.getResponseHeader( \"Content-Type\" );\n\t\t}\n\t}\n\n\t// Check if we're dealing with a known content-type\n\tif ( ct ) {\n\t\tfor ( type in contents ) {\n\t\t\tif ( contents[ type ] && contents[ type ].test( ct ) ) {\n\t\t\t\tdataTypes.unshift( type );\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\n\t// Check to see if we have a response for the expected dataType\n\tif ( dataTypes[ 0 ] in responses ) {\n\t\tfinalDataType = dataTypes[ 0 ];\n\t} else {\n\n\t\t// Try convertible dataTypes\n\t\tfor ( type in responses ) {\n\t\t\tif ( !dataTypes[ 0 ] || s.converters[ type + \" \" + dataTypes[ 0 ] ] ) {\n\t\t\t\tfinalDataType = type;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t\tif ( !firstDataType ) {\n\t\t\t\tfirstDataType = type;\n\t\t\t}\n\t\t}\n\n\t\t// Or just use first one\n\t\tfinalDataType = finalDataType || firstDataType;\n\t}\n\n\t// If we found a dataType\n\t// We add the dataType to the list if needed\n\t// and return the corresponding response\n\tif ( finalDataType ) {\n\t\tif ( finalDataType !== dataTypes[ 0 ] ) {\n\t\t\tdataTypes.unshift( finalDataType );\n\t\t}\n\t\treturn responses[ finalDataType ];\n\t}\n}\n\n/* Chain conversions given the request and the original response\n * Also sets the responseXXX fields on the jqXHR instance\n */\nfunction ajaxConvert( s, response, jqXHR, isSuccess ) {\n\tvar conv2, current, conv, tmp, prev,\n\t\tconverters = {},\n\n\t\t// Work with a copy of dataTypes in case we need to modify it for conversion\n\t\tdataTypes = s.dataTypes.slice();\n\n\t// Create converters map with lowercased keys\n\tif ( dataTypes[ 1 ] ) {\n\t\tfor ( conv in s.converters ) {\n\t\t\tconverters[ conv.toLowerCase() ] = s.converters[ conv ];\n\t\t}\n\t}\n\n\tcurrent = dataTypes.shift();\n\n\t// Convert to each sequential dataType\n\twhile ( current ) {\n\n\t\tif ( s.responseFields[ current ] ) {\n\t\t\tjqXHR[ s.responseFields[ current ] ] = response;\n\t\t}\n\n\t\t// Apply the dataFilter if provided\n\t\tif ( !prev && isSuccess && s.dataFilter ) {\n\t\t\tresponse = s.dataFilter( response, s.dataType );\n\t\t}\n\n\t\tprev = current;\n\t\tcurrent = dataTypes.shift();\n\n\t\tif ( current ) {\n\n\t\t// There's only work to do if current dataType is non-auto\n\t\t\tif ( current === \"*\" ) {\n\n\t\t\t\tcurrent = prev;\n\n\t\t\t// Convert response if prev dataType is non-auto and differs from current\n\t\t\t} else if ( prev !== \"*\" && prev !== current ) {\n\n\t\t\t\t// Seek a direct converter\n\t\t\t\tconv = converters[ prev + \" \" + current ] || converters[ \"* \" + current ];\n\n\t\t\t\t// If none found, seek a pair\n\t\t\t\tif ( !conv ) {\n\t\t\t\t\tfor ( conv2 in converters ) {\n\n\t\t\t\t\t\t// If conv2 outputs current\n\t\t\t\t\t\ttmp = conv2.split( \" \" );\n\t\t\t\t\t\tif ( tmp[ 1 ] === current ) {\n\n\t\t\t\t\t\t\t// If prev can be converted to accepted input\n\t\t\t\t\t\t\tconv = converters[ prev + \" \" + tmp[ 0 ] ] ||\n\t\t\t\t\t\t\t\tconverters[ \"* \" + tmp[ 0 ] ];\n\t\t\t\t\t\t\tif ( conv ) {\n\n\t\t\t\t\t\t\t\t// Condense equivalence converters\n\t\t\t\t\t\t\t\tif ( conv === true ) {\n\t\t\t\t\t\t\t\t\tconv = converters[ conv2 ];\n\n\t\t\t\t\t\t\t\t// Otherwise, insert the intermediate dataType\n\t\t\t\t\t\t\t\t} else if ( converters[ conv2 ] !== true ) {\n\t\t\t\t\t\t\t\t\tcurrent = tmp[ 0 ];\n\t\t\t\t\t\t\t\t\tdataTypes.unshift( tmp[ 1 ] );\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Apply converter (if not an equivalence)\n\t\t\t\tif ( conv !== true ) {\n\n\t\t\t\t\t// Unless errors are allowed to bubble, catch and return them\n\t\t\t\t\tif ( conv && s.throws ) {\n\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t} else {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tresponse = conv( response );\n\t\t\t\t\t\t} catch ( e ) {\n\t\t\t\t\t\t\treturn {\n\t\t\t\t\t\t\t\tstate: \"parsererror\",\n\t\t\t\t\t\t\t\terror: conv ? e : \"No conversion from \" + prev + \" to \" + current\n\t\t\t\t\t\t\t};\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn { state: \"success\", data: response };\n}\n\njQuery.extend( {\n\n\t// Counter for holding the number of active queries\n\tactive: 0,\n\n\t// Last-Modified header cache for next request\n\tlastModified: {},\n\tetag: {},\n\n\tajaxSettings: {\n\t\turl: location.href,\n\t\ttype: \"GET\",\n\t\tisLocal: rlocalProtocol.test( location.protocol ),\n\t\tglobal: true,\n\t\tprocessData: true,\n\t\tasync: true,\n\t\tcontentType: \"application/x-www-form-urlencoded; charset=UTF-8\",\n\t\t/*\n\t\ttimeout: 0,\n\t\tdata: null,\n\t\tdataType: null,\n\t\tusername: null,\n\t\tpassword: null,\n\t\tcache: null,\n\t\tthrows: false,\n\t\ttraditional: false,\n\t\theaders: {},\n\t\t*/\n\n\t\taccepts: {\n\t\t\t\"*\": allTypes,\n\t\t\ttext: \"text/plain\",\n\t\t\thtml: \"text/html\",\n\t\t\txml: \"application/xml, text/xml\",\n\t\t\tjson: \"application/json, text/javascript\"\n\t\t},\n\n\t\tcontents: {\n\t\t\txml: /\\bxml\\b/,\n\t\t\thtml: /\\bhtml/,\n\t\t\tjson: /\\bjson\\b/\n\t\t},\n\n\t\tresponseFields: {\n\t\t\txml: \"responseXML\",\n\t\t\ttext: \"responseText\",\n\t\t\tjson: \"responseJSON\"\n\t\t},\n\n\t\t// Data converters\n\t\t// Keys separate source (or catchall \"*\") and destination types with a single space\n\t\tconverters: {\n\n\t\t\t// Convert anything to text\n\t\t\t\"* text\": String,\n\n\t\t\t// Text to html (true = no transformation)\n\t\t\t\"text html\": true,\n\n\t\t\t// Evaluate text as a json expression\n\t\t\t\"text json\": jQuery.parseJSON,\n\n\t\t\t// Parse text as xml\n\t\t\t\"text xml\": jQuery.parseXML\n\t\t},\n\n\t\t// For options that shouldn't be deep extended:\n\t\t// you can add your own custom options here if\n\t\t// and when you create one that shouldn't be\n\t\t// deep extended (see ajaxExtend)\n\t\tflatOptions: {\n\t\t\turl: true,\n\t\t\tcontext: true\n\t\t}\n\t},\n\n\t// Creates a full fledged settings object into target\n\t// with both ajaxSettings and settings fields.\n\t// If target is omitted, writes into ajaxSettings.\n\tajaxSetup: function( target, settings ) {\n\t\treturn settings ?\n\n\t\t\t// Building a settings object\n\t\t\tajaxExtend( ajaxExtend( target, jQuery.ajaxSettings ), settings ) :\n\n\t\t\t// Extending ajaxSettings\n\t\t\tajaxExtend( jQuery.ajaxSettings, target );\n\t},\n\n\tajaxPrefilter: addToPrefiltersOrTransports( prefilters ),\n\tajaxTransport: addToPrefiltersOrTransports( transports ),\n\n\t// Main method\n\tajax: function( url, options ) {\n\n\t\t// If url is an object, simulate pre-1.5 signature\n\t\tif ( typeof url === \"object\" ) {\n\t\t\toptions = url;\n\t\t\turl = undefined;\n\t\t}\n\n\t\t// Force options to be an object\n\t\toptions = options || {};\n\n\t\tvar transport,\n\n\t\t\t// URL without anti-cache param\n\t\t\tcacheURL,\n\n\t\t\t// Response headers\n\t\t\tresponseHeadersString,\n\t\t\tresponseHeaders,\n\n\t\t\t// timeout handle\n\t\t\ttimeoutTimer,\n\n\t\t\t// Url cleanup var\n\t\t\turlAnchor,\n\n\t\t\t// To know if global events are to be dispatched\n\t\t\tfireGlobals,\n\n\t\t\t// Loop variable\n\t\t\ti,\n\n\t\t\t// Create the final options object\n\t\t\ts = jQuery.ajaxSetup( {}, options ),\n\n\t\t\t// Callbacks context\n\t\t\tcallbackContext = s.context || s,\n\n\t\t\t// Context for global events is callbackContext if it is a DOM node or jQuery collection\n\t\t\tglobalEventContext = s.context &&\n\t\t\t\t( callbackContext.nodeType || callbackContext.jquery ) ?\n\t\t\t\t\tjQuery( callbackContext ) :\n\t\t\t\t\tjQuery.event,\n\n\t\t\t// Deferreds\n\t\t\tdeferred = jQuery.Deferred(),\n\t\t\tcompleteDeferred = jQuery.Callbacks( \"once memory\" ),\n\n\t\t\t// Status-dependent callbacks\n\t\t\tstatusCode = s.statusCode || {},\n\n\t\t\t// Headers (they are sent all at once)\n\t\t\trequestHeaders = {},\n\t\t\trequestHeadersNames = {},\n\n\t\t\t// The jqXHR state\n\t\t\tstate = 0,\n\n\t\t\t// Default abort message\n\t\t\tstrAbort = \"canceled\",\n\n\t\t\t// Fake xhr\n\t\t\tjqXHR = {\n\t\t\t\treadyState: 0,\n\n\t\t\t\t// Builds headers hashtable if needed\n\t\t\t\tgetResponseHeader: function( key ) {\n\t\t\t\t\tvar match;\n\t\t\t\t\tif ( state === 2 ) {\n\t\t\t\t\t\tif ( !responseHeaders ) {\n\t\t\t\t\t\t\tresponseHeaders = {};\n\t\t\t\t\t\t\twhile ( ( match = rheaders.exec( responseHeadersString ) ) ) {\n\t\t\t\t\t\t\t\tresponseHeaders[ match[ 1 ].toLowerCase() ] = match[ 2 ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tmatch = responseHeaders[ key.toLowerCase() ];\n\t\t\t\t\t}\n\t\t\t\t\treturn match == null ? null : match;\n\t\t\t\t},\n\n\t\t\t\t// Raw string\n\t\t\t\tgetAllResponseHeaders: function() {\n\t\t\t\t\treturn state === 2 ? responseHeadersString : null;\n\t\t\t\t},\n\n\t\t\t\t// Caches the header\n\t\t\t\tsetRequestHeader: function( name, value ) {\n\t\t\t\t\tvar lname = name.toLowerCase();\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\tname = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name;\n\t\t\t\t\t\trequestHeaders[ name ] = value;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Overrides response content-type header\n\t\t\t\toverrideMimeType: function( type ) {\n\t\t\t\t\tif ( !state ) {\n\t\t\t\t\t\ts.mimeType = type;\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Status-dependent callbacks\n\t\t\t\tstatusCode: function( map ) {\n\t\t\t\t\tvar code;\n\t\t\t\t\tif ( map ) {\n\t\t\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\t\t\tfor ( code in map ) {\n\n\t\t\t\t\t\t\t\t// Lazy-add the new callback in a way that preserves old ones\n\t\t\t\t\t\t\t\tstatusCode[ code ] = [ statusCode[ code ], map[ code ] ];\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\n\t\t\t\t\t\t\t// Execute the appropriate callbacks\n\t\t\t\t\t\t\tjqXHR.always( map[ jqXHR.status ] );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\treturn this;\n\t\t\t\t},\n\n\t\t\t\t// Cancel the request\n\t\t\t\tabort: function( statusText ) {\n\t\t\t\t\tvar finalText = statusText || strAbort;\n\t\t\t\t\tif ( transport ) {\n\t\t\t\t\t\ttransport.abort( finalText );\n\t\t\t\t\t}\n\t\t\t\t\tdone( 0, finalText );\n\t\t\t\t\treturn this;\n\t\t\t\t}\n\t\t\t};\n\n\t\t// Attach deferreds\n\t\tdeferred.promise( jqXHR ).complete = completeDeferred.add;\n\t\tjqXHR.success = jqXHR.done;\n\t\tjqXHR.error = jqXHR.fail;\n\n\t\t// Remove hash character (#7531: and string promotion)\n\t\t// Add protocol if not provided (prefilters might expect it)\n\t\t// Handle falsy url in the settings object (#10093: consistency with old signature)\n\t\t// We also use the url parameter if available\n\t\ts.url = ( ( url || s.url || location.href ) + \"\" ).replace( rhash, \"\" )\n\t\t\t.replace( rprotocol, location.protocol + \"//\" );\n\n\t\t// Alias method option to type as per ticket #12004\n\t\ts.type = options.method || options.type || s.method || s.type;\n\n\t\t// Extract dataTypes list\n\t\ts.dataTypes = jQuery.trim( s.dataType || \"*\" ).toLowerCase().match( rnotwhite ) || [ \"\" ];\n\n\t\t// A cross-domain request is in order when the origin doesn't match the current origin.\n\t\tif ( s.crossDomain == null ) {\n\t\t\turlAnchor = document.createElement( \"a\" );\n\n\t\t\t// Support: IE8-11+\n\t\t\t// IE throws exception if url is malformed, e.g. http://example.com:80x/\n\t\t\ttry {\n\t\t\t\turlAnchor.href = s.url;\n\n\t\t\t\t// Support: IE8-11+\n\t\t\t\t// Anchor's host property isn't correctly set when s.url is relative\n\t\t\t\turlAnchor.href = urlAnchor.href;\n\t\t\t\ts.crossDomain = originAnchor.protocol + \"//\" + originAnchor.host !==\n\t\t\t\t\turlAnchor.protocol + \"//\" + urlAnchor.host;\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// If there is an error parsing the URL, assume it is crossDomain,\n\t\t\t\t// it can be rejected by the transport if it is invalid\n\t\t\t\ts.crossDomain = true;\n\t\t\t}\n\t\t}\n\n\t\t// Convert data if not already a string\n\t\tif ( s.data && s.processData && typeof s.data !== \"string\" ) {\n\t\t\ts.data = jQuery.param( s.data, s.traditional );\n\t\t}\n\n\t\t// Apply prefilters\n\t\tinspectPrefiltersOrTransports( prefilters, s, options, jqXHR );\n\n\t\t// If request was aborted inside a prefilter, stop there\n\t\tif ( state === 2 ) {\n\t\t\treturn jqXHR;\n\t\t}\n\n\t\t// We can fire global events as of now if asked to\n\t\t// Don't fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\t\tfireGlobals = jQuery.event && s.global;\n\n\t\t// Watch for a new set of requests\n\t\tif ( fireGlobals && jQuery.active++ === 0 ) {\n\t\t\tjQuery.event.trigger( \"ajaxStart\" );\n\t\t}\n\n\t\t// Uppercase the type\n\t\ts.type = s.type.toUpperCase();\n\n\t\t// Determine if request has content\n\t\ts.hasContent = !rnoContent.test( s.type );\n\n\t\t// Save the URL in case we're toying with the If-Modified-Since\n\t\t// and/or If-None-Match header later on\n\t\tcacheURL = s.url;\n\n\t\t// More options handling for requests with no content\n\t\tif ( !s.hasContent ) {\n\n\t\t\t// If data is available, append data to url\n\t\t\tif ( s.data ) {\n\t\t\t\tcacheURL = ( s.url += ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + s.data );\n\n\t\t\t\t// #9682: remove data so that it's not used in an eventual retry\n\t\t\t\tdelete s.data;\n\t\t\t}\n\n\t\t\t// Add anti-cache in url if needed\n\t\t\tif ( s.cache === false ) {\n\t\t\t\ts.url = rts.test( cacheURL ) ?\n\n\t\t\t\t\t// If there is already a '_' parameter, set its value\n\t\t\t\t\tcacheURL.replace( rts, \"$1_=\" + nonce++ ) :\n\n\t\t\t\t\t// Otherwise add one to the end\n\t\t\t\t\tcacheURL + ( rquery.test( cacheURL ) ? \"&\" : \"?\" ) + \"_=\" + nonce++;\n\t\t\t}\n\t\t}\n\n\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\tif ( s.ifModified ) {\n\t\t\tif ( jQuery.lastModified[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-Modified-Since\", jQuery.lastModified[ cacheURL ] );\n\t\t\t}\n\t\t\tif ( jQuery.etag[ cacheURL ] ) {\n\t\t\t\tjqXHR.setRequestHeader( \"If-None-Match\", jQuery.etag[ cacheURL ] );\n\t\t\t}\n\t\t}\n\n\t\t// Set the correct header, if data is being sent\n\t\tif ( s.data && s.hasContent && s.contentType !== false || options.contentType ) {\n\t\t\tjqXHR.setRequestHeader( \"Content-Type\", s.contentType );\n\t\t}\n\n\t\t// Set the Accepts header for the server, depending on the dataType\n\t\tjqXHR.setRequestHeader(\n\t\t\t\"Accept\",\n\t\t\ts.dataTypes[ 0 ] && s.accepts[ s.dataTypes[ 0 ] ] ?\n\t\t\t\ts.accepts[ s.dataTypes[ 0 ] ] +\n\t\t\t\t\t( s.dataTypes[ 0 ] !== \"*\" ? \", \" + allTypes + \"; q=0.01\" : \"\" ) :\n\t\t\t\ts.accepts[ \"*\" ]\n\t\t);\n\n\t\t// Check for headers option\n\t\tfor ( i in s.headers ) {\n\t\t\tjqXHR.setRequestHeader( i, s.headers[ i ] );\n\t\t}\n\n\t\t// Allow custom headers/mimetypes and early abort\n\t\tif ( s.beforeSend &&\n\t\t\t( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) {\n\n\t\t\t// Abort if not done already and return\n\t\t\treturn jqXHR.abort();\n\t\t}\n\n\t\t// Aborting is no longer a cancellation\n\t\tstrAbort = \"abort\";\n\n\t\t// Install callbacks on deferreds\n\t\tfor ( i in { success: 1, error: 1, complete: 1 } ) {\n\t\t\tjqXHR[ i ]( s[ i ] );\n\t\t}\n\n\t\t// Get transport\n\t\ttransport = inspectPrefiltersOrTransports( transports, s, options, jqXHR );\n\n\t\t// If no transport, we auto-abort\n\t\tif ( !transport ) {\n\t\t\tdone( -1, \"No Transport\" );\n\t\t} else {\n\t\t\tjqXHR.readyState = 1;\n\n\t\t\t// Send global event\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxSend\", [ jqXHR, s ] );\n\t\t\t}\n\n\t\t\t// If request was aborted inside ajaxSend, stop there\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn jqXHR;\n\t\t\t}\n\n\t\t\t// Timeout\n\t\t\tif ( s.async && s.timeout > 0 ) {\n\t\t\t\ttimeoutTimer = window.setTimeout( function() {\n\t\t\t\t\tjqXHR.abort( \"timeout\" );\n\t\t\t\t}, s.timeout );\n\t\t\t}\n\n\t\t\ttry {\n\t\t\t\tstate = 1;\n\t\t\t\ttransport.send( requestHeaders, done );\n\t\t\t} catch ( e ) {\n\n\t\t\t\t// Propagate exception as error if not done\n\t\t\t\tif ( state < 2 ) {\n\t\t\t\t\tdone( -1, e );\n\n\t\t\t\t// Simply rethrow otherwise\n\t\t\t\t} else {\n\t\t\t\t\tthrow e;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Callback for when everything is done\n\t\tfunction done( status, nativeStatusText, responses, headers ) {\n\t\t\tvar isSuccess, success, error, response, modified,\n\t\t\t\tstatusText = nativeStatusText;\n\n\t\t\t// Called once\n\t\t\tif ( state === 2 ) {\n\t\t\t\treturn;\n\t\t\t}\n\n\t\t\t// State is \"done\" now\n\t\t\tstate = 2;\n\n\t\t\t// Clear timeout if it exists\n\t\t\tif ( timeoutTimer ) {\n\t\t\t\twindow.clearTimeout( timeoutTimer );\n\t\t\t}\n\n\t\t\t// Dereference transport for early garbage collection\n\t\t\t// (no matter how long the jqXHR object will be used)\n\t\t\ttransport = undefined;\n\n\t\t\t// Cache response headers\n\t\t\tresponseHeadersString = headers || \"\";\n\n\t\t\t// Set readyState\n\t\t\tjqXHR.readyState = status > 0 ? 4 : 0;\n\n\t\t\t// Determine if successful\n\t\t\tisSuccess = status >= 200 && status < 300 || status === 304;\n\n\t\t\t// Get response data\n\t\t\tif ( responses ) {\n\t\t\t\tresponse = ajaxHandleResponses( s, jqXHR, responses );\n\t\t\t}\n\n\t\t\t// Convert no matter what (that way responseXXX fields are always set)\n\t\t\tresponse = ajaxConvert( s, response, jqXHR, isSuccess );\n\n\t\t\t// If successful, handle type chaining\n\t\t\tif ( isSuccess ) {\n\n\t\t\t\t// Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\t\t\t\tif ( s.ifModified ) {\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"Last-Modified\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.lastModified[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t\tmodified = jqXHR.getResponseHeader( \"etag\" );\n\t\t\t\t\tif ( modified ) {\n\t\t\t\t\t\tjQuery.etag[ cacheURL ] = modified;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// if no content\n\t\t\t\tif ( status === 204 || s.type === \"HEAD\" ) {\n\t\t\t\t\tstatusText = \"nocontent\";\n\n\t\t\t\t// if not modified\n\t\t\t\t} else if ( status === 304 ) {\n\t\t\t\t\tstatusText = \"notmodified\";\n\n\t\t\t\t// If we have data, let's convert it\n\t\t\t\t} else {\n\t\t\t\t\tstatusText = response.state;\n\t\t\t\t\tsuccess = response.data;\n\t\t\t\t\terror = response.error;\n\t\t\t\t\tisSuccess = !error;\n\t\t\t\t}\n\t\t\t} else {\n\n\t\t\t\t// Extract error from statusText and normalize for non-aborts\n\t\t\t\terror = statusText;\n\t\t\t\tif ( status || !statusText ) {\n\t\t\t\t\tstatusText = \"error\";\n\t\t\t\t\tif ( status < 0 ) {\n\t\t\t\t\t\tstatus = 0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Set data for the fake xhr object\n\t\t\tjqXHR.status = status;\n\t\t\tjqXHR.statusText = ( nativeStatusText || statusText ) + \"\";\n\n\t\t\t// Success/Error\n\t\t\tif ( isSuccess ) {\n\t\t\t\tdeferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] );\n\t\t\t} else {\n\t\t\t\tdeferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] );\n\t\t\t}\n\n\t\t\t// Status-dependent callbacks\n\t\t\tjqXHR.statusCode( statusCode );\n\t\t\tstatusCode = undefined;\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( isSuccess ? \"ajaxSuccess\" : \"ajaxError\",\n\t\t\t\t\t[ jqXHR, s, isSuccess ? success : error ] );\n\t\t\t}\n\n\t\t\t// Complete\n\t\t\tcompleteDeferred.fireWith( callbackContext, [ jqXHR, statusText ] );\n\n\t\t\tif ( fireGlobals ) {\n\t\t\t\tglobalEventContext.trigger( \"ajaxComplete\", [ jqXHR, s ] );\n\n\t\t\t\t// Handle the global AJAX counter\n\t\t\t\tif ( !( --jQuery.active ) ) {\n\t\t\t\t\tjQuery.event.trigger( \"ajaxStop\" );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn jqXHR;\n\t},\n\n\tgetJSON: function( url, data, callback ) {\n\t\treturn jQuery.get( url, data, callback, \"json\" );\n\t},\n\n\tgetScript: function( url, callback ) {\n\t\treturn jQuery.get( url, undefined, callback, \"script\" );\n\t}\n} );\n\njQuery.each( [ \"get\", \"post\" ], function( i, method ) {\n\tjQuery[ method ] = function( url, data, callback, type ) {\n\n\t\t// Shift arguments if data argument was omitted\n\t\tif ( jQuery.isFunction( data ) ) {\n\t\t\ttype = type || callback;\n\t\t\tcallback = data;\n\t\t\tdata = undefined;\n\t\t}\n\n\t\t// The url can be an options object (which then must have .url)\n\t\treturn jQuery.ajax( jQuery.extend( {\n\t\t\turl: url,\n\t\t\ttype: method,\n\t\t\tdataType: type,\n\t\t\tdata: data,\n\t\t\tsuccess: callback\n\t\t}, jQuery.isPlainObject( url ) && url ) );\n\t};\n} );\n\n\njQuery._evalUrl = function( url ) {\n\treturn jQuery.ajax( {\n\t\turl: url,\n\n\t\t// Make this explicit, since user can override this through ajaxSetup (#11264)\n\t\ttype: \"GET\",\n\t\tdataType: \"script\",\n\t\tasync: false,\n\t\tglobal: false,\n\t\t\"throws\": true\n\t} );\n};\n\n\njQuery.fn.extend( {\n\twrapAll: function( html ) {\n\t\tvar wrap;\n\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapAll( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\tif ( this[ 0 ] ) {\n\n\t\t\t// The elements to wrap the target around\n\t\t\twrap = jQuery( html, this[ 0 ].ownerDocument ).eq( 0 ).clone( true );\n\n\t\t\tif ( this[ 0 ].parentNode ) {\n\t\t\t\twrap.insertBefore( this[ 0 ] );\n\t\t\t}\n\n\t\t\twrap.map( function() {\n\t\t\t\tvar elem = this;\n\n\t\t\t\twhile ( elem.firstElementChild ) {\n\t\t\t\t\telem = elem.firstElementChild;\n\t\t\t\t}\n\n\t\t\t\treturn elem;\n\t\t\t} ).append( this );\n\t\t}\n\n\t\treturn this;\n\t},\n\n\twrapInner: function( html ) {\n\t\tif ( jQuery.isFunction( html ) ) {\n\t\t\treturn this.each( function( i ) {\n\t\t\t\tjQuery( this ).wrapInner( html.call( this, i ) );\n\t\t\t} );\n\t\t}\n\n\t\treturn this.each( function() {\n\t\t\tvar self = jQuery( this ),\n\t\t\t\tcontents = self.contents();\n\n\t\t\tif ( contents.length ) {\n\t\t\t\tcontents.wrapAll( html );\n\n\t\t\t} else {\n\t\t\t\tself.append( html );\n\t\t\t}\n\t\t} );\n\t},\n\n\twrap: function( html ) {\n\t\tvar isFunction = jQuery.isFunction( html );\n\n\t\treturn this.each( function( i ) {\n\t\t\tjQuery( this ).wrapAll( isFunction ? html.call( this, i ) : html );\n\t\t} );\n\t},\n\n\tunwrap: function() {\n\t\treturn this.parent().each( function() {\n\t\t\tif ( !jQuery.nodeName( this, \"body\" ) ) {\n\t\t\t\tjQuery( this ).replaceWith( this.childNodes );\n\t\t\t}\n\t\t} ).end();\n\t}\n} );\n\n\njQuery.expr.filters.hidden = function( elem ) {\n\treturn !jQuery.expr.filters.visible( elem );\n};\njQuery.expr.filters.visible = function( elem ) {\n\n\t// Support: Opera <= 12.12\n\t// Opera reports offsetWidths and offsetHeights less than zero on some elements\n\t// Use OR instead of AND as the element is not visible if either is true\n\t// See tickets #10406 and #13132\n\treturn elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0;\n};\n\n\n\n\nvar r20 = /%20/g,\n\trbracket = /\\[\\]$/,\n\trCRLF = /\\r?\\n/g,\n\trsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n\trsubmittable = /^(?:input|select|textarea|keygen)/i;\n\nfunction buildParams( prefix, obj, traditional, add ) {\n\tvar name;\n\n\tif ( jQuery.isArray( obj ) ) {\n\n\t\t// Serialize array item.\n\t\tjQuery.each( obj, function( i, v ) {\n\t\t\tif ( traditional || rbracket.test( prefix ) ) {\n\n\t\t\t\t// Treat each array item as a scalar.\n\t\t\t\tadd( prefix, v );\n\n\t\t\t} else {\n\n\t\t\t\t// Item is non-scalar (array or object), encode its numeric index.\n\t\t\t\tbuildParams(\n\t\t\t\t\tprefix + \"[\" + ( typeof v === \"object\" && v != null ? i : \"\" ) + \"]\",\n\t\t\t\t\tv,\n\t\t\t\t\ttraditional,\n\t\t\t\t\tadd\n\t\t\t\t);\n\t\t\t}\n\t\t} );\n\n\t} else if ( !traditional && jQuery.type( obj ) === \"object\" ) {\n\n\t\t// Serialize object item.\n\t\tfor ( name in obj ) {\n\t\t\tbuildParams( prefix + \"[\" + name + \"]\", obj[ name ], traditional, add );\n\t\t}\n\n\t} else {\n\n\t\t// Serialize scalar item.\n\t\tadd( prefix, obj );\n\t}\n}\n\n// Serialize an array of form elements or a set of\n// key/values into a query string\njQuery.param = function( a, traditional ) {\n\tvar prefix,\n\t\ts = [],\n\t\tadd = function( key, value ) {\n\n\t\t\t// If value is a function, invoke it and return its value\n\t\t\tvalue = jQuery.isFunction( value ) ? value() : ( value == null ? \"\" : value );\n\t\t\ts[ s.length ] = encodeURIComponent( key ) + \"=\" + encodeURIComponent( value );\n\t\t};\n\n\t// Set traditional to true for jQuery <= 1.3.2 behavior.\n\tif ( traditional === undefined ) {\n\t\ttraditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional;\n\t}\n\n\t// If an array was passed in, assume that it is an array of form elements.\n\tif ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) {\n\n\t\t// Serialize the form elements\n\t\tjQuery.each( a, function() {\n\t\t\tadd( this.name, this.value );\n\t\t} );\n\n\t} else {\n\n\t\t// If traditional, encode the \"old\" way (the way 1.3.2 or older\n\t\t// did it), otherwise encode params recursively.\n\t\tfor ( prefix in a ) {\n\t\t\tbuildParams( prefix, a[ prefix ], traditional, add );\n\t\t}\n\t}\n\n\t// Return the resulting serialization\n\treturn s.join( \"&\" ).replace( r20, \"+\" );\n};\n\njQuery.fn.extend( {\n\tserialize: function() {\n\t\treturn jQuery.param( this.serializeArray() );\n\t},\n\tserializeArray: function() {\n\t\treturn this.map( function() {\n\n\t\t\t// Can add propHook for \"elements\" to filter or add form elements\n\t\t\tvar elements = jQuery.prop( this, \"elements\" );\n\t\t\treturn elements ? jQuery.makeArray( elements ) : this;\n\t\t} )\n\t\t.filter( function() {\n\t\t\tvar type = this.type;\n\n\t\t\t// Use .is( \":disabled\" ) so that fieldset[disabled] works\n\t\t\treturn this.name && !jQuery( this ).is( \":disabled\" ) &&\n\t\t\t\trsubmittable.test( this.nodeName ) && !rsubmitterTypes.test( type ) &&\n\t\t\t\t( this.checked || !rcheckableType.test( type ) );\n\t\t} )\n\t\t.map( function( i, elem ) {\n\t\t\tvar val = jQuery( this ).val();\n\n\t\t\treturn val == null ?\n\t\t\t\tnull :\n\t\t\t\tjQuery.isArray( val ) ?\n\t\t\t\t\tjQuery.map( val, function( val ) {\n\t\t\t\t\t\treturn { name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t\t\t\t} ) :\n\t\t\t\t\t{ name: elem.name, value: val.replace( rCRLF, \"\\r\\n\" ) };\n\t\t} ).get();\n\t}\n} );\n\n\njQuery.ajaxSettings.xhr = function() {\n\ttry {\n\t\treturn new window.XMLHttpRequest();\n\t} catch ( e ) {}\n};\n\nvar xhrSuccessStatus = {\n\n\t\t// File protocol always yields status code 0, assume 200\n\t\t0: 200,\n\n\t\t// Support: IE9\n\t\t// #1450: sometimes IE returns 1223 when it should be 204\n\t\t1223: 204\n\t},\n\txhrSupported = jQuery.ajaxSettings.xhr();\n\nsupport.cors = !!xhrSupported && ( \"withCredentials\" in xhrSupported );\nsupport.ajax = xhrSupported = !!xhrSupported;\n\njQuery.ajaxTransport( function( options ) {\n\tvar callback, errorCallback;\n\n\t// Cross domain only allowed if supported through XMLHttpRequest\n\tif ( support.cors || xhrSupported && !options.crossDomain ) {\n\t\treturn {\n\t\t\tsend: function( headers, complete ) {\n\t\t\t\tvar i,\n\t\t\t\t\txhr = options.xhr();\n\n\t\t\t\txhr.open(\n\t\t\t\t\toptions.type,\n\t\t\t\t\toptions.url,\n\t\t\t\t\toptions.async,\n\t\t\t\t\toptions.username,\n\t\t\t\t\toptions.password\n\t\t\t\t);\n\n\t\t\t\t// Apply custom fields if provided\n\t\t\t\tif ( options.xhrFields ) {\n\t\t\t\t\tfor ( i in options.xhrFields ) {\n\t\t\t\t\t\txhr[ i ] = options.xhrFields[ i ];\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Override mime type if needed\n\t\t\t\tif ( options.mimeType && xhr.overrideMimeType ) {\n\t\t\t\t\txhr.overrideMimeType( options.mimeType );\n\t\t\t\t}\n\n\t\t\t\t// X-Requested-With header\n\t\t\t\t// For cross-domain requests, seeing as conditions for a preflight are\n\t\t\t\t// akin to a jigsaw puzzle, we simply never set it to be sure.\n\t\t\t\t// (it can always be set on a per-request basis or even using ajaxSetup)\n\t\t\t\t// For same-domain requests, won't change header if already provided.\n\t\t\t\tif ( !options.crossDomain && !headers[ \"X-Requested-With\" ] ) {\n\t\t\t\t\theaders[ \"X-Requested-With\" ] = \"XMLHttpRequest\";\n\t\t\t\t}\n\n\t\t\t\t// Set headers\n\t\t\t\tfor ( i in headers ) {\n\t\t\t\t\txhr.setRequestHeader( i, headers[ i ] );\n\t\t\t\t}\n\n\t\t\t\t// Callback\n\t\t\t\tcallback = function( type ) {\n\t\t\t\t\treturn function() {\n\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\tcallback = errorCallback = xhr.onload =\n\t\t\t\t\t\t\t\txhr.onerror = xhr.onabort = xhr.onreadystatechange = null;\n\n\t\t\t\t\t\t\tif ( type === \"abort\" ) {\n\t\t\t\t\t\t\t\txhr.abort();\n\t\t\t\t\t\t\t} else if ( type === \"error\" ) {\n\n\t\t\t\t\t\t\t\t// Support: IE9\n\t\t\t\t\t\t\t\t// On a manual native abort, IE9 throws\n\t\t\t\t\t\t\t\t// errors on any property access that is not readyState\n\t\t\t\t\t\t\t\tif ( typeof xhr.status !== \"number\" ) {\n\t\t\t\t\t\t\t\t\tcomplete( 0, \"error\" );\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tcomplete(\n\n\t\t\t\t\t\t\t\t\t\t// File: protocol always yields status 0; see #8605, #14207\n\t\t\t\t\t\t\t\t\t\txhr.status,\n\t\t\t\t\t\t\t\t\t\txhr.statusText\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\tcomplete(\n\t\t\t\t\t\t\t\t\txhrSuccessStatus[ xhr.status ] || xhr.status,\n\t\t\t\t\t\t\t\t\txhr.statusText,\n\n\t\t\t\t\t\t\t\t\t// Support: IE9 only\n\t\t\t\t\t\t\t\t\t// IE9 has no XHR2 but throws on binary (trac-11426)\n\t\t\t\t\t\t\t\t\t// For XHR2 non-text, let the caller handle it (gh-2498)\n\t\t\t\t\t\t\t\t\t( xhr.responseType || \"text\" ) !== \"text\"  ||\n\t\t\t\t\t\t\t\t\ttypeof xhr.responseText !== \"string\" ?\n\t\t\t\t\t\t\t\t\t\t{ binary: xhr.response } :\n\t\t\t\t\t\t\t\t\t\t{ text: xhr.responseText },\n\t\t\t\t\t\t\t\t\txhr.getAllResponseHeaders()\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t};\n\n\t\t\t\t// Listen to events\n\t\t\t\txhr.onload = callback();\n\t\t\t\terrorCallback = xhr.onerror = callback( \"error\" );\n\n\t\t\t\t// Support: IE9\n\t\t\t\t// Use onreadystatechange to replace onabort\n\t\t\t\t// to handle uncaught aborts\n\t\t\t\tif ( xhr.onabort !== undefined ) {\n\t\t\t\t\txhr.onabort = errorCallback;\n\t\t\t\t} else {\n\t\t\t\t\txhr.onreadystatechange = function() {\n\n\t\t\t\t\t\t// Check readyState before timeout as it changes\n\t\t\t\t\t\tif ( xhr.readyState === 4 ) {\n\n\t\t\t\t\t\t\t// Allow onerror to be called first,\n\t\t\t\t\t\t\t// but that will not handle a native abort\n\t\t\t\t\t\t\t// Also, save errorCallback to a variable\n\t\t\t\t\t\t\t// as xhr.onerror cannot be accessed\n\t\t\t\t\t\t\twindow.setTimeout( function() {\n\t\t\t\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\t\t\t\terrorCallback();\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} );\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\t\t\t\t}\n\n\t\t\t\t// Create the abort callback\n\t\t\t\tcallback = callback( \"abort\" );\n\n\t\t\t\ttry {\n\n\t\t\t\t\t// Do send the request (this may raise an exception)\n\t\t\t\t\txhr.send( options.hasContent && options.data || null );\n\t\t\t\t} catch ( e ) {\n\n\t\t\t\t\t// #14683: Only rethrow if this hasn't been notified as an error yet\n\t\t\t\t\tif ( callback ) {\n\t\t\t\t\t\tthrow e;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\n// Install script dataType\njQuery.ajaxSetup( {\n\taccepts: {\n\t\tscript: \"text/javascript, application/javascript, \" +\n\t\t\t\"application/ecmascript, application/x-ecmascript\"\n\t},\n\tcontents: {\n\t\tscript: /\\b(?:java|ecma)script\\b/\n\t},\n\tconverters: {\n\t\t\"text script\": function( text ) {\n\t\t\tjQuery.globalEval( text );\n\t\t\treturn text;\n\t\t}\n\t}\n} );\n\n// Handle cache's special case and crossDomain\njQuery.ajaxPrefilter( \"script\", function( s ) {\n\tif ( s.cache === undefined ) {\n\t\ts.cache = false;\n\t}\n\tif ( s.crossDomain ) {\n\t\ts.type = \"GET\";\n\t}\n} );\n\n// Bind script tag hack transport\njQuery.ajaxTransport( \"script\", function( s ) {\n\n\t// This transport only deals with cross domain requests\n\tif ( s.crossDomain ) {\n\t\tvar script, callback;\n\t\treturn {\n\t\t\tsend: function( _, complete ) {\n\t\t\t\tscript = jQuery( \"<script>\" ).prop( {\n\t\t\t\t\tcharset: s.scriptCharset,\n\t\t\t\t\tsrc: s.url\n\t\t\t\t} ).on(\n\t\t\t\t\t\"load error\",\n\t\t\t\t\tcallback = function( evt ) {\n\t\t\t\t\t\tscript.remove();\n\t\t\t\t\t\tcallback = null;\n\t\t\t\t\t\tif ( evt ) {\n\t\t\t\t\t\t\tcomplete( evt.type === \"error\" ? 404 : 200, evt.type );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t);\n\n\t\t\t\t// Use native DOM manipulation to avoid our domManip AJAX trickery\n\t\t\t\tdocument.head.appendChild( script[ 0 ] );\n\t\t\t},\n\t\t\tabort: function() {\n\t\t\t\tif ( callback ) {\n\t\t\t\t\tcallback();\n\t\t\t\t}\n\t\t\t}\n\t\t};\n\t}\n} );\n\n\n\n\nvar oldCallbacks = [],\n\trjsonp = /(=)\\?(?=&|$)|\\?\\?/;\n\n// Default jsonp settings\njQuery.ajaxSetup( {\n\tjsonp: \"callback\",\n\tjsonpCallback: function() {\n\t\tvar callback = oldCallbacks.pop() || ( jQuery.expando + \"_\" + ( nonce++ ) );\n\t\tthis[ callback ] = true;\n\t\treturn callback;\n\t}\n} );\n\n// Detect, normalize options and install callbacks for jsonp requests\njQuery.ajaxPrefilter( \"json jsonp\", function( s, originalSettings, jqXHR ) {\n\n\tvar callbackName, overwritten, responseContainer,\n\t\tjsonProp = s.jsonp !== false && ( rjsonp.test( s.url ) ?\n\t\t\t\"url\" :\n\t\t\ttypeof s.data === \"string\" &&\n\t\t\t\t( s.contentType || \"\" )\n\t\t\t\t\t.indexOf( \"application/x-www-form-urlencoded\" ) === 0 &&\n\t\t\t\trjsonp.test( s.data ) && \"data\"\n\t\t);\n\n\t// Handle iff the expected data type is \"jsonp\" or we have a parameter to set\n\tif ( jsonProp || s.dataTypes[ 0 ] === \"jsonp\" ) {\n\n\t\t// Get callback name, remembering preexisting value associated with it\n\t\tcallbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ?\n\t\t\ts.jsonpCallback() :\n\t\t\ts.jsonpCallback;\n\n\t\t// Insert callback into url or form data\n\t\tif ( jsonProp ) {\n\t\t\ts[ jsonProp ] = s[ jsonProp ].replace( rjsonp, \"$1\" + callbackName );\n\t\t} else if ( s.jsonp !== false ) {\n\t\t\ts.url += ( rquery.test( s.url ) ? \"&\" : \"?\" ) + s.jsonp + \"=\" + callbackName;\n\t\t}\n\n\t\t// Use data converter to retrieve json after script execution\n\t\ts.converters[ \"script json\" ] = function() {\n\t\t\tif ( !responseContainer ) {\n\t\t\t\tjQuery.error( callbackName + \" was not called\" );\n\t\t\t}\n\t\t\treturn responseContainer[ 0 ];\n\t\t};\n\n\t\t// Force json dataType\n\t\ts.dataTypes[ 0 ] = \"json\";\n\n\t\t// Install callback\n\t\toverwritten = window[ callbackName ];\n\t\twindow[ callbackName ] = function() {\n\t\t\tresponseContainer = arguments;\n\t\t};\n\n\t\t// Clean-up function (fires after converters)\n\t\tjqXHR.always( function() {\n\n\t\t\t// If previous value didn't exist - remove it\n\t\t\tif ( overwritten === undefined ) {\n\t\t\t\tjQuery( window ).removeProp( callbackName );\n\n\t\t\t// Otherwise restore preexisting value\n\t\t\t} else {\n\t\t\t\twindow[ callbackName ] = overwritten;\n\t\t\t}\n\n\t\t\t// Save back as free\n\t\t\tif ( s[ callbackName ] ) {\n\n\t\t\t\t// Make sure that re-using the options doesn't screw things around\n\t\t\t\ts.jsonpCallback = originalSettings.jsonpCallback;\n\n\t\t\t\t// Save the callback name for future use\n\t\t\t\toldCallbacks.push( callbackName );\n\t\t\t}\n\n\t\t\t// Call if it was a function and we have a response\n\t\t\tif ( responseContainer && jQuery.isFunction( overwritten ) ) {\n\t\t\t\toverwritten( responseContainer[ 0 ] );\n\t\t\t}\n\n\t\t\tresponseContainer = overwritten = undefined;\n\t\t} );\n\n\t\t// Delegate to script\n\t\treturn \"script\";\n\t}\n} );\n\n\n\n\n// Argument \"data\" should be string of html\n// context (optional): If specified, the fragment will be created in this context,\n// defaults to document\n// keepScripts (optional): If true, will include scripts passed in the html string\njQuery.parseHTML = function( data, context, keepScripts ) {\n\tif ( !data || typeof data !== \"string\" ) {\n\t\treturn null;\n\t}\n\tif ( typeof context === \"boolean\" ) {\n\t\tkeepScripts = context;\n\t\tcontext = false;\n\t}\n\tcontext = context || document;\n\n\tvar parsed = rsingleTag.exec( data ),\n\t\tscripts = !keepScripts && [];\n\n\t// Single tag\n\tif ( parsed ) {\n\t\treturn [ context.createElement( parsed[ 1 ] ) ];\n\t}\n\n\tparsed = buildFragment( [ data ], context, scripts );\n\n\tif ( scripts && scripts.length ) {\n\t\tjQuery( scripts ).remove();\n\t}\n\n\treturn jQuery.merge( [], parsed.childNodes );\n};\n\n\n// Keep a copy of the old load method\nvar _load = jQuery.fn.load;\n\n/**\n * Load a url into a page\n */\njQuery.fn.load = function( url, params, callback ) {\n\tif ( typeof url !== \"string\" && _load ) {\n\t\treturn _load.apply( this, arguments );\n\t}\n\n\tvar selector, type, response,\n\t\tself = this,\n\t\toff = url.indexOf( \" \" );\n\n\tif ( off > -1 ) {\n\t\tselector = jQuery.trim( url.slice( off ) );\n\t\turl = url.slice( 0, off );\n\t}\n\n\t// If it's a function\n\tif ( jQuery.isFunction( params ) ) {\n\n\t\t// We assume that it's the callback\n\t\tcallback = params;\n\t\tparams = undefined;\n\n\t// Otherwise, build a param string\n\t} else if ( params && typeof params === \"object\" ) {\n\t\ttype = \"POST\";\n\t}\n\n\t// If we have elements to modify, make the request\n\tif ( self.length > 0 ) {\n\t\tjQuery.ajax( {\n\t\t\turl: url,\n\n\t\t\t// If \"type\" variable is undefined, then \"GET\" method will be used.\n\t\t\t// Make value of this field explicit since\n\t\t\t// user can override it through ajaxSetup method\n\t\t\ttype: type || \"GET\",\n\t\t\tdataType: \"html\",\n\t\t\tdata: params\n\t\t} ).done( function( responseText ) {\n\n\t\t\t// Save response for use in complete callback\n\t\t\tresponse = arguments;\n\n\t\t\tself.html( selector ?\n\n\t\t\t\t// If a selector was specified, locate the right elements in a dummy div\n\t\t\t\t// Exclude scripts to avoid IE 'Permission Denied' errors\n\t\t\t\tjQuery( \"<div>\" ).append( jQuery.parseHTML( responseText ) ).find( selector ) :\n\n\t\t\t\t// Otherwise use the full result\n\t\t\t\tresponseText );\n\n\t\t// If the request succeeds, this function gets \"data\", \"status\", \"jqXHR\"\n\t\t// but they are ignored because response was set above.\n\t\t// If it fails, this function gets \"jqXHR\", \"status\", \"error\"\n\t\t} ).always( callback && function( jqXHR, status ) {\n\t\t\tself.each( function() {\n\t\t\t\tcallback.apply( this, response || [ jqXHR.responseText, status, jqXHR ] );\n\t\t\t} );\n\t\t} );\n\t}\n\n\treturn this;\n};\n\n\n\n\n// Attach a bunch of functions for handling common AJAX events\njQuery.each( [\n\t\"ajaxStart\",\n\t\"ajaxStop\",\n\t\"ajaxComplete\",\n\t\"ajaxError\",\n\t\"ajaxSuccess\",\n\t\"ajaxSend\"\n], function( i, type ) {\n\tjQuery.fn[ type ] = function( fn ) {\n\t\treturn this.on( type, fn );\n\t};\n} );\n\n\n\n\njQuery.expr.filters.animated = function( elem ) {\n\treturn jQuery.grep( jQuery.timers, function( fn ) {\n\t\treturn elem === fn.elem;\n\t} ).length;\n};\n\n\n\n\n/**\n * Gets a window from an element\n */\nfunction getWindow( elem ) {\n\treturn jQuery.isWindow( elem ) ? elem : elem.nodeType === 9 && elem.defaultView;\n}\n\njQuery.offset = {\n\tsetOffset: function( elem, options, i ) {\n\t\tvar curPosition, curLeft, curCSSTop, curTop, curOffset, curCSSLeft, calculatePosition,\n\t\t\tposition = jQuery.css( elem, \"position\" ),\n\t\t\tcurElem = jQuery( elem ),\n\t\t\tprops = {};\n\n\t\t// Set position first, in-case top/left are set even on static elem\n\t\tif ( position === \"static\" ) {\n\t\t\telem.style.position = \"relative\";\n\t\t}\n\n\t\tcurOffset = curElem.offset();\n\t\tcurCSSTop = jQuery.css( elem, \"top\" );\n\t\tcurCSSLeft = jQuery.css( elem, \"left\" );\n\t\tcalculatePosition = ( position === \"absolute\" || position === \"fixed\" ) &&\n\t\t\t( curCSSTop + curCSSLeft ).indexOf( \"auto\" ) > -1;\n\n\t\t// Need to be able to calculate position if either\n\t\t// top or left is auto and position is either absolute or fixed\n\t\tif ( calculatePosition ) {\n\t\t\tcurPosition = curElem.position();\n\t\t\tcurTop = curPosition.top;\n\t\t\tcurLeft = curPosition.left;\n\n\t\t} else {\n\t\t\tcurTop = parseFloat( curCSSTop ) || 0;\n\t\t\tcurLeft = parseFloat( curCSSLeft ) || 0;\n\t\t}\n\n\t\tif ( jQuery.isFunction( options ) ) {\n\n\t\t\t// Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n\t\t\toptions = options.call( elem, i, jQuery.extend( {}, curOffset ) );\n\t\t}\n\n\t\tif ( options.top != null ) {\n\t\t\tprops.top = ( options.top - curOffset.top ) + curTop;\n\t\t}\n\t\tif ( options.left != null ) {\n\t\t\tprops.left = ( options.left - curOffset.left ) + curLeft;\n\t\t}\n\n\t\tif ( \"using\" in options ) {\n\t\t\toptions.using.call( elem, props );\n\n\t\t} else {\n\t\t\tcurElem.css( props );\n\t\t}\n\t}\n};\n\njQuery.fn.extend( {\n\toffset: function( options ) {\n\t\tif ( arguments.length ) {\n\t\t\treturn options === undefined ?\n\t\t\t\tthis :\n\t\t\t\tthis.each( function( i ) {\n\t\t\t\t\tjQuery.offset.setOffset( this, options, i );\n\t\t\t\t} );\n\t\t}\n\n\t\tvar docElem, win,\n\t\t\telem = this[ 0 ],\n\t\t\tbox = { top: 0, left: 0 },\n\t\t\tdoc = elem && elem.ownerDocument;\n\n\t\tif ( !doc ) {\n\t\t\treturn;\n\t\t}\n\n\t\tdocElem = doc.documentElement;\n\n\t\t// Make sure it's not a disconnected DOM node\n\t\tif ( !jQuery.contains( docElem, elem ) ) {\n\t\t\treturn box;\n\t\t}\n\n\t\tbox = elem.getBoundingClientRect();\n\t\twin = getWindow( doc );\n\t\treturn {\n\t\t\ttop: box.top + win.pageYOffset - docElem.clientTop,\n\t\t\tleft: box.left + win.pageXOffset - docElem.clientLeft\n\t\t};\n\t},\n\n\tposition: function() {\n\t\tif ( !this[ 0 ] ) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar offsetParent, offset,\n\t\t\telem = this[ 0 ],\n\t\t\tparentOffset = { top: 0, left: 0 };\n\n\t\t// Fixed elements are offset from window (parentOffset = {top:0, left: 0},\n\t\t// because it is its only offset parent\n\t\tif ( jQuery.css( elem, \"position\" ) === \"fixed\" ) {\n\n\t\t\t// Assume getBoundingClientRect is there when computed position is fixed\n\t\t\toffset = elem.getBoundingClientRect();\n\n\t\t} else {\n\n\t\t\t// Get *real* offsetParent\n\t\t\toffsetParent = this.offsetParent();\n\n\t\t\t// Get correct offsets\n\t\t\toffset = this.offset();\n\t\t\tif ( !jQuery.nodeName( offsetParent[ 0 ], \"html\" ) ) {\n\t\t\t\tparentOffset = offsetParent.offset();\n\t\t\t}\n\n\t\t\t// Add offsetParent borders\n\t\t\tparentOffset.top += jQuery.css( offsetParent[ 0 ], \"borderTopWidth\", true );\n\t\t\tparentOffset.left += jQuery.css( offsetParent[ 0 ], \"borderLeftWidth\", true );\n\t\t}\n\n\t\t// Subtract parent offsets and element margins\n\t\treturn {\n\t\t\ttop: offset.top - parentOffset.top - jQuery.css( elem, \"marginTop\", true ),\n\t\t\tleft: offset.left - parentOffset.left - jQuery.css( elem, \"marginLeft\", true )\n\t\t};\n\t},\n\n\t// This method will return documentElement in the following cases:\n\t// 1) For the element inside the iframe without offsetParent, this method will return\n\t//    documentElement of the parent window\n\t// 2) For the hidden or detached element\n\t// 3) For body or html element, i.e. in case of the html node - it will return itself\n\t//\n\t// but those exceptions were never presented as a real life use-cases\n\t// and might be considered as more preferable results.\n\t//\n\t// This logic, however, is not guaranteed and can change at any point in the future\n\toffsetParent: function() {\n\t\treturn this.map( function() {\n\t\t\tvar offsetParent = this.offsetParent;\n\n\t\t\twhile ( offsetParent && jQuery.css( offsetParent, \"position\" ) === \"static\" ) {\n\t\t\t\toffsetParent = offsetParent.offsetParent;\n\t\t\t}\n\n\t\t\treturn offsetParent || documentElement;\n\t\t} );\n\t}\n} );\n\n// Create scrollLeft and scrollTop methods\njQuery.each( { scrollLeft: \"pageXOffset\", scrollTop: \"pageYOffset\" }, function( method, prop ) {\n\tvar top = \"pageYOffset\" === prop;\n\n\tjQuery.fn[ method ] = function( val ) {\n\t\treturn access( this, function( elem, method, val ) {\n\t\t\tvar win = getWindow( elem );\n\n\t\t\tif ( val === undefined ) {\n\t\t\t\treturn win ? win[ prop ] : elem[ method ];\n\t\t\t}\n\n\t\t\tif ( win ) {\n\t\t\t\twin.scrollTo(\n\t\t\t\t\t!top ? val : win.pageXOffset,\n\t\t\t\t\ttop ? val : win.pageYOffset\n\t\t\t\t);\n\n\t\t\t} else {\n\t\t\t\telem[ method ] = val;\n\t\t\t}\n\t\t}, method, val, arguments.length );\n\t};\n} );\n\n// Support: Safari<7-8+, Chrome<37-44+\n// Add the top/left cssHooks using jQuery.fn.position\n// Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n// Blink bug: https://code.google.com/p/chromium/issues/detail?id=229280\n// getComputedStyle returns percent when specified for top/left/bottom/right;\n// rather than make the css module depend on the offset module, just check for it here\njQuery.each( [ \"top\", \"left\" ], function( i, prop ) {\n\tjQuery.cssHooks[ prop ] = addGetHookIf( support.pixelPosition,\n\t\tfunction( elem, computed ) {\n\t\t\tif ( computed ) {\n\t\t\t\tcomputed = curCSS( elem, prop );\n\n\t\t\t\t// If curCSS returns percentage, fallback to offset\n\t\t\t\treturn rnumnonpx.test( computed ) ?\n\t\t\t\t\tjQuery( elem ).position()[ prop ] + \"px\" :\n\t\t\t\t\tcomputed;\n\t\t\t}\n\t\t}\n\t);\n} );\n\n\n// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\njQuery.each( { Height: \"height\", Width: \"width\" }, function( name, type ) {\n\tjQuery.each( { padding: \"inner\" + name, content: type, \"\": \"outer\" + name },\n\t\tfunction( defaultExtra, funcName ) {\n\n\t\t// Margin is only for outerHeight, outerWidth\n\t\tjQuery.fn[ funcName ] = function( margin, value ) {\n\t\t\tvar chainable = arguments.length && ( defaultExtra || typeof margin !== \"boolean\" ),\n\t\t\t\textra = defaultExtra || ( margin === true || value === true ? \"margin\" : \"border\" );\n\n\t\t\treturn access( this, function( elem, type, value ) {\n\t\t\t\tvar doc;\n\n\t\t\t\tif ( jQuery.isWindow( elem ) ) {\n\n\t\t\t\t\t// As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there\n\t\t\t\t\t// isn't a whole lot we can do. See pull request at this URL for discussion:\n\t\t\t\t\t// https://github.com/jquery/jquery/pull/764\n\t\t\t\t\treturn elem.document.documentElement[ \"client\" + name ];\n\t\t\t\t}\n\n\t\t\t\t// Get document width or height\n\t\t\t\tif ( elem.nodeType === 9 ) {\n\t\t\t\t\tdoc = elem.documentElement;\n\n\t\t\t\t\t// Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n\t\t\t\t\t// whichever is greatest\n\t\t\t\t\treturn Math.max(\n\t\t\t\t\t\telem.body[ \"scroll\" + name ], doc[ \"scroll\" + name ],\n\t\t\t\t\t\telem.body[ \"offset\" + name ], doc[ \"offset\" + name ],\n\t\t\t\t\t\tdoc[ \"client\" + name ]\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\treturn value === undefined ?\n\n\t\t\t\t\t// Get width or height on the element, requesting but not forcing parseFloat\n\t\t\t\t\tjQuery.css( elem, type, extra ) :\n\n\t\t\t\t\t// Set width or height on the element\n\t\t\t\t\tjQuery.style( elem, type, value, extra );\n\t\t\t}, type, chainable ? margin : undefined, chainable, null );\n\t\t};\n\t} );\n} );\n\n\njQuery.fn.extend( {\n\n\tbind: function( types, data, fn ) {\n\t\treturn this.on( types, null, data, fn );\n\t},\n\tunbind: function( types, fn ) {\n\t\treturn this.off( types, null, fn );\n\t},\n\n\tdelegate: function( selector, types, data, fn ) {\n\t\treturn this.on( types, selector, data, fn );\n\t},\n\tundelegate: function( selector, types, fn ) {\n\n\t\t// ( namespace ) or ( selector, types [, fn] )\n\t\treturn arguments.length === 1 ?\n\t\t\tthis.off( selector, \"**\" ) :\n\t\t\tthis.off( types, selector || \"**\", fn );\n\t},\n\tsize: function() {\n\t\treturn this.length;\n\t}\n} );\n\njQuery.fn.andSelf = jQuery.fn.addBack;\n\n\n\n\n// Register as a named AMD module, since jQuery can be concatenated with other\n// files that may use define, but not via a proper concatenation script that\n// understands anonymous AMD modules. A named AMD is safest and most robust\n// way to register. Lowercase jquery is used because AMD module names are\n// derived from file names, and jQuery is normally delivered in a lowercase\n// file name. Do this after creating the global so that if an AMD module wants\n// to call noConflict to hide this version of jQuery, it will work.\n\n// Note that for maximum portability, libraries that are not jQuery should\n// declare themselves as anonymous modules, and avoid setting a global if an\n// AMD loader is present. jQuery is a special case. For more information, see\n// https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\nif ( typeof define === \"function\" && define.amd ) {\n\tdefine( \"jquery\", [], function() {\n\t\treturn jQuery;\n\t} );\n}\n\n\n\nvar\n\n\t// Map over jQuery in case of overwrite\n\t_jQuery = window.jQuery,\n\n\t// Map over the $ in case of overwrite\n\t_$ = window.$;\n\njQuery.noConflict = function( deep ) {\n\tif ( window.$ === jQuery ) {\n\t\twindow.$ = _$;\n\t}\n\n\tif ( deep && window.jQuery === jQuery ) {\n\t\twindow.jQuery = _jQuery;\n\t}\n\n\treturn jQuery;\n};\n\n// Expose jQuery and $ identifiers, even in AMD\n// (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n// and CommonJS for browser emulators (#13566)\nif ( !noGlobal ) {\n\twindow.jQuery = window.$ = jQuery;\n}\n\nreturn jQuery;\n}));\n"
  },
  {
    "path": "talk/lib/js/line-numbers.js",
    "content": "/**\n * Place this file in your Reveal.js presentation in 'lib/js/'.\n *\n * Add this javascript library to a reaveal.js presentation by adding it as a\n * dependency in Reveal.initialize.\n *\n * Reveal.initialize({\n *   ....\n *   dependencies: [\n *     ...\n *     {src: 'lib/js/line-numbers.js'}\n *   ]\n * })\n *\n */\n\n// Adding an event listener on slidechanged event to add line numbers to\n// code blocks.\nReveal.addEventListener('slidechanged', function(event) {\n    // For any code blocks in the current slide with class 'line-numbers'.\n    $('code.line-numbers').each(function(){\n        // Check ihighlight js has already run and not already added line numbers\n        if ($(this).hasClass('hljs') && ($(this).html().indexOf('class=\"line-number') < 1)) {\n            var leftpad = $(this).attr('data-leftpad') !== undefined;\n            var numStart = Number($(this).attr('data-num-start')) || 1;\n            // Get the content of the code block.\n            var content = $(this).html();\n            var lines = content.split(\"\\n\");\n            var linesWithNumbers = lines.map(function (line, index) {\n                var lineNumber = index + numStart;\n                var lineNumberString = String(lineNumber);\n                // leftpad for poor people\n                if ((lines.length > 9 || leftpad) && lineNumberString.length === 1) {\n                    lineNumberString = ' ' + lineNumberString;\n                }\n                var lineWithNumbers = '<span class=\"line-number\">' + lineNumberString + '  </span>' + line;\n                return lineWithNumbers;\n            });\n            var newContent = linesWithNumbers.join('\\n');\n            $(this).html(newContent);\n        }\n    });\n});\n\n"
  },
  {
    "path": "talk/reveal.js/.gitignore",
    "content": ".DS_Store\n.svn\nlog/*.log\ntmp/**\nnode_modules/\n.sass-cache\ncss/reveal.min.css\njs/reveal.min.js\n"
  },
  {
    "path": "talk/reveal.js/.travis.yml",
    "content": "language: node_js\nnode_js:\n  - 4.1.1\nbefore_script:\n  - npm install -g grunt-cli"
  },
  {
    "path": "talk/reveal.js/CONTRIBUTING.md",
    "content": "## Contributing\n\nPlease keep the [issue tracker](http://github.com/hakimel/reveal.js/issues) limited to **bug reports**, **feature requests** and **pull requests**.\n\n\n### Personal Support\nIf you have personal support or setup questions the best place to ask those are [StackOverflow](http://stackoverflow.com/questions/tagged/reveal.js).\n\n\n### Bug Reports\nWhen reporting a bug make sure to include information about which browser and operating system you are on as well as the necessary steps to reproduce the issue. If possible please include a link to a sample presentation where the bug can be tested.\n\n\n### Pull Requests\n- Should follow the coding style of the file you work in, most importantly:\n  - Tabs to indent\n  - Single-quoted strings\n- Should be made towards the **dev branch**\n- Should be submitted from a feature/topic branch (not your master)\n\n\n### Plugins\nPlease do not submit plugins as pull requests. They should be maintained in their own separate repository. More information here: https://github.com/hakimel/reveal.js/wiki/Plugin-Guidelines\n"
  },
  {
    "path": "talk/reveal.js/Gruntfile.js",
    "content": "/* global module:false */\nmodule.exports = function(grunt) {\n\tvar port = grunt.option('port') || 8000;\n\tvar base = grunt.option('base') || '.';\n\n\t// Project configuration\n\tgrunt.initConfig({\n\t\tpkg: grunt.file.readJSON('package.json'),\n\t\tmeta: {\n\t\t\tbanner:\n\t\t\t\t'/*!\\n' +\n\t\t\t\t' * reveal.js <%= pkg.version %> (<%= grunt.template.today(\"yyyy-mm-dd, HH:MM\") %>)\\n' +\n\t\t\t\t' * http://lab.hakim.se/reveal-js\\n' +\n\t\t\t\t' * MIT licensed\\n' +\n\t\t\t\t' *\\n' +\n\t\t\t\t' * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\\n' +\n\t\t\t\t' */'\n\t\t},\n\n\t\tqunit: {\n\t\t\tfiles: [ 'test/*.html' ]\n\t\t},\n\n\t\tuglify: {\n\t\t\toptions: {\n\t\t\t\tbanner: '<%= meta.banner %>\\n'\n\t\t\t},\n\t\t\tbuild: {\n\t\t\t\tsrc: 'js/reveal.js',\n\t\t\t\tdest: 'js/reveal.min.js'\n\t\t\t}\n\t\t},\n\n\t\tsass: {\n\t\t\tcore: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.css': 'css/reveal.scss',\n\t\t\t\t}\n\t\t\t},\n\t\t\tthemes: {\n\t\t\t\tfiles: [\n\t\t\t\t\t{\n\t\t\t\t\t\texpand: true,\n\t\t\t\t\t\tcwd: 'css/theme/source',\n\t\t\t\t\t\tsrc: ['*.scss'],\n\t\t\t\t\t\tdest: 'css/theme',\n\t\t\t\t\t\text: '.css'\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t},\n\n\t\tautoprefixer: {\n\t\t\tdist: {\n\t\t\t\tsrc: 'css/reveal.css'\n\t\t\t}\n\t\t},\n\n\t\tcssmin: {\n\t\t\tcompress: {\n\t\t\t\tfiles: {\n\t\t\t\t\t'css/reveal.min.css': [ 'css/reveal.css' ]\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tjshint: {\n\t\t\toptions: {\n\t\t\t\tcurly: false,\n\t\t\t\teqeqeq: true,\n\t\t\t\timmed: true,\n\t\t\t\tlatedef: true,\n\t\t\t\tnewcap: true,\n\t\t\t\tnoarg: true,\n\t\t\t\tsub: true,\n\t\t\t\tundef: true,\n\t\t\t\teqnull: true,\n\t\t\t\tbrowser: true,\n\t\t\t\texpr: true,\n\t\t\t\tglobals: {\n\t\t\t\t\thead: false,\n\t\t\t\t\tmodule: false,\n\t\t\t\t\tconsole: false,\n\t\t\t\t\tunescape: false,\n\t\t\t\t\tdefine: false,\n\t\t\t\t\texports: false\n\t\t\t\t}\n\t\t\t},\n\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ]\n\t\t},\n\n\t\tconnect: {\n\t\t\tserver: {\n\t\t\t\toptions: {\n\t\t\t\t\tport: port,\n\t\t\t\t\tbase: base,\n\t\t\t\t\tlivereload: true,\n\t\t\t\t\topen: true\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\tzip: {\n\t\t\t'reveal-js-presentation.zip': [\n\t\t\t\t'index.html',\n\t\t\t\t'css/**',\n\t\t\t\t'js/**',\n\t\t\t\t'lib/**',\n\t\t\t\t'images/**',\n\t\t\t\t'plugin/**',\n\t\t\t\t'**.md'\n\t\t\t]\n\t\t},\n\n\t\twatch: {\n\t\t\toptions: {\n\t\t\t\tlivereload: true\n\t\t\t},\n\t\t\tjs: {\n\t\t\t\tfiles: [ 'Gruntfile.js', 'js/reveal.js' ],\n\t\t\t\ttasks: 'js'\n\t\t\t},\n\t\t\ttheme: {\n\t\t\t\tfiles: [ 'css/theme/source/*.scss', 'css/theme/template/*.scss' ],\n\t\t\t\ttasks: 'css-themes'\n\t\t\t},\n\t\t\tcss: {\n\t\t\t\tfiles: [ 'css/reveal.scss' ],\n\t\t\t\ttasks: 'css-core'\n\t\t\t},\n\t\t\thtml: {\n\t\t\t\tfiles: [ 'index.html']\n\t\t\t},\n\t\t\tmarkdown: {\n\t\t\t\tfiles: [ './*.md' ]\n\t\t\t}\n\t\t}\n\n\t});\n\n\t// Dependencies\n\tgrunt.loadNpmTasks( 'grunt-contrib-qunit' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-jshint' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-cssmin' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-uglify' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-watch' );\n\tgrunt.loadNpmTasks( 'grunt-sass' );\n\tgrunt.loadNpmTasks( 'grunt-contrib-connect' );\n\tgrunt.loadNpmTasks( 'grunt-autoprefixer' );\n\tgrunt.loadNpmTasks( 'grunt-zip' );\n\n\t// Default task\n\tgrunt.registerTask( 'default', [ 'css', 'js' ] );\n\n\t// JS task\n\tgrunt.registerTask( 'js', [ 'jshint', 'uglify', 'qunit' ] );\n\n\t// Theme CSS\n\tgrunt.registerTask( 'css-themes', [ 'sass:themes' ] );\n\n\t// Core framework CSS\n\tgrunt.registerTask( 'css-core', [ 'sass:core', 'autoprefixer', 'cssmin' ] );\n\n\t// All CSS\n\tgrunt.registerTask( 'css', [ 'sass', 'autoprefixer', 'cssmin' ] );\n\n\t// Package presentation to archive\n\tgrunt.registerTask( 'package', [ 'default', 'zip' ] );\n\n\t// Serve presentation locally\n\tgrunt.registerTask( 'serve', [ 'connect', 'watch' ] );\n\n\t// Run tests\n\tgrunt.registerTask( 'test', [ 'jshint', 'qunit' ] );\n\n};\n"
  },
  {
    "path": "talk/reveal.js/LICENSE",
    "content": "Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "talk/reveal.js/README.md",
    "content": "# reveal.js [![Build Status](https://travis-ci.org/hakimel/reveal.js.svg?branch=master)](https://travis-ci.org/hakimel/reveal.js)\n\nA framework for easily creating beautiful presentations using HTML. [Check out the live demo](http://lab.hakim.se/reveal-js/).\n\nreveal.js comes with a broad range of features including [nested slides](https://github.com/hakimel/reveal.js#markup), [Markdown contents](https://github.com/hakimel/reveal.js#markdown), [PDF export](https://github.com/hakimel/reveal.js#pdf-export), [speaker notes](https://github.com/hakimel/reveal.js#speaker-notes) and a [JavaScript API](https://github.com/hakimel/reveal.js#api). It's best viewed in a modern browser but [fallbacks](https://github.com/hakimel/reveal.js/wiki/Browser-Support) are available to make sure your presentation can still be viewed elsewhere.\n\n\n#### More reading:\n- [Installation](#installation): Step-by-step instructions for getting reveal.js running on your computer.\n- [Changelog](https://github.com/hakimel/reveal.js/releases): Up-to-date version history.\n- [Examples](https://github.com/hakimel/reveal.js/wiki/Example-Presentations): Presentations created with reveal.js, add your own!\n- [Browser Support](https://github.com/hakimel/reveal.js/wiki/Browser-Support): Explanation of browser support and fallbacks.\n- [Plugins](https://github.com/hakimel/reveal.js/wiki/Plugins,-Tools-and-Hardware): A list of plugins that can be used to extend reveal.js.\n\n## Online Editor\n\nPresentations are written using HTML or Markdown but there's also an online editor for those of you who prefer a graphical interface. Give it a try at [http://slides.com](http://slides.com).\n\n\n## Instructions\n\n### Markup\n\nMarkup hierarchy needs to be ``<div class=\"reveal\"> <div class=\"slides\"> <section>`` where the ``<section>`` represents one slide and can be repeated indefinitely. If you place multiple ``<section>``'s inside of another ``<section>`` they will be shown as vertical slides. The first of the vertical slides is the \"root\" of the others (at the top), and it will be included in the horizontal sequence. For example:\n\n```html\n<div class=\"reveal\">\n\t<div class=\"slides\">\n\t\t<section>Single Horizontal Slide</section>\n\t\t<section>\n\t\t\t<section>Vertical Slide 1</section>\n\t\t\t<section>Vertical Slide 2</section>\n\t\t</section>\n\t</div>\n</div>\n```\n\n### Markdown\n\nIt's possible to write your slides using Markdown. To enable Markdown, add the ```data-markdown``` attribute to your ```<section>``` elements and wrap the contents in a ```<script type=\"text/template\">``` like the example below.\n\nThis is based on [data-markdown](https://gist.github.com/1343518) from [Paul Irish](https://github.com/paulirish) modified to use [marked](https://github.com/chjj/marked) to support [Github Flavoured Markdown](https://help.github.com/articles/github-flavored-markdown). Sensitive to indentation (avoid mixing tabs and spaces) and line breaks (avoid consecutive breaks).\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t## Page title\n\n\t\tA paragraph with some text and a [link](http://hakim.se).\n\t</script>\n</section>\n```\n\n#### External Markdown\n\nYou can write your content as a separate file and have reveal.js load it at runtime. Note the separator arguments which determine how slides are delimited in the external file. The ```data-charset``` attribute is optional and specifies which charset to use when loading the external file.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section data-markdown=\"example.md\"  \n         data-separator=\"^\\n\\n\\n\"  \n         data-separator-vertical=\"^\\n\\n\"  \n         data-separator-notes=\"^Note:\"  \n         data-charset=\"iso-8859-15\">\n</section>\n```\n\n#### Element Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to Markdown elements. This is useful for fragments, amongst other things.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t\t- Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n\t\t- Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n\t</script>\n</section>\n```\n\n#### Slide Attributes\n\nSpecial syntax (in html comment) is available for adding attributes to the slide `<section>` elements generated by your Markdown.\n\n```html\n<section data-markdown>\n\t<script type=\"text/template\">\n\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\tMarkdown content\n\t</script>\n</section>\n```\n\n\n### Configuration\n\nAt the end of your page you need to initialize reveal by running the following code. Note that all config values are optional and will default as specified below.\n\n```javascript\nReveal.initialize({\n\n\t// Display controls in the bottom right corner\n\tcontrols: true,\n\n\t// Display a presentation progress bar\n\tprogress: true,\n\n\t// Display the page number of the current slide\n\tslideNumber: false,\n\n\t// Push each slide change to the browser history\n\thistory: false,\n\n\t// Enable keyboard shortcuts for navigation\n\tkeyboard: true,\n\n\t// Enable the slide overview mode\n\toverview: true,\n\n\t// Vertical centering of slides\n\tcenter: true,\n\n\t// Enables touch navigation on devices with touch input\n\ttouch: true,\n\n\t// Loop the presentation\n\tloop: false,\n\n\t// Change the presentation direction to be RTL\n\trtl: false,\n\n\t// Turns fragments on and off globally\n\tfragments: true,\n\n\t// Flags if the presentation is running in an embedded mode,\n\t// i.e. contained within a limited portion of the screen\n\tembedded: false,\n\n\t// Flags if we should show a help overlay when the questionmark\n\t// key is pressed\n\thelp: true,\n\n\t// Flags if speaker notes should be visible to all viewers\n\tshowNotes: false,\n\n\t// Number of milliseconds between automatically proceeding to the\n\t// next slide, disabled when set to 0, this value can be overwritten\n\t// by using a data-autoslide attribute on your slides\n\tautoSlide: 0,\n\n\t// Stop auto-sliding after user input\n\tautoSlideStoppable: true,\n\n\t// Enable slide navigation via mouse wheel\n\tmouseWheel: false,\n\n\t// Hides the address bar on mobile devices\n\thideAddressBar: true,\n\n\t// Opens links in an iframe preview overlay\n\tpreviewLinks: false,\n\n\t// Transition style\n\ttransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Transition speed\n\ttransitionSpeed: 'default', // default/fast/slow\n\n\t// Transition style for full page slide backgrounds\n\tbackgroundTransition: 'default', // none/fade/slide/convex/concave/zoom\n\n\t// Number of slides away from the current that are visible\n\tviewDistance: 3,\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg'\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\"\n\n\t// Amount to move parallax background (horizontal and vertical) on slide change\n\t// Number, e.g. 100\n\tparallaxBackgroundHorizontal: '',\n\tparallaxBackgroundVertical: ''\n\n});\n```\n\n\nThe configuration can be updated after initialization using the ```configure``` method:\n\n```javascript\n// Turn autoSlide off\nReveal.configure({ autoSlide: 0 });\n\n// Start auto-sliding every 5s\nReveal.configure({ autoSlide: 5000 });\n```\n\n\n### Presentation Size\n\nAll presentations have a normal size, that is the resolution at which they are authored. The framework will automatically scale presentations uniformly based on this size to ensure that everything fits on any given display or viewport.\n\nSee below for a list of configuration options related to sizing, including default values:\n\n```javascript\nReveal.initialize({\n\n\t...\n\n\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t// when the presentation is scaled to fit different resolutions. Can be\n\t// specified using percentage units.\n\twidth: 960,\n\theight: 700,\n\n\t// Factor of the display size that should remain empty around the content\n\tmargin: 0.1,\n\n\t// Bounds for smallest/largest possible scale to apply to content\n\tminScale: 0.2,\n\tmaxScale: 1.5\n\n});\n```\n\n\n### Dependencies\n\nReveal.js doesn't _rely_ on any third party scripts to work but a few optional libraries are included by default. These libraries are loaded as dependencies in the order they appear, for example:\n\n```javascript\nReveal.initialize({\n\tdependencies: [\n\t\t// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/\n\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\n\t\t// Interpret Markdown in <section> elements\n\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\n\t\t// Syntax highlight for <code> elements\n\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\n\t\t// Zoom in and out with Alt+click\n\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\n\t\t// Speaker notes\n\t\t{ src: 'plugin/notes/notes.js', async: true },\n\n\t\t// MathJax\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n});\n```\n\nYou can add your own extensions using the same syntax. The following properties are available for each dependency object:\n- **src**: Path to the script to load\n- **async**: [optional] Flags if the script should load after reveal.js has started, defaults to false\n- **callback**: [optional] Function to execute when the script has loaded\n- **condition**: [optional] Function which must return true for the script to be loaded\n\n\n### Ready Event\n\nA 'ready' event is fired when reveal.js has loaded all non-async dependencies and is ready to start navigating. To check if reveal.js is already 'ready' you can call `Reveal.isReady()`.\n\n```javascript\nReveal.addEventListener( 'ready', function( event ) {\n\t// event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n\n### Auto-sliding\n\nPresentations can be configured to progress through slides automatically, without any user input. To enable this you will need to tell the framework how many milliseconds it should wait between slides:\n\n```javascript\n// Slide every five seconds\nReveal.configure({\n  autoSlide: 5000\n});\n```\nWhen this is turned on a control element will appear that enables users to pause and resume auto-sliding. Alternatively, sliding can be paused or resumed by pressing »a« on the keyboard. Sliding is paused automatically as soon as the user starts navigating. You can disable these controls by specifying ```autoSlideStoppable: false``` in your reveal.js config.\n\nYou can also override the slide duration for individual slides and fragments by using the ```data-autoslide``` attribute:\n\n```html\n<section data-autoslide=\"2000\">\n\t<p>After 2 seconds the first fragment will be shown.</p>\n\t<p class=\"fragment\" data-autoslide=\"10000\">After 10 seconds the next fragment will be shown.</p>\n\t<p class=\"fragment\">Now, the fragment is displayed for 2 seconds before the next slide is shown.</p>\n</section>\n```\n\nWhenever the auto-slide mode is resumed or paused the ```autoslideresumed``` and ```autoslidepaused``` events are fired.\n\n\n### Keyboard Bindings\n\nIf you're unhappy with any of the default keyboard bindings you can override them using the ```keyboard``` config option:\n\n```javascript\nReveal.configure({\n  keyboard: {\n    13: 'next', // go to the next slide when the ENTER key is pressed\n    27: function() {}, // do something custom when ESC is pressed\n    32: null // don't do anything when SPACE is pressed (i.e. disable a reveal.js default binding)\n  }\n});\n```\n\n### Touch Navigation\n\nYou can swipe to navigate through a presentation on any touch-enabled device. Horizontal swipes change between horizontal slides, vertical swipes change between vertical slides. If you wish to disable this you can set the `touch` config option to false when initializing reveal.js.\n\nIf there's some part of your content that needs to remain accessible to touch events you'll need to highlight this by adding a `data-prevent-swipe` attribute to the element. One common example where this is useful is elements that need to be scrolled.\n\n\n### Lazy Loading\n\nWhen working on presentation with a lot of media or iframe content it's important to load lazily. Lazy loading means that reveal.js will only load content for the few slides nearest to the current slide. The number of slides that are preloaded is determined by the `viewDistance` configuration option.\n\nTo enable lazy loading all you need to do is change your \"src\" attributes to \"data-src\" as shown below. This is supported for image, video, audio and iframe elements. Lazy loaded iframes will also unload when the containing slide is no longer visible.\n\n```html\n<section>\n  <img data-src=\"image.png\">\n  <iframe data-src=\"http://hakim.se\"></iframe>\n  <video>\n    <source data-src=\"video.webm\" type=\"video/webm\" />\n    <source data-src=\"video.mp4\" type=\"video/mp4\" />\n  </video>\n</section>\n```\n\n\n### API\n\nThe ``Reveal`` object exposes a JavaScript API for controlling navigation and reading state:\n\n```javascript\n// Navigation\nReveal.slide( indexh, indexv, indexf );\nReveal.left();\nReveal.right();\nReveal.up();\nReveal.down();\nReveal.prev();\nReveal.next();\nReveal.prevFragment();\nReveal.nextFragment();\n\n// Toggle presentation states, optionally pass true/false to force on/off\nReveal.toggleOverview();\nReveal.togglePause();\nReveal.toggleAutoSlide();\n\n// Change a config value at runtime\nReveal.configure({ controls: true });\n\n// Returns the present configuration options\nReveal.getConfig();\n\n// Fetch the current scale of the presentation\nReveal.getScale();\n\n// Retrieves the previous and current slide elements\nReveal.getPreviousSlide();\nReveal.getCurrentSlide();\n\nReveal.getIndices(); // { h: 0, v: 0 } }\nReveal.getProgress(); // 0-1\nReveal.getTotalSlides();\n\n// Returns the speaker notes for the current slide\nReveal.getSlideNotes();\n\n// State checks\nReveal.isFirstSlide();\nReveal.isLastSlide();\nReveal.isOverview();\nReveal.isPaused();\nReveal.isAutoSliding();\n```\n\n### Slide Changed Event\n\nA 'slidechanged' event is fired each time the slide is changed (regardless of state). The event object holds the index values of the current slide as well as a reference to the previous and current slide HTML nodes.\n\nSome libraries, like MathJax (see [#226](https://github.com/hakimel/reveal.js/issues/226#issuecomment-10261609)), get confused by the transforms and display states of slides. Often times, this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'slidechanged', function( event ) {\n\t// event.previousSlide, event.currentSlide, event.indexh, event.indexv\n} );\n```\n\n### Presentation State\n\nThe presentation's current state can be fetched by using the `getState` method. A state object contains all of the information required to put the presentation back as it was when `getState` was first called. Sort of like a snapshot. It's a simple object that can easily be stringified and persisted or sent over the wire.\n\n```javascript\nReveal.slide( 1 );\n// we're on slide 1\n\nvar state = Reveal.getState();\n\nReveal.slide( 3 );\n// we're on slide 3\n\nReveal.setState( state );\n// we're back on slide 1\n```\n\n### Slide States\n\nIf you set ``data-state=\"somestate\"`` on a slide ``<section>``, \"somestate\" will be applied as a class on the document element when that slide is opened. This allows you to apply broad style changes to the page based on the active slide.\n\nFurthermore you can also listen to these changes in state via JavaScript:\n\n```javascript\nReveal.addEventListener( 'somestate', function() {\n\t// TODO: Sprinkle magic\n}, false );\n```\n\n### Slide Backgrounds\n\nSlides are contained within a limited portion of the screen by default to allow them to fit any display and scale uniformly. You can apply full page backgrounds outside of the slide area by adding a ```data-background``` attribute to your ```<section>``` elements. Four different types of backgrounds are supported: color, image, video and iframe. Below are a few examples.\n\n```html\n<section data-background=\"#ff0000\">\n\t<h2>All CSS color formats are supported, like rgba() or hsl().</h2>\n</section>\n<section data-background=\"http://example.com/image.png\">\n\t<h2>This slide will have a full-size background image.</h2>\n</section>\n<section data-background=\"http://example.com/image.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\">\n\t<h2>This background image will be sized to 100px and repeated.</h2>\n</section>\n<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-video-loop>\n\t<h2>Video. Multiple sources can be defined using a comma separated list. Video will loop when the data-background-video-loop attribute is provided.</h2>\n</section>\n<section data-background-iframe=\"https://slides.com\">\n\t<h2>Embeds a web page as a background. Note that the page won't be interactive.</h2>\n</section>\n```\n\nBackgrounds transition using a fade animation by default. This can be changed to a linear sliding transition by passing ```backgroundTransition: 'slide'``` to the ```Reveal.initialize()``` call. Alternatively you can set ```data-background-transition``` on any section with a background to override that specific transition.\n\n\n### Parallax Background\n\nIf you want to use a parallax scrolling background, set the first two config properties below when initializing reveal.js (the other two are optional).\n\n```javascript\nReveal.initialize({\n\n\t// Parallax background image\n\tparallaxBackgroundImage: '', // e.g. \"https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg\"\n\n\t// Parallax background size\n\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"2100px 900px\" - currently only pixels are supported (don't use % or auto)\n\n\t// Amount of pixels to move the parallax background per slide step,\n\t// a value of 0 disables movement along the given axis\n\t// These are optional, if they aren't specified they'll be calculated automatically\n\tparallaxBackgroundHorizontal: 200,\n\tparallaxBackgroundVertical: 50\n\n});\n```\n\nMake sure that the background size is much bigger than screen size to allow for some scrolling. [View example](http://lab.hakim.se/reveal-js/?parallaxBackgroundImage=https%3A%2F%2Fs3.amazonaws.com%2Fhakim-static%2Freveal-js%2Freveal-parallax-1.jpg&parallaxBackgroundSize=2100px%20900px).\n\n\n\n### Slide Transitions\nThe global presentation transition is set using the ```transition``` config value. You can override the global transition for a specific slide by using the ```data-transition``` attribute:\n\n```html\n<section data-transition=\"zoom\">\n\t<h2>This slide will override the presentation transition and zoom!</h2>\n</section>\n\n<section data-transition-speed=\"fast\">\n\t<h2>Choose from three transition speeds: default, fast or slow!</h2>\n</section>\n```\n\nYou can also use different in and out transitions for the same slide:\n\n```html\n<section data-transition=\"slide\">\n    The train goes on … \n</section>\n<section data-transition=\"slide\"> \n    and on … \n</section>\n<section data-transition=\"slide-in fade-out\"> \n    and stops.\n</section>\n<section data-transition=\"fade-in slide-out\"> \n    (Passengers entering and leaving)\n</section>\n<section data-transition=\"slide\">\n    And it starts again.\n</section>\n```\n\n\n### Internal links\n\nIt's easy to link between slides. The first example below targets the index of another slide whereas the second targets a slide with an ID attribute (```<section id=\"some-slide\">```):\n\n```html\n<a href=\"#/2/2\">Link</a>\n<a href=\"#/some-slide\">Link</a>\n```\n\nYou can also add relative navigation links, similar to the built in reveal.js controls, by appending one of the following classes on any element. Note that each element is automatically given an ```enabled``` class when it's a valid navigation route based on the current slide.\n\n```html\n<a href=\"#\" class=\"navigate-left\">\n<a href=\"#\" class=\"navigate-right\">\n<a href=\"#\" class=\"navigate-up\">\n<a href=\"#\" class=\"navigate-down\">\n<a href=\"#\" class=\"navigate-prev\"> <!-- Previous vertical or horizontal slide -->\n<a href=\"#\" class=\"navigate-next\"> <!-- Next vertical or horizontal slide -->\n```\n\n\n### Fragments\nFragments are used to highlight individual elements on a slide. Every element with the class ```fragment``` will be stepped through before moving on to the next slide. Here's an example: http://lab.hakim.se/reveal-js/#/fragments\n\nThe default fragment style is to start out invisible and fade in. This style can be changed by appending a different class to the fragment:\n\n```html\n<section>\n\t<p class=\"fragment grow\">grow</p>\n\t<p class=\"fragment shrink\">shrink</p>\n\t<p class=\"fragment fade-out\">fade-out</p>\n\t<p class=\"fragment current-visible\">visible only once</p>\n\t<p class=\"fragment highlight-current-blue\">blue only once</p>\n\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t<p class=\"fragment highlight-green\">highlight-green</p>\n\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n</section>\n```\n\nMultiple fragments can be applied to the same element sequentially by wrapping it, this will fade in the text on the first step and fade it back out on the second.\n\n```html\n<section>\n\t<span class=\"fragment fade-in\">\n\t\t<span class=\"fragment fade-out\">I'll fade in, then out</span>\n\t</span>\n</section>\n```\n\nThe display order of fragments can be controlled using the ```data-fragment-index``` attribute.\n\n```html\n<section>\n\t<p class=\"fragment\" data-fragment-index=\"3\">Appears last</p>\n\t<p class=\"fragment\" data-fragment-index=\"1\">Appears first</p>\n\t<p class=\"fragment\" data-fragment-index=\"2\">Appears second</p>\n</section>\n```\n\n### Fragment events\n\nWhen a slide fragment is either shown or hidden reveal.js will dispatch an event.\n\nSome libraries, like MathJax (see #505), get confused by the initially hidden fragment elements. Often times this can be fixed by calling their update or render function from this callback.\n\n```javascript\nReveal.addEventListener( 'fragmentshown', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\nReveal.addEventListener( 'fragmenthidden', function( event ) {\n\t// event.fragment = the fragment DOM element\n} );\n```\n\n### Code syntax highlighting\n\nBy default, Reveal is configured with [highlight.js](https://highlightjs.org/) for code syntax highlighting. Below is an example with clojure code that will be syntax highlighted. When the `data-trim` attribute is present surrounding whitespace is automatically removed.\n\n```html\n<section>\n\t<pre><code data-trim>\n(def lazy-fib\n  (concat\n   [0 1]\n   ((fn rfib [a b]\n        (lazy-cons (+ a b) (rfib b (+ a b)))) 0 1)))\n\t</code></pre>\n</section>\n```\n\n### Slide number\nIf you would like to display the page number of the current slide you can do so using the ```slideNumber``` configuration value.\n\n```javascript\n// Shows the slide number using default formatting\nReveal.configure({ slideNumber: true });\n\n// Slide number formatting can be configured using these variables:\n//  \"h.v\": \thorizontal . vertical slide number (default)\n//  \"h/v\": \thorizontal / vertical slide number\n//    \"c\": \tflattened slide number\n//  \"c/t\": \tflattened slide number / total slides\nReveal.configure({ slideNumber: 'c/t' });\n\n```\n\n\n### Overview mode\n\nPress \"Esc\" or \"o\" keys to toggle the overview mode on and off. While you're in this mode, you can still navigate between slides,\nas if you were at 1,000 feet above your presentation. The overview mode comes with a few API hooks:\n\n```javascript\nReveal.addEventListener( 'overviewshown', function( event ) { /* ... */ } );\nReveal.addEventListener( 'overviewhidden', function( event ) { /* ... */ } );\n\n// Toggle the overview mode programmatically\nReveal.toggleOverview();\n```\n\n### Fullscreen mode\nJust press »F« on your keyboard to show your presentation in fullscreen mode. Press the »ESC« key to exit fullscreen mode.\n\n\n### Embedded media\nEmbedded HTML5 `<video>`/`<audio>` and YouTube iframes are automatically paused when you navigate away from a slide. This can be disabled by decorating your element with a `data-ignore` attribute.\n\nAdd `data-autoplay` to your media element if you want it to automatically start playing when the slide is shown:\n\n```html\n<video data-autoplay src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n```\n\nAdditionally the framework automatically pushes two [post messages](https://developer.mozilla.org/en-US/docs/Web/API/Window.postMessage) to all iframes, ```slide:start``` when the slide containing the iframe is made visible and ```slide:stop``` when it is hidden.\n\n\n### Stretching elements\nSometimes it's desirable to have an element, like an image or video, stretch to consume as much space as possible within a given slide. This can be done by adding the ```.stretch``` class to an element as seen below:\n\n```html\n<section>\n\t<h2>This video will use up the remaining space on the slide</h2>\n    <video class=\"stretch\" src=\"http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4\"></video>\n</section>\n```\n\nLimitations:\n- Only direct descendants of a slide section can be stretched\n- Only one descendant per slide section can be stretched\n\n\n### postMessage API\nThe framework has a built-in postMessage API that can be used when communicating with a presentation inside of another window. Here's an example showing how you'd make a reveal.js instance in the given window proceed to slide 2:\n\n```javascript\n<window>.postMessage( JSON.stringify({ method: 'slide', args: [ 2 ] }), '*' );\n```\n\nWhen reveal.js runs inside of an iframe it can optionally bubble all of its events to the parent. Bubbled events are stringified JSON with three fields: namespace, eventName and state. Here's how you subscribe to them from the parent window:\n\n```javascript\nwindow.addEventListener( 'message', function( event ) {\n\tvar data = JSON.parse( event.data );\n\tif( data.namespace === 'reveal' && data.eventName ==='slidechanged' ) {\n\t\t// Slide changed, see data.state for slide number\n\t}\n} );\n```\n\nThis cross-window messaging can be toggled on or off using configuration flags.\n\n```javascript\nReveal.initialize({\n\t...,\n\n\t// Exposes the reveal.js API through window.postMessage\n\tpostMessage: true,\n\n\t// Dispatches all reveal.js events to the parent window through postMessage\n\tpostMessageEvents: false\n});\n```\n\n\n## PDF Export\n\nPresentations can be exported to PDF via a special print stylesheet. This feature requires that you use [Google Chrome](http://google.com/chrome) or [Chromium](https://www.chromium.org/Home).\nHere's an example of an exported presentation that's been uploaded to SlideShare: http://www.slideshare.net/hakimel/revealjs-300.\n\n1. Open your presentation with `print-pdf` included anywhere in the query string. This triggers the default index HTML to load the PDF print stylesheet ([css/print/pdf.css](https://github.com/hakimel/reveal.js/blob/master/css/print/pdf.css)). You can test this with [lab.hakim.se/reveal-js?print-pdf](http://lab.hakim.se/reveal-js?print-pdf).\n2. Open the in-browser print dialog (CMD+P).\n3. Change the **Destination** setting to **Save as PDF**.\n4. Change the **Layout** to **Landscape**.\n5. Change the **Margins** to **None**.\n6. Click **Save**.\n\n![Chrome Print Settings](https://s3.amazonaws.com/hakim-static/reveal-js/pdf-print-settings.png)\n\nAlternatively you can use the [decktape](https://github.com/astefanutti/decktape) project.\n\n## Theming\n\nThe framework comes with a few different themes included:\n\n- black: Black background, white text, blue links (default theme)\n- white: White background, black text, blue links\n- league: Gray background, white text, blue links (default theme for reveal.js < 3.0.0)\n- beige: Beige background, dark text, brown links\n- sky: Blue background, thin dark text, blue links\n- night: Black background, thick white text, orange links\n- serif: Cappuccino background, gray text, brown links\n- simple: White background, black text, blue links\n- solarized: Cream-colored background, dark green text, blue links\n\nEach theme is available as a separate stylesheet. To change theme you will need to replace **black** below with your desired theme name in index.html:\n\n```html\n<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n```\n\nIf you want to add a theme of your own see the instructions here: [/css/theme/README.md](https://github.com/hakimel/reveal.js/blob/master/css/theme/README.md).\n\n\n## Speaker Notes\n\nreveal.js comes with a speaker notes plugin which can be used to present per-slide notes in a separate browser window. The notes window also gives you a preview of the next upcoming slide so it may be helpful even if you haven't written any notes. Press the 's' key on your keyboard to open the notes window.\n\nNotes are defined by appending an ```<aside>``` element to a slide as seen below. You can add the ```data-markdown``` attribute to the aside element if you prefer writing notes using Markdown.\n\nAlternatively you can add your notes in a `data-notes` attribute on the slide. Like `<section data-notes=\"Something important\"></section>`.\n\nWhen used locally, this feature requires that reveal.js [runs from a local web server](#full-setup).\n\n```html\n<section>\n\t<h2>Some Slide</h2>\n\n\t<aside class=\"notes\">\n\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t</aside>\n</section>\n```\n\nNotes are only visible to you in the speaker view. If you wish to share your notes with the audience initialize reveal.js with the `showNotes` config value set to `true`.\n\nIf you're using the external Markdown plugin, you can add notes with the help of a special delimiter:\n\n```html\n<section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\" data-separator-notes=\"^Note:\"></section>\n\n# Title\n## Sub-title\n\nHere is some content...\n\nNote:\nThis will only display in the notes window.\n```\n\n## Server Side Speaker Notes\n\nIn some cases it can be desirable to run notes on a separate device from the one you're presenting on. The Node.js-based notes plugin lets you do this using the same note definitions as its client side counterpart. Include the required scripts by adding the following dependencies:\n\n```javascript\nReveal.initialize({\n\t...\n\n\tdependencies: [\n\t\t{ src: 'socket.io/socket.io.js', async: true },\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\t]\n});\n```\n\nThen:\n\n1. Install [Node.js](http://nodejs.org/)\n2. Run ```npm install```\n3. Run ```node plugin/notes-server```\n\n\n## Multiplexing\n\nThe multiplex plugin allows your audience to view the slides of the presentation you are controlling on their own phone, tablet or laptop. As the master presentation navigates the slides, all client presentations will update in real time. See a demo at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nThe multiplex plugin needs the following 3 things to operate:\n\n1. Master presentation that has control\n2. Client presentations that follow the master\n3. Socket.io server to broadcast events from the master to the clients\n\nMore details:\n\n#### Master presentation\nServed from a static file server accessible (preferably) only to the presenter. This need only be on your (the presenter's) computer. (It's safer to run the master presentation from your own computer, so if the venue's Internet goes down it doesn't stop the show.) An example would be to execute the following commands in the directory of your master presentation: \n\n1. ```npm install node-static```\n2. ```static```\n\nIf you want to use the speaker notes plugin with your master presentation then make sure you have the speaker notes plugin configured correctly along with the configuration shown below, then execute ```node plugin/notes-server``` in the directory of your master presentation. The configuration below will cause it to connect to the socket.io server as a master, as well as launch your speaker-notes/static-file server.\n\nYou can then access your master presentation at ```http://localhost:1947```\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\n\t\t// and if you want speaker notes\n\t\t{ src: 'plugin/notes-server/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Client presentation\nServed from a publicly accessible static file server. Examples include: GitHub Pages, Amazon S3, Dreamhost, Akamai, etc. The more reliable, the better. Your audience can then access the client presentation via ```http://example.com/path/to/presentation/client/index.html```, with the configuration below causing them to connect to the socket.io server as clients.\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'revealjs-51546.onmodulus.net:80' // Location of socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n#### Socket.io server\nServer that receives the slideChanged events from the master presentation and broadcasts them out to the connected client presentations. This needs to be publicly accessible. You can run your own socket.io server with the commands:\n\n1. ```npm install```\n2. ```node plugin/multiplex```\n\nOr you use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/).\n\nYou'll need to generate a unique secret and token pair for your master and client presentations. To do so, visit ```http://example.com/token```, where ```http://example.com``` is the location of your socket.io server. Or if you're going to use the socket.io server at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), visit [http://revealjs-51546.onmodulus.net/token](http://revealjs-51546.onmodulus.net/token).\n\nYou are very welcome to point your presentations at the Socket.io server running at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/), but availability and stability are not guaranteed. For anything mission critical I recommend you run your own server. It is simple to deploy to nodejitsu, heroku, your own environment, etc.\n\n##### socket.io server as file static server\n\nThe socket.io server can play the role of static file server for your client presentation, as in the example at [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match.)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: null, // null so the clients do not have control of the master presentation\n\t\tid: '1ea875674b17ca76', // id, obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n```\n\nIt can also play the role of static file server for your master presentation and client presentations at the same time (as long as you don't want to use speaker notes). (Open [http://revealjs-51546.onmodulus.net/](http://revealjs-51546.onmodulus.net/) in two browsers. Navigate through the slides on one, and the other will update to match. Navigate through the slides on the second, and the first will update to match.) This is probably not desirable, because you don't want your audience to mess with your slides while you're presenting. ;)\n\nExample configuration:\n```javascript\nReveal.initialize({\n\t// other options...\n\n\tmultiplex: {\n\t\t// Example values. To generate your own, see the socket.io server instructions.\n\t\tsecret: '13652805320794272084', // Obtained from the socket.io server. Gives this (the master) control of the presentation\n\t\tid: '1ea875674b17ca76', // Obtained from socket.io server\n\t\turl: 'example.com:80' // Location of your socket.io server\n\t},\n\n\t// Don't forget to add the dependencies\n\tdependencies: [\n\t\t{ src: '//cdn.socket.io/socket.io-1.3.5.js', async: true },\n\t\t{ src: 'plugin/multiplex/master.js', async: true },\n\t\t{ src: 'plugin/multiplex/client.js', async: true }\n\n\t\t// other dependencies...\n\t]\n});\n```\n\n## MathJax\n\nIf you want to display math equations in your presentation you can easily do so by including this plugin. The plugin is a very thin wrapper around the [MathJax](http://www.mathjax.org/) library. To use it you'll need to include it as a reveal.js dependency, [find our more about dependencies here](#dependencies).\n\nThe plugin defaults to using [LaTeX](http://en.wikipedia.org/wiki/LaTeX) but that can be adjusted through the ```math``` configuration object. Note that MathJax is loaded from a remote server. If you want to use it offline you'll need to download a copy of the library and adjust the ```mathjax``` configuration value. \n\nBelow is an example of how the plugin can be configured. If you don't intend to change these values you do not need to include the ```math``` config object at all.\n\n```js\nReveal.initialize({\n\n\t// other options ...\n\n\tmath: {\n\t\tmathjax: 'https://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\tconfig: 'TeX-AMS_HTML-full'  // See http://docs.mathjax.org/en/latest/config-files.html\n\t},\n\t\n\tdependencies: [\n\t\t{ src: 'plugin/math/math.js', async: true }\n\t]\n\n});\n```\n\nRead MathJax's documentation if you need [HTTPS delivery](http://docs.mathjax.org/en/latest/start.html#secure-access-to-the-cdn) or serving of [specific versions](http://docs.mathjax.org/en/latest/configuration.html#loading-mathjax-from-the-cdn) for stability.\n\n\n## Installation\n\nThe **basic setup** is for authoring presentations only. The **full setup** gives you access to all reveal.js features and plugins such as speaker notes as well as the development tasks needed to make changes to the source.\n\n### Basic setup\n\nThe core of reveal.js is very easy to install. You'll simply need to download a copy of this repository and open the index.html file directly in your browser.\n\n1. Download the latest version of reveal.js from <https://github.com/hakimel/reveal.js/releases>\n\n2. Unzip and replace the example contents in index.html with your own\n\n3. Open index.html in a browser to view it\n\n\n### Full setup\n\nSome reveal.js features, like external Markdown and speaker notes, require that presentations run from a local web server. The following instructions will set up such a server as well as all of the development tasks needed to make edits to the reveal.js source code.\n\n1. Install [Node.js](http://nodejs.org/)\n\n2. Install [Grunt](http://gruntjs.com/getting-started#installing-the-cli)\n\n4. Clone the reveal.js repository\n   ```sh\n   $ git clone https://github.com/hakimel/reveal.js.git\n   ```\n\n5. Navigate to the reveal.js folder\n   ```sh\n   $ cd reveal.js\n   ```\n\n6. Install dependencies\n   ```sh\n   $ npm install\n   ```\n\n7. Serve the presentation and monitor source files for changes\n   ```sh\n   $ grunt serve\n   ```\n\n8. Open <http://localhost:8000> to view your presentation\n\n   You can change the port by using `grunt serve --port 8001`.\n\n\n### Folder Structure\n- **css/** Core styles without which the project does not function\n- **js/** Like above but for JavaScript\n- **plugin/** Components that have been developed as extensions to reveal.js\n- **lib/** All other third party assets (JavaScript, CSS, fonts)\n\n\n## License\n\nMIT licensed\n\nCopyright (C) 2015 Hakim El Hattab, http://hakim.se\n"
  },
  {
    "path": "talk/reveal.js/bower.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"main\": [\n    \"js/reveal.js\",\n    \"css/reveal.css\"\n  ],\n  \"homepage\": \"http://lab.hakim.se/reveal-js/\",\n  \"license\": \"MIT\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"authors\": [\n    \"Hakim El Hattab <hakim.elhattab@gmail.com>\"\n  ],\n  \"dependencies\": {\n    \"headjs\": \"~1.0.3\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"ignore\": [\n    \"**/.*\",\n    \"node_modules\",\n    \"bower_components\",\n    \"test\"\n  ]\n}"
  },
  {
    "path": "talk/reveal.js/css/print/paper.css",
    "content": "/* Default Print Stylesheet Template\n   by Rob Glazebrook of CSSnewbie.com\n   Last Updated: June 4, 2008\n\n   Feel free (nay, compelled) to edit, append, and\n   manipulate this file as you see fit. */\n\n\n@media print {\n\n\t/* SECTION 1: Set default width, margin, float, and\n\t   background. This prevents elements from extending\n\t   beyond the edge of the printed page, and prevents\n\t   unnecessary background images from printing */\n\thtml {\n\t\tbackground: #fff;\n\t\twidth: auto;\n\t\theight: auto;\n\t\toverflow: visible;\n\t}\n\tbody {\n\t\tbackground: #fff;\n\t\tfont-size: 20pt;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tborder: 0;\n\t\tmargin: 0 5%;\n\t\tpadding: 0;\n\t\toverflow: visible;\n\t\tfloat: none !important;\n\t}\n\n\t/* SECTION 2: Remove any elements not needed in print.\n\t   This would include navigation, ads, sidebars, etc. */\n\t.nestedarrow,\n\t.controls,\n\t.fork-reveal,\n\t.share-reveal,\n\t.state-background,\n\t.reveal .progress,\n\t.reveal .backgrounds {\n\t\tdisplay: none !important;\n\t}\n\n\t/* SECTION 3: Set body font face, size, and color.\n\t   Consider using a serif font for readability. */\n\tbody, p, td, li, div {\n\t\tfont-size: 20pt!important;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\tcolor: #000;\n\t}\n\n\t/* SECTION 4: Set heading font face, sizes, and color.\n\t   Differentiate your headings from your body text.\n\t   Perhaps use a large sans-serif for distinction. */\n\th1,h2,h3,h4,h5,h6 {\n\t\tcolor: #000!important;\n\t\theight: auto;\n\t\tline-height: normal;\n\t\tfont-family: Georgia, \"Times New Roman\", Times, serif !important;\n\t\ttext-shadow: 0 0 0 #000 !important;\n\t\ttext-align: left;\n\t\tletter-spacing: normal;\n\t}\n\t/* Need to reduce the size of the fonts for printing */\n\th1 { font-size: 28pt !important;  }\n\th2 { font-size: 24pt !important; }\n\th3 { font-size: 22pt !important; }\n\th4 { font-size: 22pt !important; font-variant: small-caps; }\n\th5 { font-size: 21pt !important; }\n\th6 { font-size: 20pt !important; font-style: italic; }\n\n\t/* SECTION 5: Make hyperlinks more usable.\n\t   Ensure links are underlined, and consider appending\n\t   the URL to the end of the link for usability. */\n\ta:link,\n\ta:visited {\n\t\tcolor: #000 !important;\n\t\tfont-weight: bold;\n\t\ttext-decoration: underline;\n\t}\n\t/*\n\t.reveal a:link:after,\n\t.reveal a:visited:after {\n\t\tcontent: \" (\" attr(href) \") \";\n\t\tcolor: #222 !important;\n\t\tfont-size: 90%;\n\t}\n\t*/\n\n\n\t/* SECTION 6: more reveal.js specific additions by @skypanther */\n\tul, ol, div, p {\n\t\tvisibility: visible;\n\t\tposition: static;\n\t\twidth: auto;\n\t\theight: auto;\n\t\tdisplay: block;\n\t\toverflow: visible;\n\t\tmargin: 0;\n\t\ttext-align: left !important;\n\t}\n\t.reveal pre,\n\t.reveal table {\n\t\tmargin-left: 0;\n\t\tmargin-right: 0;\n\t}\n\t.reveal pre code {\n\t\tpadding: 20px;\n\t\tborder: 1px solid #ddd;\n\t}\n\t.reveal blockquote {\n\t\tmargin: 20px 0;\n\t}\n\t.reveal .slides {\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 0 !important;\n\t\tzoom: 1 !important;\n\n\t\toverflow: visible !important;\n\t\tdisplay: block !important;\n\n\t\ttext-align: left !important;\n\t\t-webkit-perspective: none;\n\t\t   -moz-perspective: none;\n\t\t    -ms-perspective: none;\n\t\t        perspective: none;\n\n\t\t-webkit-perspective-origin: 50% 50%;\n\t\t   -moz-perspective-origin: 50% 50%;\n\t\t    -ms-perspective-origin: 50% 50%;\n\t\t        perspective-origin: 50% 50%;\n\t}\n\t.reveal .slides section {\n\t\tvisibility: visible !important;\n\t\tposition: static !important;\n\t\twidth: auto !important;\n\t\theight: auto !important;\n\t\tdisplay: block !important;\n\t\toverflow: visible !important;\n\n\t\tleft: 0 !important;\n\t\ttop: 0 !important;\n\t\tmargin-left: 0 !important;\n\t\tmargin-top: 0 !important;\n\t\tpadding: 60px 20px !important;\n\t\tz-index: auto !important;\n\n\t\topacity: 1 !important;\n\n\t\tpage-break-after: always !important;\n\n\t\t-webkit-transform-style: flat !important;\n\t\t   -moz-transform-style: flat !important;\n\t\t    -ms-transform-style: flat !important;\n\t\t        transform-style: flat !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\n\t\t-webkit-transition: none !important;\n\t\t   -moz-transition: none !important;\n\t\t    -ms-transition: none !important;\n\t\t        transition: none !important;\n\t}\n\t.reveal .slides section.stack {\n\t\tpadding: 0 !important;\n\t}\n\t.reveal section:last-of-type {\n\t\tpage-break-after: avoid !important;\n\t}\n\t.reveal section .fragment {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\n\t\t-webkit-transform: none !important;\n\t\t   -moz-transform: none !important;\n\t\t    -ms-transform: none !important;\n\t\t        transform: none !important;\n\t}\n\t.reveal section img {\n\t\tdisplay: block;\n\t\tmargin: 15px 0px;\n\t\tbackground: rgba(255,255,255,1);\n\t\tborder: 1px solid #666;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal section small {\n\t\tfont-size: 0.8em;\n\t}\n\n}"
  },
  {
    "path": "talk/reveal.js/css/print/pdf.css",
    "content": "/**\n * This stylesheet is used to print reveal.js\n * presentations to PDF.\n *\n * https://github.com/hakimel/reveal.js#pdf-export\n */\n\n* {\n\t-webkit-print-color-adjust: exact;\n}\n\nbody {\n\tmargin: 0 auto !important;\n\tborder: 0;\n\tpadding: 0;\n\tfloat: none !important;\n\toverflow: visible;\n}\n\nhtml {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: visible;\n}\n\n/* Remove any elements not needed in print. */\n.nestedarrow,\n.reveal .controls,\n.reveal .progress,\n.reveal .playback,\n.reveal.overview,\n.fork-reveal,\n.share-reveal,\n.state-background {\n\tdisplay: none !important;\n}\n\nh1, h2, h3, h4, h5, h6 {\n\ttext-shadow: 0 0 0 #000 !important;\n}\n\n.reveal pre code {\n\toverflow: hidden !important;\n\tfont-family: Courier, 'Courier New', monospace !important;\n}\n\nul, ol, div, p {\n\tvisibility: visible;\n\tposition: static;\n\twidth: auto;\n\theight: auto;\n\tdisplay: block;\n\toverflow: visible;\n\tmargin: auto;\n}\n.reveal {\n\twidth: auto !important;\n\theight: auto !important;\n\toverflow: hidden !important;\n}\n.reveal .slides {\n\tposition: static;\n\twidth: 100%;\n\theight: auto;\n\n\tleft: auto;\n\ttop: auto;\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\n\toverflow: visible;\n\tdisplay: block;\n\n\t-webkit-perspective: none;\n\t   -moz-perspective: none;\n\t    -ms-perspective: none;\n\t        perspective: none;\n\n\t-webkit-perspective-origin: 50% 50%; /* there isn't a none/auto value but 50-50 is the default */\n\t   -moz-perspective-origin: 50% 50%;\n\t    -ms-perspective-origin: 50% 50%;\n\t        perspective-origin: 50% 50%;\n}\n\n.reveal .slides section {\n\tpage-break-after: always !important;\n\n\tvisibility: visible !important;\n\tposition: relative !important;\n\tdisplay: block !important;\n\tposition: relative !important;\n\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tbox-sizing: border-box !important;\n\tmin-height: 1px;\n\n\topacity: 1 !important;\n\n\t-webkit-transform-style: flat !important;\n\t   -moz-transform-style: flat !important;\n\t    -ms-transform-style: flat !important;\n\t        transform-style: flat !important;\n\n\t-webkit-transform: none !important;\n\t   -moz-transform: none !important;\n\t    -ms-transform: none !important;\n\t        transform: none !important;\n}\n\n.reveal section.stack {\n\tmargin: 0 !important;\n\tpadding: 0 !important;\n\tpage-break-after: avoid !important;\n\theight: auto !important;\n\tmin-height: auto !important;\n}\n\n.reveal img {\n\tbox-shadow: none;\n}\n\n.reveal .roll {\n\toverflow: visible;\n\tline-height: 1em;\n}\n\n/* Slide backgrounds are placed inside of their slide when exporting to PDF */\n.reveal section .slide-background {\n\tdisplay: block !important;\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\tz-index: -1;\n}\n\n/* All elements should be above the slide-background */\n.reveal section>* {\n\tposition: relative;\n\tz-index: 1;\n}\n\n/* Display slide speaker notes when 'showNotes' is enabled */\n.reveal .speaker-notes-pdf {\n\tdisplay: block;\n\twidth: 100%;\n\tmax-height: none;\n\tleft: auto;\n\ttop: auto;\n\tz-index: 100;\n}\n\n/* Display slide numbers when 'slideNumber' is enabled */\n.reveal .slide-number-pdf {\n\tdisplay: block;\n\tposition: absolute;\n\tfont-size: 14px;\n}\n\n"
  },
  {
    "path": "talk/reveal.js/css/reveal.css",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n/*********************************************\n * RESET STYLES\n *********************************************/\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n  margin: 0;\n  padding: 0;\n  border: 0;\n  font-size: 100%;\n  font: inherit;\n  vertical-align: baseline; }\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n  display: block; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nhtml,\nbody {\n  width: 100%;\n  height: 100%;\n  overflow: hidden; }\n\nbody {\n  position: relative;\n  line-height: 1;\n  background-color: #fff;\n  color: #000; }\n\nhtml:-webkit-full-screen-ancestor {\n  background-color: inherit; }\n\nhtml:-moz-full-screen-ancestor {\n  background-color: inherit; }\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n.reveal .slides section .fragment {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease; }\n  .reveal .slides section .fragment.visible {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.grow {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.grow.visible {\n    -webkit-transform: scale(1.3);\n        -ms-transform: scale(1.3);\n            transform: scale(1.3); }\n\n.reveal .slides section .fragment.shrink {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.shrink.visible {\n    -webkit-transform: scale(0.7);\n        -ms-transform: scale(0.7);\n            transform: scale(0.7); }\n\n.reveal .slides section .fragment.zoom-in {\n  -webkit-transform: scale(0.1);\n      -ms-transform: scale(0.1);\n          transform: scale(0.1); }\n  .reveal .slides section .fragment.zoom-in.visible {\n    -webkit-transform: none;\n        -ms-transform: none;\n            transform: none; }\n\n.reveal .slides section .fragment.fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.fade-out.visible {\n    opacity: 0;\n    visibility: hidden; }\n\n.reveal .slides section .fragment.semi-fade-out {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.semi-fade-out.visible {\n    opacity: 0.5;\n    visibility: visible; }\n\n.reveal .slides section .fragment.strike {\n  opacity: 1;\n  visibility: visible; }\n  .reveal .slides section .fragment.strike.visible {\n    text-decoration: line-through; }\n\n.reveal .slides section .fragment.current-visible {\n  opacity: 0;\n  visibility: hidden; }\n  .reveal .slides section .fragment.current-visible.current-fragment {\n    opacity: 1;\n    visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .slides section .fragment.highlight-red.visible {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-green.visible {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-blue.visible {\n  color: #1b91ff; }\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n  color: #ff2c2d; }\n\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n  color: #17ff2e; }\n\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n  color: #1b91ff; }\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic; }\n\n.reveal iframe {\n  z-index: 1; }\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n  position: relative; }\n\n.reveal .stretch {\n  max-width: none;\n  max-height: none; }\n\n.reveal pre.stretch code {\n  height: 100%;\n  max-height: 100%;\n  box-sizing: border-box; }\n\n/*********************************************\n * CONTROLS\n *********************************************/\n.reveal .controls {\n  display: none;\n  position: fixed;\n  width: 110px;\n  height: 110px;\n  z-index: 30;\n  right: 10px;\n  bottom: 10px;\n  -webkit-user-select: none; }\n\n.reveal .controls button {\n  padding: 0;\n  position: absolute;\n  opacity: 0.05;\n  width: 0;\n  height: 0;\n  background-color: transparent;\n  border: 12px solid transparent;\n  -webkit-transform: scale(0.9999);\n      -ms-transform: scale(0.9999);\n          transform: scale(0.9999);\n  -webkit-transition: all 0.2s ease;\n          transition: all 0.2s ease;\n  -webkit-appearance: none;\n  -webkit-tap-highlight-color: transparent; }\n\n.reveal .controls .enabled {\n  opacity: 0.7;\n  cursor: pointer; }\n\n.reveal .controls .enabled:active {\n  margin-top: 1px; }\n\n.reveal .controls .navigate-left {\n  top: 42px;\n  border-right-width: 22px;\n  border-right-color: #000; }\n\n.reveal .controls .navigate-left.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-right {\n  left: 74px;\n  top: 42px;\n  border-left-width: 22px;\n  border-left-color: #000; }\n\n.reveal .controls .navigate-right.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-up {\n  left: 42px;\n  border-bottom-width: 22px;\n  border-bottom-color: #000; }\n\n.reveal .controls .navigate-up.fragmented {\n  opacity: 0.3; }\n\n.reveal .controls .navigate-down {\n  left: 42px;\n  top: 74px;\n  border-top-width: 22px;\n  border-top-color: #000; }\n\n.reveal .controls .navigate-down.fragmented {\n  opacity: 0.3; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  position: fixed;\n  display: none;\n  height: 3px;\n  width: 100%;\n  bottom: 0;\n  left: 0;\n  z-index: 10;\n  background-color: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress:after {\n  content: '';\n  display: block;\n  position: absolute;\n  height: 20px;\n  width: 100%;\n  top: -20px; }\n\n.reveal .progress span {\n  display: block;\n  height: 100%;\n  width: 0px;\n  background-color: #000;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n.reveal .slide-number {\n  position: fixed;\n  display: block;\n  right: 8px;\n  bottom: 8px;\n  z-index: 31;\n  font-family: Helvetica, sans-serif;\n  font-size: 12px;\n  line-height: 1;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.4);\n  padding: 5px; }\n\n.reveal .slide-number-delimiter {\n  margin: 0 3px; }\n\n/*********************************************\n * SLIDES\n *********************************************/\n.reveal {\n  position: relative;\n  width: 100%;\n  height: 100%;\n  overflow: hidden;\n  -ms-touch-action: none;\n      touch-action: none; }\n\n.reveal .slides {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  right: 0;\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  overflow: visible;\n  z-index: 1;\n  text-align: center;\n  -webkit-perspective: 600px;\n          perspective: 600px;\n  -webkit-perspective-origin: 50% 40%;\n          perspective-origin: 50% 40%; }\n\n.reveal .slides > section {\n  -ms-perspective: 600px; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  display: none;\n  position: absolute;\n  width: 100%;\n  padding: 20px 0px;\n  z-index: 10;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-transition: -webkit-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), -webkit-transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: -ms-transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: transform-origin 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), transform 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), visibility 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985), opacity 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] .slides section {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal .slides section[data-transition-speed=\"slow\"] {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n.reveal .slides > section.stack {\n  padding-top: 0;\n  padding-bottom: 0; }\n\n.reveal .slides > section.present,\n.reveal .slides > section > section.present {\n  display: block;\n  z-index: 11;\n  opacity: 1; }\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n  min-height: 0 !important; }\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides > section.future,\n.reveal .slides > section > section.future,\n.reveal .slides > section.past,\n.reveal .slides > section > section.past {\n  pointer-events: none; }\n\n.reveal.overview .slides > section,\n.reveal.overview .slides > section > section {\n  pointer-events: auto; }\n\n.reveal .slides > section.past,\n.reveal .slides > section.future,\n.reveal .slides > section > section.past,\n.reveal .slides > section > section.future {\n  opacity: 0; }\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n.reveal.slide section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=slide].past,\n.reveal .slides > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=slide].future,\n.reveal .slides > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=slide].past,\n.reveal .slides > section > section[data-transition~=slide-out].past,\n.reveal.slide .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=slide].future,\n.reveal .slides > section > section[data-transition~=slide-in].future,\n.reveal.slide .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n.reveal.linear section {\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .slides > section[data-transition=linear].past,\n.reveal .slides > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section:not([data-transition]).past {\n  -webkit-transform: translate(-150%, 0);\n      -ms-transform: translate(-150%, 0);\n          transform: translate(-150%, 0); }\n\n.reveal .slides > section[data-transition=linear].future,\n.reveal .slides > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section:not([data-transition]).future {\n  -webkit-transform: translate(150%, 0);\n      -ms-transform: translate(150%, 0);\n          transform: translate(150%, 0); }\n\n.reveal .slides > section > section[data-transition=linear].past,\n.reveal .slides > section > section[data-transition~=linear-out].past,\n.reveal.linear .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=linear].future,\n.reveal .slides > section > section[data-transition~=linear-in].future,\n.reveal.linear .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n.reveal .slides > section[data-transition=default].past,\n.reveal .slides > section[data-transition~=default-out].past,\n.reveal.default .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=default].future,\n.reveal .slides > section[data-transition~=default-in].future,\n.reveal.default .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=default].past,\n.reveal .slides > section > section[data-transition~=default-out].past,\n.reveal.default .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=default].future,\n.reveal .slides > section > section[data-transition~=default-in].future,\n.reveal.default .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n.reveal .slides > section[data-transition=convex].past,\n.reveal .slides > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=convex].future,\n.reveal .slides > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=convex].past,\n.reveal .slides > section > section[data-transition~=convex-out].past,\n.reveal.convex .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n          transform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0); }\n\n.reveal .slides > section > section[data-transition=convex].future,\n.reveal .slides > section > section[data-transition~=convex-in].future,\n.reveal.convex .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n          transform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0); }\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n.reveal .slides > section[data-transition=concave].past,\n.reveal .slides > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section:not([data-transition]).past {\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal .slides > section[data-transition=concave].future,\n.reveal .slides > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section:not([data-transition]).future {\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal .slides > section > section[data-transition=concave].past,\n.reveal .slides > section > section[data-transition~=concave-out].past,\n.reveal.concave .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n          transform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0); }\n\n.reveal .slides > section > section[data-transition=concave].future,\n.reveal .slides > section > section[data-transition~=concave-in].future,\n.reveal.concave .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n          transform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0); }\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=zoom],\n.reveal.zoom .slides section:not([data-transition]) {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal .slides > section[data-transition=zoom].past,\n.reveal .slides > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section:not([data-transition]).past {\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal .slides > section[data-transition=zoom].future,\n.reveal .slides > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section:not([data-transition]).future {\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .slides > section > section[data-transition=zoom].past,\n.reveal .slides > section > section[data-transition~=zoom-out].past,\n.reveal.zoom .slides > section > section:not([data-transition]).past {\n  -webkit-transform: translate(0, -150%);\n      -ms-transform: translate(0, -150%);\n          transform: translate(0, -150%); }\n\n.reveal .slides > section > section[data-transition=zoom].future,\n.reveal .slides > section > section[data-transition~=zoom-in].future,\n.reveal.zoom .slides > section > section:not([data-transition]).future {\n  -webkit-transform: translate(0, 150%);\n      -ms-transform: translate(0, 150%);\n          transform: translate(0, 150%); }\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n.reveal.cube .slides {\n  -webkit-perspective: 1300px;\n          perspective: 1300px; }\n\n.reveal.cube .slides section {\n  padding: 30px;\n  min-height: 700px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  box-sizing: border-box; }\n\n.reveal.center.cube .slides section {\n  min-height: 0; }\n\n.reveal.cube .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  border-radius: 4px;\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.cube .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg);\n          transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.cube .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.cube .slides > section.past {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg); }\n\n.reveal.cube .slides > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg);\n          transform: translate3d(100%, 0, 0) rotateY(90deg); }\n\n.reveal.cube .slides > section > section.past {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg);\n          transform: translate3d(0, -100%, 0) rotateX(90deg); }\n\n.reveal.cube .slides > section > section.future {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg); }\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n.reveal.page .slides {\n  -webkit-perspective-origin: 0% 50%;\n          perspective-origin: 0% 50%;\n  -webkit-perspective: 3000px;\n          perspective: 3000px; }\n\n.reveal.page .slides section {\n  padding: 30px;\n  min-height: 700px;\n  box-sizing: border-box; }\n\n.reveal.page .slides section.past {\n  z-index: 12; }\n\n.reveal.page .slides section:not(.stack):before {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 100%;\n  height: 100%;\n  left: 0;\n  top: 0;\n  background: rgba(0, 0, 0, 0.1);\n  -webkit-transform: translateZ(-20px);\n          transform: translateZ(-20px); }\n\n.reveal.page .slides section:not(.stack):after {\n  content: '';\n  position: absolute;\n  display: block;\n  width: 90%;\n  height: 30px;\n  left: 5%;\n  bottom: 0;\n  background: none;\n  z-index: 1;\n  border-radius: 4px;\n  box-shadow: 0px 95px 25px rgba(0, 0, 0, 0.2);\n  -webkit-transform: translateZ(-90px) rotateX(65deg); }\n\n.reveal.page .slides > section.stack {\n  padding: 0;\n  background: none; }\n\n.reveal.page .slides > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(-40%, 0, 0) rotateY(-80deg);\n          transform: translate3d(-40%, 0, 0) rotateY(-80deg); }\n\n.reveal.page .slides > section.future {\n  -webkit-transform-origin: 100% 0%;\n      -ms-transform-origin: 100% 0%;\n          transform-origin: 100% 0%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n.reveal.page .slides > section > section.past {\n  -webkit-transform-origin: 0% 0%;\n      -ms-transform-origin: 0% 0%;\n          transform-origin: 0% 0%;\n  -webkit-transform: translate3d(0, -40%, 0) rotateX(80deg);\n          transform: translate3d(0, -40%, 0) rotateX(80deg); }\n\n.reveal.page .slides > section > section.future {\n  -webkit-transform-origin: 0% 100%;\n      -ms-transform-origin: 0% 100%;\n          transform-origin: 0% 100%;\n  -webkit-transform: translate3d(0, 0, 0);\n          transform: translate3d(0, 0, 0); }\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides > section > section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: opacity 0.5s;\n          transition: opacity 0.5s; }\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides > section > section {\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n.reveal .slides section[data-transition=none],\n.reveal.none .slides section:not([data-transition]) {\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none;\n  -webkit-transition: none;\n          transition: none; }\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n.reveal .pause-overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  background: black;\n  visibility: hidden;\n  opacity: 0;\n  z-index: 100;\n  -webkit-transition: all 1s ease;\n          transition: all 1s ease; }\n\n.reveal.paused .pause-overlay {\n  visibility: visible;\n  opacity: 1; }\n\n/*********************************************\n * FALLBACK\n *********************************************/\n.no-transforms {\n  overflow-y: auto; }\n\n.no-transforms .reveal .slides {\n  position: relative;\n  width: 80%;\n  height: auto !important;\n  top: 0;\n  left: 50%;\n  margin: 0;\n  text-align: center; }\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n  display: none !important; }\n\n.no-transforms .reveal .slides section {\n  display: block !important;\n  opacity: 1 !important;\n  position: relative !important;\n  height: auto;\n  min-height: 0;\n  top: 0;\n  left: -50%;\n  margin: 70px 0;\n  -webkit-transform: none;\n      -ms-transform: none;\n          transform: none; }\n\n.no-transforms .reveal .slides section section {\n  left: 0; }\n\n.reveal .no-transition,\n.reveal .no-transition * {\n  -webkit-transition: none !important;\n          transition: none !important; }\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n.reveal .backgrounds {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  top: 0;\n  left: 0;\n  -webkit-perspective: 600px;\n          perspective: 600px; }\n\n.reveal .slide-background {\n  display: none;\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  opacity: 0;\n  visibility: hidden;\n  background-color: transparent;\n  background-position: 50% 50%;\n  background-repeat: no-repeat;\n  background-size: cover;\n  -webkit-transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n          transition: all 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal .slide-background.stack {\n  display: block; }\n\n.reveal .slide-background.present {\n  opacity: 1;\n  visibility: visible; }\n\n.print-pdf .reveal .slide-background {\n  opacity: 1 !important;\n  visibility: visible !important; }\n\n/* Video backgrounds */\n.reveal .slide-background video {\n  position: absolute;\n  width: 100%;\n  height: 100%;\n  max-width: none;\n  max-height: none;\n  top: 0;\n  left: 0; }\n\n/* Immediate transition style */\n.reveal[data-background-transition=none] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=none] {\n  -webkit-transition: none;\n          transition: none; }\n\n/* Slide */\n.reveal[data-background-transition=slide] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=slide] {\n  opacity: 1;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(-100%, 0);\n      -ms-transform: translate(-100%, 0);\n          transform: translate(-100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(100%, 0);\n      -ms-transform: translate(100%, 0);\n          transform: translate(100%, 0); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=slide] {\n  -webkit-transform: translate(0, -100%);\n      -ms-transform: translate(0, -100%);\n          transform: translate(0, -100%); }\n\n.reveal[data-background-transition=slide] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=slide] {\n  -webkit-transform: translate(0, 100%);\n      -ms-transform: translate(0, 100%);\n          transform: translate(0, 100%); }\n\n/* Convex */\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=convex] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=convex] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0); }\n\n/* Concave */\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n          transform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n          transform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n          transform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0); }\n\n.reveal[data-background-transition=concave] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=concave] {\n  opacity: 0;\n  -webkit-transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n          transform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0); }\n\n/* Zoom */\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background,\n.reveal > .backgrounds .slide-background[data-background-transition=zoom] {\n  -webkit-transition-timing-function: ease;\n          transition-timing-function: ease; }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.past,\n.reveal > .backgrounds .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background.future,\n.reveal > .backgrounds .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.past,\n.reveal > .backgrounds .slide-background > .slide-background.past[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(16);\n      -ms-transform: scale(16);\n          transform: scale(16); }\n\n.reveal[data-background-transition=zoom] > .backgrounds .slide-background > .slide-background.future,\n.reveal > .backgrounds .slide-background > .slide-background.future[data-background-transition=zoom] {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal[data-transition-speed=\"slow\"] > .backgrounds .slide-background {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n.reveal.overview {\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%;\n  -webkit-perspective: 700px;\n          perspective: 700px; }\n  .reveal.overview .slides section {\n    height: 700px;\n    opacity: 1 !important;\n    overflow: hidden;\n    visibility: visible !important;\n    cursor: pointer;\n    box-sizing: border-box; }\n  .reveal.overview .slides section:hover,\n  .reveal.overview .slides section.present {\n    outline: 10px solid rgba(150, 150, 150, 0.4);\n    outline-offset: 10px; }\n  .reveal.overview .slides section .fragment {\n    opacity: 1;\n    -webkit-transition: none;\n            transition: none; }\n  .reveal.overview .slides section:after,\n  .reveal.overview .slides section:before {\n    display: none !important; }\n  .reveal.overview .slides > section.stack {\n    padding: 0;\n    top: 0 !important;\n    background: none;\n    outline: none;\n    overflow: visible; }\n  .reveal.overview .backgrounds {\n    -webkit-perspective: inherit;\n            perspective: inherit; }\n  .reveal.overview .backgrounds .slide-background {\n    opacity: 1;\n    visibility: visible;\n    outline: 10px solid rgba(150, 150, 150, 0.1);\n    outline-offset: 10px; }\n\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n  -webkit-transition: none;\n          transition: none; }\n\n.reveal.overview-animated .slides {\n  -webkit-transition: -webkit-transform 0.4s ease;\n          transition: transform 0.4s ease; }\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n  direction: rtl;\n  font-family: sans-serif; }\n\n.reveal.rtl pre,\n.reveal.rtl code {\n  direction: ltr; }\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n  text-align: right; }\n\n.reveal.rtl .progress span {\n  float: right; }\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n.reveal.has-parallax-background .backgrounds {\n  -webkit-transition: all 0.8s ease;\n          transition: all 0.8s ease; }\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n  -webkit-transition-duration: 400ms;\n          transition-duration: 400ms; }\n\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n  -webkit-transition-duration: 1200ms;\n          transition-duration: 1200ms; }\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n.reveal .overlay {\n  position: absolute;\n  top: 0;\n  left: 0;\n  width: 100%;\n  height: 100%;\n  z-index: 1000;\n  background: rgba(0, 0, 0, 0.9);\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.visible {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay .spinner {\n  position: absolute;\n  display: block;\n  top: 50%;\n  left: 50%;\n  width: 32px;\n  height: 32px;\n  margin: -16px 0 0 -16px;\n  z-index: 10;\n  background-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n  visibility: visible;\n  opacity: 0.6;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay header {\n  position: absolute;\n  left: 0;\n  top: 0;\n  width: 100%;\n  height: 40px;\n  z-index: 2;\n  border-bottom: 1px solid #222; }\n\n.reveal .overlay header a {\n  display: inline-block;\n  width: 40px;\n  height: 40px;\n  padding: 0 10px;\n  float: right;\n  opacity: 0.6;\n  box-sizing: border-box; }\n\n.reveal .overlay header a:hover {\n  opacity: 1; }\n\n.reveal .overlay header a .icon {\n  display: inline-block;\n  width: 20px;\n  height: 20px;\n  background-position: 50% 50%;\n  background-size: 100%;\n  background-repeat: no-repeat; }\n\n.reveal .overlay header a.close .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC); }\n\n.reveal .overlay header a.external .icon {\n  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==); }\n\n.reveal .overlay .viewport {\n  position: absolute;\n  top: 40px;\n  right: 0;\n  bottom: 0;\n  left: 0; }\n\n.reveal .overlay.overlay-preview .viewport iframe {\n  width: 100%;\n  height: 100%;\n  max-width: 100%;\n  max-height: 100%;\n  border: 0;\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transition: all 0.3s ease;\n          transition: all 0.3s ease; }\n\n.reveal .overlay.overlay-preview.loaded .viewport iframe {\n  opacity: 1;\n  visibility: visible; }\n\n.reveal .overlay.overlay-preview.loaded .spinner {\n  opacity: 0;\n  visibility: hidden;\n  -webkit-transform: scale(0.2);\n      -ms-transform: scale(0.2);\n          transform: scale(0.2); }\n\n.reveal .overlay.overlay-help .viewport {\n  overflow: auto;\n  color: #fff; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner {\n  width: 600px;\n  margin: 0 auto;\n  padding: 60px;\n  text-align: center;\n  letter-spacing: normal; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n  font-size: 20px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table {\n  border: 1px solid #fff;\n  border-collapse: collapse;\n  font-size: 14px; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n  width: 200px;\n  padding: 10px;\n  border: 1px solid #fff;\n  vertical-align: middle; }\n\n.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n  padding-top: 20px;\n  padding-bottom: 20px; }\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n.reveal .playback {\n  position: fixed;\n  left: 15px;\n  bottom: 20px;\n  z-index: 30;\n  cursor: pointer;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease; }\n\n.reveal.overview .playback {\n  opacity: 0;\n  visibility: hidden; }\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n.reveal .roll {\n  display: inline-block;\n  line-height: 1.2;\n  overflow: hidden;\n  vertical-align: top;\n  -webkit-perspective: 400px;\n          perspective: 400px;\n  -webkit-perspective-origin: 50% 50%;\n          perspective-origin: 50% 50%; }\n\n.reveal .roll:hover {\n  background: none;\n  text-shadow: none; }\n\n.reveal .roll span {\n  display: block;\n  position: relative;\n  padding: 0 2px;\n  pointer-events: none;\n  -webkit-transition: all 400ms ease;\n          transition: all 400ms ease;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform-style: preserve-3d;\n          transform-style: preserve-3d;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden; }\n\n.reveal .roll:hover span {\n  background: rgba(0, 0, 0, 0.5);\n  -webkit-transform: translate3d(0px, 0px, -45px) rotateX(90deg);\n          transform: translate3d(0px, 0px, -45px) rotateX(90deg); }\n\n.reveal .roll span:after {\n  content: attr(data-title);\n  display: block;\n  position: absolute;\n  left: 0;\n  top: 0;\n  padding: 0 2px;\n  -webkit-backface-visibility: hidden;\n          backface-visibility: hidden;\n  -webkit-transform-origin: 50% 0%;\n      -ms-transform-origin: 50% 0%;\n          transform-origin: 50% 0%;\n  -webkit-transform: translate3d(0px, 110%, 0px) rotateX(-90deg);\n          transform: translate3d(0px, 110%, 0px) rotateX(-90deg); }\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n.reveal aside.notes {\n  display: none; }\n\n.reveal .speaker-notes {\n  display: none;\n  position: absolute;\n  width: 70%;\n  max-height: 15%;\n  left: 15%;\n  bottom: 26px;\n  padding: 10px;\n  z-index: 1;\n  font-size: 18px;\n  line-height: 1.4;\n  color: #fff;\n  background-color: rgba(0, 0, 0, 0.5);\n  overflow: auto;\n  box-sizing: border-box;\n  text-align: left;\n  font-family: Helvetica, sans-serif;\n  -webkit-overflow-scrolling: touch; }\n\n.reveal .speaker-notes.visible:not(:empty) {\n  display: block; }\n\n@media screen and (max-width: 1024px) {\n  .reveal .speaker-notes {\n    font-size: 14px; } }\n\n@media screen and (max-width: 600px) {\n  .reveal .speaker-notes {\n    width: 90%;\n    left: 5%; } }\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n  -webkit-backface-visibility: visible !important;\n          backface-visibility: visible !important; }\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n  opacity: 0; }\n\n.zoomed .reveal .roll span {\n  background: none; }\n\n.zoomed .reveal .roll span:after {\n  visibility: hidden; }\n"
  },
  {
    "path": "talk/reveal.js/css/reveal.scss",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n/*********************************************\n * RESET STYLES\n *********************************************/\n\nhtml, body, .reveal div, .reveal span, .reveal applet, .reveal object, .reveal iframe,\n.reveal h1, .reveal h2, .reveal h3, .reveal h4, .reveal h5, .reveal h6, .reveal p, .reveal blockquote, .reveal pre,\n.reveal a, .reveal abbr, .reveal acronym, .reveal address, .reveal big, .reveal cite, .reveal code,\n.reveal del, .reveal dfn, .reveal em, .reveal img, .reveal ins, .reveal kbd, .reveal q, .reveal s, .reveal samp,\n.reveal small, .reveal strike, .reveal strong, .reveal sub, .reveal sup, .reveal tt, .reveal var,\n.reveal b, .reveal u, .reveal center,\n.reveal dl, .reveal dt, .reveal dd, .reveal ol, .reveal ul, .reveal li,\n.reveal fieldset, .reveal form, .reveal label, .reveal legend,\n.reveal table, .reveal caption, .reveal tbody, .reveal tfoot, .reveal thead, .reveal tr, .reveal th, .reveal td,\n.reveal article, .reveal aside, .reveal canvas, .reveal details, .reveal embed,\n.reveal figure, .reveal figcaption, .reveal footer, .reveal header, .reveal hgroup,\n.reveal menu, .reveal nav, .reveal output, .reveal ruby, .reveal section, .reveal summary,\n.reveal time, .reveal mark, .reveal audio, video {\n\tmargin: 0;\n\tpadding: 0;\n\tborder: 0;\n\tfont-size: 100%;\n\tfont: inherit;\n\tvertical-align: baseline;\n}\n\n.reveal article, .reveal aside, .reveal details, .reveal figcaption, .reveal figure,\n.reveal footer, .reveal header, .reveal hgroup, .reveal menu, .reveal nav, .reveal section {\n\tdisplay: block;\n}\n\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nhtml,\nbody {\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n}\n\nbody {\n\tposition: relative;\n\tline-height: 1;\n\n\tbackground-color: #fff;\n\tcolor: #000;\n}\n\n// Ensures that the main background color matches the\n// theme in fullscreen mode\nhtml:-webkit-full-screen-ancestor {\n\tbackground-color: inherit;\n}\nhtml:-moz-full-screen-ancestor {\n\tbackground-color: inherit;\n}\n\n\n/*********************************************\n * VIEW FRAGMENTS\n *********************************************/\n\n.reveal .slides section .fragment {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all .2s ease;\n\n\t&.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.grow {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 1.3 );\n\t}\n}\n\n.reveal .slides section .fragment.shrink {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttransform: scale( 0.7 );\n\t}\n}\n\n.reveal .slides section .fragment.zoom-in {\n\ttransform: scale( 0.1 );\n\n\t&.visible {\n\t\ttransform: none;\n\t}\n}\n\n.reveal .slides section .fragment.fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t}\n}\n\n.reveal .slides section .fragment.semi-fade-out {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\topacity: 0.5;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.strike {\n\topacity: 1;\n\tvisibility: visible;\n\n\t&.visible {\n\t\ttext-decoration: line-through;\n\t}\n}\n\n.reveal .slides section .fragment.current-visible {\n\topacity: 0;\n\tvisibility: hidden;\n\n\t&.current-fragment {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n}\n\n.reveal .slides section .fragment.highlight-red,\n.reveal .slides section .fragment.highlight-current-red,\n.reveal .slides section .fragment.highlight-green,\n.reveal .slides section .fragment.highlight-current-green,\n.reveal .slides section .fragment.highlight-blue,\n.reveal .slides section .fragment.highlight-current-blue {\n\topacity: 1;\n\tvisibility: visible;\n}\n\t.reveal .slides section .fragment.highlight-red.visible {\n\t\tcolor: #ff2c2d\n\t}\n\t.reveal .slides section .fragment.highlight-green.visible {\n\t\tcolor: #17ff2e;\n\t}\n\t.reveal .slides section .fragment.highlight-blue.visible {\n\t\tcolor: #1b91ff;\n\t}\n\n.reveal .slides section .fragment.highlight-current-red.current-fragment {\n\tcolor: #ff2c2d\n}\n.reveal .slides section .fragment.highlight-current-green.current-fragment {\n\tcolor: #17ff2e;\n}\n.reveal .slides section .fragment.highlight-current-blue.current-fragment {\n\tcolor: #1b91ff;\n}\n\n\n/*********************************************\n * DEFAULT ELEMENT STYLES\n *********************************************/\n\n/* Fixes issue in Chrome where italic fonts did not appear when printing to PDF */\n.reveal:after {\n  content: '';\n  font-style: italic;\n}\n\n.reveal iframe {\n\tz-index: 1;\n}\n\n/** Prevents layering issues in certain browser/transition combinations */\n.reveal a {\n\tposition: relative;\n}\n\n.reveal .stretch {\n\tmax-width: none;\n\tmax-height: none;\n}\n\n.reveal pre.stretch code {\n\theight: 100%;\n\tmax-height: 100%;\n\tbox-sizing: border-box;\n}\n\n\n/*********************************************\n * CONTROLS\n *********************************************/\n\n.reveal .controls {\n\tdisplay: none;\n\tposition: fixed;\n\twidth: 110px;\n\theight: 110px;\n\tz-index: 30;\n\tright: 10px;\n\tbottom: 10px;\n\n\t-webkit-user-select: none;\n}\n\n.reveal .controls button {\n\tpadding: 0;\n\tposition: absolute;\n\topacity: 0.05;\n\twidth: 0;\n\theight: 0;\n\tbackground-color: transparent;\n\tborder: 12px solid transparent;\n\ttransform: scale(.9999);\n\ttransition: all 0.2s ease;\n\t-webkit-appearance: none;\n\t-webkit-tap-highlight-color: rgba( 0, 0, 0, 0 );\n}\n\n.reveal .controls .enabled {\n\topacity: 0.7;\n\tcursor: pointer;\n}\n\n.reveal .controls .enabled:active {\n\tmargin-top: 1px;\n}\n\n\t.reveal .controls .navigate-left {\n\t\ttop: 42px;\n\n\t\tborder-right-width: 22px;\n\t\tborder-right-color: #000;\n\t}\n\t\t.reveal .controls .navigate-left.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-right {\n\t\tleft: 74px;\n\t\ttop: 42px;\n\n\t\tborder-left-width: 22px;\n\t\tborder-left-color: #000;\n\t}\n\t\t.reveal .controls .navigate-right.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-up {\n\t\tleft: 42px;\n\n\t\tborder-bottom-width: 22px;\n\t\tborder-bottom-color: #000;\n\t}\n\t\t.reveal .controls .navigate-up.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\t.reveal .controls .navigate-down {\n\t\tleft: 42px;\n\t\ttop: 74px;\n\n\t\tborder-top-width: 22px;\n\t\tborder-top-color: #000;\n\t}\n\t\t.reveal .controls .navigate-down.fragmented {\n\t\t\topacity: 0.3;\n\t\t}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tposition: fixed;\n\tdisplay: none;\n\theight: 3px;\n\twidth: 100%;\n\tbottom: 0;\n\tleft: 0;\n\tz-index: 10;\n\n\tbackground-color: rgba( 0, 0, 0, 0.2 );\n}\n\t.reveal .progress:after {\n\t\tcontent: '';\n\t\tdisplay: block;\n\t\tposition: absolute;\n\t\theight: 20px;\n\t\twidth: 100%;\n\t\ttop: -20px;\n\t}\n\t.reveal .progress span {\n\t\tdisplay: block;\n\t\theight: 100%;\n\t\twidth: 0px;\n\n\t\tbackground-color: #000;\n\t\ttransition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n/*********************************************\n * SLIDE NUMBER\n *********************************************/\n\n.reveal .slide-number {\n\tposition: fixed;\n\tdisplay: block;\n\tright: 8px;\n\tbottom: 8px;\n\tz-index: 31;\n\tfont-family: Helvetica, sans-serif;\n\tfont-size: 12px;\n\tline-height: 1;\n\tcolor: #fff;\n\tbackground-color: rgba( 0, 0, 0, 0.4 );\n\tpadding: 5px;\n}\n\n.reveal .slide-number-delimiter {\n\tmargin: 0 3px;\n}\n\n/*********************************************\n * SLIDES\n *********************************************/\n\n.reveal {\n\tposition: relative;\n\twidth: 100%;\n\theight: 100%;\n\toverflow: hidden;\n\ttouch-action: none;\n}\n\n.reveal .slides {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tright: 0;\n\tbottom: 0;\n\tleft: 0;\n\tmargin: auto;\n\n\toverflow: visible;\n\tz-index: 1;\n\ttext-align: center;\n\tperspective: 600px;\n\tperspective-origin: 50% 40%;\n}\n\n.reveal .slides>section {\n\t-ms-perspective: 600px;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 100%;\n\tpadding: 20px 0px;\n\n\tz-index: 10;\n\ttransform-style: preserve-3d;\n\ttransition: transform-origin 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\ttransform 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\tvisibility 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985),\n\t\t\t\topacity 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n}\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"] .slides section {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"] .slides section {\n\ttransition-duration: 1200ms;\n}\n\n/* Slide-specific transition speed overrides */\n.reveal .slides section[data-transition-speed=\"fast\"] {\n\ttransition-duration: 400ms;\n}\n.reveal .slides section[data-transition-speed=\"slow\"] {\n\ttransition-duration: 1200ms;\n}\n\n.reveal .slides>section.stack {\n\tpadding-top: 0;\n\tpadding-bottom: 0;\n}\n\n.reveal .slides>section.present,\n.reveal .slides>section>section.present {\n\tdisplay: block;\n\tz-index: 11;\n\topacity: 1;\n}\n\n.reveal.center,\n.reveal.center .slides,\n.reveal.center .slides section {\n\tmin-height: 0 !important;\n}\n\n/* Don't allow interaction with invisible slides */\n.reveal .slides>section.future,\n.reveal .slides>section>section.future,\n.reveal .slides>section.past,\n.reveal .slides>section>section.past {\n\tpointer-events: none;\n}\n\n.reveal.overview .slides>section,\n.reveal.overview .slides>section>section {\n\tpointer-events: auto;\n}\n\n.reveal .slides>section.past,\n.reveal .slides>section.future,\n.reveal .slides>section>section.past,\n.reveal .slides>section>section.future {\n\topacity: 0;\n}\n\n\n/*********************************************\n * Mixins for readability of transitions\n *********************************************/\n\n@mixin transition-global($style) {\n\t.reveal .slides section[data-transition=#{$style}],\n\t.reveal.#{$style} .slides section:not([data-transition]) {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-past($style) {\n\t.reveal .slides>section[data-transition=#{$style}].past,\n\t.reveal .slides>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-horizontal-future($style) {\n\t.reveal .slides>section[data-transition=#{$style}].future,\n\t.reveal .slides>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n@mixin transition-vertical-past($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].past,\n\t.reveal .slides>section>section[data-transition~=#{$style}-out].past,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).past {\n\t\t@content;\n\t}\n}\n@mixin transition-vertical-future($style) {\n\t.reveal .slides>section>section[data-transition=#{$style}].future,\n\t.reveal .slides>section>section[data-transition~=#{$style}-in].future,\n\t.reveal.#{$style} .slides>section>section:not([data-transition]).future {\n\t\t@content;\n\t}\n}\n\n/*********************************************\n * SLIDE TRANSITION\n * Aliased 'linear' for backwards compatibility\n *********************************************/\n\n@each $stylename in slide, linear {\n\t.reveal.#{$stylename} section {\n\t\tbackface-visibility: hidden;\n\t}\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate(-150%, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate(150%, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate(0, -150%);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate(0, 150%);\n\t}\n}\n\n/*********************************************\n * CONVEX TRANSITION\n * Aliased 'default' for backwards compatibility\n *********************************************/\n\n@each $stylename in default, convex {\n\t@include transition-horizontal-past(#{$stylename}) {\n\t\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n\t}\n\t@include transition-horizontal-future(#{$stylename}) {\n\t\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n\t}\n\t@include transition-vertical-past(#{$stylename}) {\n\t\ttransform: translate3d(0, -300px, 0) rotateX(70deg) translate3d(0, -300px, 0);\n\t}\n\t@include transition-vertical-future(#{$stylename}) {\n\t\ttransform: translate3d(0, 300px, 0) rotateX(-70deg) translate3d(0, 300px, 0);\n\t}\n}\n\n/*********************************************\n * CONCAVE TRANSITION\n *********************************************/\n\n@include transition-horizontal-past(concave) {\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n@include transition-horizontal-future(concave) {\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n@include transition-vertical-past(concave) {\n\ttransform: translate3d(0, -80%, 0) rotateX(-70deg) translate3d(0, -80%, 0);\n}\n@include transition-vertical-future(concave) {\n\ttransform: translate3d(0, 80%, 0) rotateX(70deg) translate3d(0, 80%, 0);\n}\n\n\n/*********************************************\n * ZOOM TRANSITION\n *********************************************/\n\n@include transition-global(zoom) {\n\ttransition-timing-function: ease;\n}\n@include transition-horizontal-past(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n@include transition-horizontal-future(zoom) {\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n@include transition-vertical-past(zoom) {\n\ttransform: translate(0, -150%);\n}\n@include transition-vertical-future(zoom) {\n\ttransform: translate(0, 150%);\n}\n\n\n/*********************************************\n * CUBE TRANSITION\n *********************************************/\n\n.reveal.cube .slides {\n\tperspective: 1300px;\n}\n\n.reveal.cube .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbackface-visibility: hidden;\n\tbox-sizing: border-box;\n}\n\t.reveal.center.cube .slides section {\n\t\tmin-height: 0;\n\t}\n\t.reveal.cube .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\tborder-radius: 4px;\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.cube .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\t\ttransform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.cube .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.cube .slides>section.past {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg);\n}\n\n.reveal.cube .slides>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg);\n}\n\n.reveal.cube .slides>section>section.past {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg);\n}\n\n.reveal.cube .slides>section>section.future {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg);\n}\n\n\n/*********************************************\n * PAGE TRANSITION\n *********************************************/\n\n.reveal.page .slides {\n\tperspective-origin: 0% 50%;\n\tperspective: 3000px;\n}\n\n.reveal.page .slides section {\n\tpadding: 30px;\n\tmin-height: 700px;\n\tbox-sizing: border-box;\n}\n\t.reveal.page .slides section.past {\n\t\tz-index: 12;\n\t}\n\t.reveal.page .slides section:not(.stack):before {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\tbackground: rgba(0,0,0,0.1);\n\t\ttransform: translateZ( -20px );\n\t}\n\t.reveal.page .slides section:not(.stack):after {\n\t\tcontent: '';\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\twidth: 90%;\n\t\theight: 30px;\n\t\tleft: 5%;\n\t\tbottom: 0;\n\t\tbackground: none;\n\t\tz-index: 1;\n\n\t\tborder-radius: 4px;\n\t\tbox-shadow: 0px 95px 25px rgba(0,0,0,0.2);\n\n\t\t-webkit-transform: translateZ(-90px) rotateX( 65deg );\n\t}\n\n.reveal.page .slides>section.stack {\n\tpadding: 0;\n\tbackground: none;\n}\n\n.reveal.page .slides>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(-40%, 0, 0) rotateY(-80deg);\n}\n\n.reveal.page .slides>section.future {\n\ttransform-origin: 100% 0%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n.reveal.page .slides>section>section.past {\n\ttransform-origin: 0% 0%;\n\ttransform: translate3d(0, -40%, 0) rotateX(80deg);\n}\n\n.reveal.page .slides>section>section.future {\n\ttransform-origin: 0% 100%;\n\ttransform: translate3d(0, 0, 0);\n}\n\n\n/*********************************************\n * FADE TRANSITION\n *********************************************/\n\n.reveal .slides section[data-transition=fade],\n.reveal.fade .slides section:not([data-transition]),\n.reveal.fade .slides>section>section:not([data-transition]) {\n\ttransform: none;\n\ttransition: opacity 0.5s;\n}\n\n\n.reveal.fade.overview .slides section,\n.reveal.fade.overview .slides>section>section {\n\ttransition: none;\n}\n\n\n/*********************************************\n * NO TRANSITION\n *********************************************/\n\n@include transition-global(none) {\n\ttransform: none;\n\ttransition: none;\n}\n\n\n/*********************************************\n * PAUSED MODE\n *********************************************/\n\n.reveal .pause-overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tbackground: black;\n\tvisibility: hidden;\n\topacity: 0;\n\tz-index: 100;\n\ttransition: all 1s ease;\n}\n.reveal.paused .pause-overlay {\n\tvisibility: visible;\n\topacity: 1;\n}\n\n\n/*********************************************\n * FALLBACK\n *********************************************/\n\n.no-transforms {\n\toverflow-y: auto;\n}\n\n.no-transforms .reveal .slides {\n\tposition: relative;\n\twidth: 80%;\n\theight: auto !important;\n\ttop: 0;\n\tleft: 50%;\n\tmargin: 0;\n\ttext-align: center;\n}\n\n.no-transforms .reveal .controls,\n.no-transforms .reveal .progress {\n\tdisplay: none !important;\n}\n\n.no-transforms .reveal .slides section {\n\tdisplay: block !important;\n\topacity: 1 !important;\n\tposition: relative !important;\n\theight: auto;\n\tmin-height: 0;\n\ttop: 0;\n\tleft: -50%;\n\tmargin: 70px 0;\n\ttransform: none;\n}\n\n.no-transforms .reveal .slides section section {\n\tleft: 0;\n}\n\n.reveal .no-transition,\n.reveal .no-transition * {\n\ttransition: none !important;\n}\n\n\n/*********************************************\n * PER-SLIDE BACKGROUNDS\n *********************************************/\n\n.reveal .backgrounds {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\ttop: 0;\n\tleft: 0;\n\tperspective: 600px;\n}\n\t.reveal .slide-background {\n\t\tdisplay: none;\n\t\tposition: absolute;\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\n\t\tbackground-color: rgba( 0, 0, 0, 0 );\n\t\tbackground-position: 50% 50%;\n\t\tbackground-repeat: no-repeat;\n\t\tbackground-size: cover;\n\n\t\ttransition: all 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\t.reveal .slide-background.stack {\n\t\tdisplay: block;\n\t}\n\n\t.reveal .slide-background.present {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.print-pdf .reveal .slide-background {\n\t\topacity: 1 !important;\n\t\tvisibility: visible !important;\n\t}\n\n/* Video backgrounds */\n.reveal .slide-background video {\n\tposition: absolute;\n\twidth: 100%;\n\theight: 100%;\n\tmax-width: none;\n\tmax-height: none;\n\ttop: 0;\n\tleft: 0;\n}\n\n/* Immediate transition style */\n.reveal[data-background-transition=none]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=none] {\n\ttransition: none;\n}\n\n/* Slide */\n.reveal[data-background-transition=slide]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=slide] {\n\topacity: 1;\n\tbackface-visibility: hidden;\n}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.past,\n\t.reveal>.backgrounds .slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(-100%, 0);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background.future,\n\t.reveal>.backgrounds .slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(100%, 0);\n\t}\n\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.past,\n\t.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=slide] {\n\t\ttransform: translate(0, -100%);\n\t}\n\t.reveal[data-background-transition=slide]>.backgrounds .slide-background>.slide-background.future,\n\t.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=slide] {\n\t\ttransform: translate(0, 100%);\n\t}\n\n\n/* Convex */\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(-90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=convex]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=convex] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(-90deg) translate3d(0, 100%, 0);\n}\n\n\n/* Concave */\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(-100%, 0, 0) rotateY(90deg) translate3d(-100%, 0, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(100%, 0, 0) rotateY(-90deg) translate3d(100%, 0, 0);\n}\n\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, -100%, 0) rotateX(-90deg) translate3d(0, -100%, 0);\n}\n.reveal[data-background-transition=concave]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=concave] {\n\topacity: 0;\n\ttransform: translate3d(0, 100%, 0) rotateX(90deg) translate3d(0, 100%, 0);\n}\n\n/* Zoom */\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background,\n.reveal>.backgrounds .slide-background[data-background-transition=zoom] {\n\ttransition-timing-function: ease;\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.past,\n.reveal>.backgrounds .slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background.future,\n.reveal>.backgrounds .slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.past,\n.reveal>.backgrounds .slide-background>.slide-background.past[data-background-transition=zoom] {\n\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(16);\n}\n.reveal[data-background-transition=zoom]>.backgrounds .slide-background>.slide-background.future,\n.reveal>.backgrounds .slide-background>.slide-background.future[data-background-transition=zoom] {\n\topacity: 0;\n\tvisibility: hidden;\n\ttransform: scale(0.2);\n}\n\n\n/* Global transition speed settings */\n.reveal[data-transition-speed=\"fast\"]>.backgrounds .slide-background {\n\ttransition-duration: 400ms;\n}\n.reveal[data-transition-speed=\"slow\"]>.backgrounds .slide-background {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * OVERVIEW\n *********************************************/\n\n.reveal.overview {\n\tperspective-origin: 50% 50%;\n\tperspective: 700px;\n\n\t.slides section {\n\t\theight: 700px;\n\t\topacity: 1 !important;\n\t\toverflow: hidden;\n\t\tvisibility: visible !important;\n\t\tcursor: pointer;\n\t\tbox-sizing: border-box;\n\t}\n\t.slides section:hover,\n\t.slides section.present {\n\t\toutline: 10px solid rgba(150,150,150,0.4);\n\t\toutline-offset: 10px;\n\t}\n\t.slides section .fragment {\n\t\topacity: 1;\n\t\ttransition: none;\n\t}\n\t.slides section:after,\n\t.slides section:before {\n\t\tdisplay: none !important;\n\t}\n\t.slides>section.stack {\n\t\tpadding: 0;\n\t\ttop: 0 !important;\n\t\tbackground: none;\n\t\toutline: none;\n\t\toverflow: visible;\n\t}\n\n\t.backgrounds {\n\t\tperspective: inherit;\n\t}\n\n\t.backgrounds .slide-background {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\n\t\t// This can't be applied to the slide itself in Safari\n\t\toutline: 10px solid rgba(150,150,150,0.1);\n\t\toutline-offset: 10px;\n\t}\n}\n\n// Disable transitions transitions while we're activating\n// or deactivating the overview mode.\n.reveal.overview .slides section,\n.reveal.overview-deactivating .slides section {\n\ttransition: none;\n}\n\n.reveal.overview .backgrounds .slide-background,\n.reveal.overview-deactivating .backgrounds .slide-background {\n\ttransition: none;\n}\n\n.reveal.overview-animated .slides {\n\ttransition: transform 0.4s ease;\n}\n\n\n/*********************************************\n * RTL SUPPORT\n *********************************************/\n\n.reveal.rtl .slides,\n.reveal.rtl .slides h1,\n.reveal.rtl .slides h2,\n.reveal.rtl .slides h3,\n.reveal.rtl .slides h4,\n.reveal.rtl .slides h5,\n.reveal.rtl .slides h6 {\n\tdirection: rtl;\n\tfont-family: sans-serif;\n}\n\n.reveal.rtl pre,\n.reveal.rtl code {\n\tdirection: ltr;\n}\n\n.reveal.rtl ol,\n.reveal.rtl ul {\n\ttext-align: right;\n}\n\n.reveal.rtl .progress span {\n\tfloat: right\n}\n\n/*********************************************\n * PARALLAX BACKGROUND\n *********************************************/\n\n.reveal.has-parallax-background .backgrounds {\n\ttransition: all 0.8s ease;\n}\n\n/* Global transition speed settings */\n.reveal.has-parallax-background[data-transition-speed=\"fast\"] .backgrounds {\n\ttransition-duration: 400ms;\n}\n.reveal.has-parallax-background[data-transition-speed=\"slow\"] .backgrounds {\n\ttransition-duration: 1200ms;\n}\n\n\n/*********************************************\n * LINK PREVIEW OVERLAY\n *********************************************/\n\n.reveal .overlay {\n\tposition: absolute;\n\ttop: 0;\n\tleft: 0;\n\twidth: 100%;\n\theight: 100%;\n\tz-index: 1000;\n\tbackground: rgba( 0, 0, 0, 0.9 );\n\topacity: 0;\n\tvisibility: hidden;\n\ttransition: all 0.3s ease;\n}\n\t.reveal .overlay.visible {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay .spinner {\n\t\tposition: absolute;\n\t\tdisplay: block;\n\t\ttop: 50%;\n\t\tleft: 50%;\n\t\twidth: 32px;\n\t\theight: 32px;\n\t\tmargin: -16px 0 0 -16px;\n\t\tz-index: 10;\n\t\tbackground-image: url(data:image/gif;base64,R0lGODlhIAAgAPMAAJmZmf%2F%2F%2F6%2Bvr8nJybW1tcDAwOjo6Nvb26ioqKOjo7Ozs%2FLy8vz8%2FAAAAAAAAAAAACH%2FC05FVFNDQVBFMi4wAwEAAAAh%2FhpDcmVhdGVkIHdpdGggYWpheGxvYWQuaW5mbwAh%2BQQJCgAAACwAAAAAIAAgAAAE5xDISWlhperN52JLhSSdRgwVo1ICQZRUsiwHpTJT4iowNS8vyW2icCF6k8HMMBkCEDskxTBDAZwuAkkqIfxIQyhBQBFvAQSDITM5VDW6XNE4KagNh6Bgwe60smQUB3d4Rz1ZBApnFASDd0hihh12BkE9kjAJVlycXIg7CQIFA6SlnJ87paqbSKiKoqusnbMdmDC2tXQlkUhziYtyWTxIfy6BE8WJt5YJvpJivxNaGmLHT0VnOgSYf0dZXS7APdpB309RnHOG5gDqXGLDaC457D1zZ%2FV%2FnmOM82XiHRLYKhKP1oZmADdEAAAh%2BQQJCgAAACwAAAAAIAAgAAAE6hDISWlZpOrNp1lGNRSdRpDUolIGw5RUYhhHukqFu8DsrEyqnWThGvAmhVlteBvojpTDDBUEIFwMFBRAmBkSgOrBFZogCASwBDEY%2FCZSg7GSE0gSCjQBMVG023xWBhklAnoEdhQEfyNqMIcKjhRsjEdnezB%2BA4k8gTwJhFuiW4dokXiloUepBAp5qaKpp6%2BHo7aWW54wl7obvEe0kRuoplCGepwSx2jJvqHEmGt6whJpGpfJCHmOoNHKaHx61WiSR92E4lbFoq%2BB6QDtuetcaBPnW6%2BO7wDHpIiK9SaVK5GgV543tzjgGcghAgAh%2BQQJCgAAACwAAAAAIAAgAAAE7hDISSkxpOrN5zFHNWRdhSiVoVLHspRUMoyUakyEe8PTPCATW9A14E0UvuAKMNAZKYUZCiBMuBakSQKG8G2FzUWox2AUtAQFcBKlVQoLgQReZhQlCIJesQXI5B0CBnUMOxMCenoCfTCEWBsJColTMANldx15BGs8B5wlCZ9Po6OJkwmRpnqkqnuSrayqfKmqpLajoiW5HJq7FL1Gr2mMMcKUMIiJgIemy7xZtJsTmsM4xHiKv5KMCXqfyUCJEonXPN2rAOIAmsfB3uPoAK%2B%2BG%2Bw48edZPK%2BM6hLJpQg484enXIdQFSS1u6UhksENEQAAIfkECQoAAAAsAAAAACAAIAAABOcQyEmpGKLqzWcZRVUQnZYg1aBSh2GUVEIQ2aQOE%2BG%2BcD4ntpWkZQj1JIiZIogDFFyHI0UxQwFugMSOFIPJftfVAEoZLBbcLEFhlQiqGp1Vd140AUklUN3eCA51C1EWMzMCezCBBmkxVIVHBWd3HHl9JQOIJSdSnJ0TDKChCwUJjoWMPaGqDKannasMo6WnM562R5YluZRwur0wpgqZE7NKUm%2BFNRPIhjBJxKZteWuIBMN4zRMIVIhffcgojwCF117i4nlLnY5ztRLsnOk%2BaV%2BoJY7V7m76PdkS4trKcdg0Zc0tTcKkRAAAIfkECQoAAAAsAAAAACAAIAAABO4QyEkpKqjqzScpRaVkXZWQEximw1BSCUEIlDohrft6cpKCk5xid5MNJTaAIkekKGQkWyKHkvhKsR7ARmitkAYDYRIbUQRQjWBwJRzChi9CRlBcY1UN4g0%2FVNB0AlcvcAYHRyZPdEQFYV8ccwR5HWxEJ02YmRMLnJ1xCYp0Y5idpQuhopmmC2KgojKasUQDk5BNAwwMOh2RtRq5uQuPZKGIJQIGwAwGf6I0JXMpC8C7kXWDBINFMxS4DKMAWVWAGYsAdNqW5uaRxkSKJOZKaU3tPOBZ4DuK2LATgJhkPJMgTwKCdFjyPHEnKxFCDhEAACH5BAkKAAAALAAAAAAgACAAAATzEMhJaVKp6s2nIkolIJ2WkBShpkVRWqqQrhLSEu9MZJKK9y1ZrqYK9WiClmvoUaF8gIQSNeF1Er4MNFn4SRSDARWroAIETg1iVwuHjYB1kYc1mwruwXKC9gmsJXliGxc%2BXiUCby9ydh1sOSdMkpMTBpaXBzsfhoc5l58Gm5yToAaZhaOUqjkDgCWNHAULCwOLaTmzswadEqggQwgHuQsHIoZCHQMMQgQGubVEcxOPFAcMDAYUA85eWARmfSRQCdcMe0zeP1AAygwLlJtPNAAL19DARdPzBOWSm1brJBi45soRAWQAAkrQIykShQ9wVhHCwCQCACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiRMDjI0Fd30%2FiI2UA5GSS5UDj2l6NoqgOgN4gksEBgYFf0FDqKgHnyZ9OX8HrgYHdHpcHQULXAS2qKpENRg7eAMLC7kTBaixUYFkKAzWAAnLC7FLVxLWDBLKCwaKTULgEwbLA4hJtOkSBNqITT3xEgfLpBtzE%2FjiuL04RGEBgwWhShRgQExHBAAh%2BQQJCgAAACwAAAAAIAAgAAAE7xDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfZiCqGk5dTESJeaOAlClzsJsqwiJwiqnFrb2nS9kmIcgEsjQydLiIlHehhpejaIjzh9eomSjZR%2BipslWIRLAgMDOR2DOqKogTB9pCUJBagDBXR6XB0EBkIIsaRsGGMMAxoDBgYHTKJiUYEGDAzHC9EACcUGkIgFzgwZ0QsSBcXHiQvOwgDdEwfFs0sDzt4S6BK4xYjkDOzn0unFeBzOBijIm1Dgmg5YFQwsCMjp1oJ8LyIAACH5BAkKAAAALAAAAAAgACAAAATwEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GGl6NoiPOH16iZKNlH6KmyWFOggHhEEvAwwMA0N9GBsEC6amhnVcEwavDAazGwIDaH1ipaYLBUTCGgQDA8NdHz0FpqgTBwsLqAbWAAnIA4FWKdMLGdYGEgraigbT0OITBcg5QwPT4xLrROZL6AuQAPUS7bxLpoWidY0JtxLHKhwwMJBTHgPKdEQAACH5BAkKAAAALAAAAAAgACAAAATrEMhJaVKp6s2nIkqFZF2VIBWhUsJaTokqUCoBq%2BE71SRQeyqUToLA7VxF0JDyIQh%2FMVVPMt1ECZlfcjZJ9mIKoaTl1MRIl5o4CUKXOwmyrCInCKqcWtvadL2SYhyASyNDJ0uIiUd6GAULDJCRiXo1CpGXDJOUjY%2BYip9DhToJA4RBLwMLCwVDfRgbBAaqqoZ1XBMHswsHtxtFaH1iqaoGNgAIxRpbFAgfPQSqpbgGBqUD1wBXeCYp1AYZ19JJOYgH1KwA4UBvQwXUBxPqVD9L3sbp2BNk2xvvFPJd%2BMFCN6HAAIKgNggY0KtEBAAh%2BQQJCgAAACwAAAAAIAAgAAAE6BDISWlSqerNpyJKhWRdlSAVoVLCWk6JKlAqAavhO9UkUHsqlE6CwO1cRdCQ8iEIfzFVTzLdRAmZX3I2SfYIDMaAFdTESJeaEDAIMxYFqrOUaNW4E4ObYcCXaiBVEgULe0NJaxxtYksjh2NLkZISgDgJhHthkpU4mW6blRiYmZOlh4JWkDqILwUGBnE6TYEbCgevr0N1gH4At7gHiRpFaLNrrq8HNgAJA70AWxQIH1%2BvsYMDAzZQPC9VCNkDWUhGkuE5PxJNwiUK4UfLzOlD4WvzAHaoG9nxPi5d%2BjYUqfAhhykOFwJWiAAAIfkECQoAAAAsAAAAACAAIAAABPAQyElpUqnqzaciSoVkXVUMFaFSwlpOCcMYlErAavhOMnNLNo8KsZsMZItJEIDIFSkLGQoQTNhIsFehRww2CQLKF0tYGKYSg%2BygsZIuNqJksKgbfgIGepNo2cIUB3V1B3IvNiBYNQaDSTtfhhx0CwVPI0UJe0%2Bbm4g5VgcGoqOcnjmjqDSdnhgEoamcsZuXO1aWQy8KAwOAuTYYGwi7w5h%2BKr0SJ8MFihpNbx%2B4Erq7BYBuzsdiH1jCAzoSfl0rVirNbRXlBBlLX%2BBP0XJLAPGzTkAuAOqb0WT5AH7OcdCm5B8TgRwSRKIHQtaLCwg1RAAAOwAAAAAAAAAAAA%3D%3D);\n\n\t\tvisibility: visible;\n\t\topacity: 0.6;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay header {\n\t\tposition: absolute;\n\t\tleft: 0;\n\t\ttop: 0;\n\t\twidth: 100%;\n\t\theight: 40px;\n\t\tz-index: 2;\n\t\tborder-bottom: 1px solid #222;\n\t}\n\t\t.reveal .overlay header a {\n\t\t\tdisplay: inline-block;\n\t\t\twidth: 40px;\n\t\t\theight: 40px;\n\t\t\tpadding: 0 10px;\n\t\t\tfloat: right;\n\t\t\topacity: 0.6;\n\n\t\t\tbox-sizing: border-box;\n\t\t}\n\t\t\t.reveal .overlay header a:hover {\n\t\t\t\topacity: 1;\n\t\t\t}\n\t\t\t.reveal .overlay header a .icon {\n\t\t\t\tdisplay: inline-block;\n\t\t\t\twidth: 20px;\n\t\t\t\theight: 20px;\n\n\t\t\t\tbackground-position: 50% 50%;\n\t\t\t\tbackground-size: 100%;\n\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t}\n\t\t\t.reveal .overlay header a.close .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABkklEQVRYR8WX4VHDMAxG6wnoJrABZQPYBCaBTWAD2g1gE5gg6OOsXuxIlr40d81dfrSJ9V4c2VLK7spHuTJ/5wpM07QXuXc5X0opX2tEJcadjHuV80li/FgxTIEK/5QBCICBD6xEhSMGHgQPgBgLiYVAB1dpSqKDawxTohFw4JSEA3clzgIBPCURwE2JucBR7rhPJJv5OpJwDX+SfDjgx1wACQeJG1aChP9K/IMmdZ8DtESV1WyP3Bt4MwM6sj4NMxMYiqUWHQu4KYA/SYkIjOsm3BXYWMKFDwU2khjCQ4ELJUJ4SmClRArOCmSXGuKma0fYD5CbzHxFpCSGAhfAVSSUGDUk2BWZaff2g6GE15BsBQ9nwmpIGDiyHQddwNTMKkbZaf9fajXQca1EX44puJZUsnY0ObGmITE3GVLCbEhQUjGVt146j6oasWN+49Vph2w1pZ5EansNZqKBm1txbU57iRRcZ86RWMDdWtBJUHBHwoQPi1GV+JCbntmvok7iTX4/Up9mgyTc/FJYDTcndgH/AA5A/CHsyEkVAAAAAElFTkSuQmCC);\n\t\t\t}\n\t\t\t.reveal .overlay header a.external .icon {\n\t\t\t\tbackground-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAcElEQVRYR+2WSQoAIQwEzf8f7XiOMkUQxUPlGkM3hVmiQfQR9GYnH1SsAQlI4DiBqkCMoNb9y2e90IAEJPAcgdznU9+engMaeJ7Azh5Y1U67gAho4DqBqmB1buAf0MB1AlVBek83ZPkmJMGc1wAR+AAqod/B97TRpQAAAABJRU5ErkJggg==);\n\t\t\t}\n\n\t.reveal .overlay .viewport {\n\t\tposition: absolute;\n\t\ttop: 40px;\n\t\tright: 0;\n\t\tbottom: 0;\n\t\tleft: 0;\n\t}\n\n\t.reveal .overlay.overlay-preview .viewport iframe {\n\t\twidth: 100%;\n\t\theight: 100%;\n\t\tmax-width: 100%;\n\t\tmax-height: 100%;\n\t\tborder: 0;\n\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransition: all 0.3s ease;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .viewport iframe {\n\t\topacity: 1;\n\t\tvisibility: visible;\n\t}\n\n\t.reveal .overlay.overlay-preview.loaded .spinner {\n\t\topacity: 0;\n\t\tvisibility: hidden;\n\t\ttransform: scale(0.2);\n\t}\n\n\t.reveal .overlay.overlay-help .viewport {\n\t\toverflow: auto;\n\t\tcolor: #fff;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner {\n\t\twidth: 600px;\n\t\tmargin: 0 auto;\n\t\tpadding: 60px;\n\t\ttext-align: center;\n\t\tletter-spacing: normal;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner .title {\n\t\tfont-size: 20px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table {\n\t\tborder: 1px solid #fff;\n\t\tborder-collapse: collapse;\n\t\tfont-size: 14px;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th,\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table td {\n\t\twidth: 200px;\n\t\tpadding: 10px;\n\t\tborder: 1px solid #fff;\n\t\tvertical-align: middle;\n\t}\n\n\t.reveal .overlay.overlay-help .viewport .viewport-inner table th {\n\t\tpadding-top: 20px;\n\t\tpadding-bottom: 20px;\n\t}\n\n\n\n/*********************************************\n * PLAYBACK COMPONENT\n *********************************************/\n\n.reveal .playback {\n\tposition: fixed;\n\tleft: 15px;\n\tbottom: 20px;\n\tz-index: 30;\n\tcursor: pointer;\n\ttransition: all 400ms ease;\n}\n\n.reveal.overview .playback {\n\topacity: 0;\n\tvisibility: hidden;\n}\n\n\n/*********************************************\n * ROLLING LINKS\n *********************************************/\n\n.reveal .roll {\n\tdisplay: inline-block;\n\tline-height: 1.2;\n\toverflow: hidden;\n\n\tvertical-align: top;\n\tperspective: 400px;\n\tperspective-origin: 50% 50%;\n}\n\t.reveal .roll:hover {\n\t\tbackground: none;\n\t\ttext-shadow: none;\n\t}\n.reveal .roll span {\n\tdisplay: block;\n\tposition: relative;\n\tpadding: 0 2px;\n\n\tpointer-events: none;\n\ttransition: all 400ms ease;\n\ttransform-origin: 50% 0%;\n\ttransform-style: preserve-3d;\n\tbackface-visibility: hidden;\n}\n\t.reveal .roll:hover span {\n\t    background: rgba(0,0,0,0.5);\n\t    transform: translate3d( 0px, 0px, -45px ) rotateX( 90deg );\n\t}\n.reveal .roll span:after {\n\tcontent: attr(data-title);\n\n\tdisplay: block;\n\tposition: absolute;\n\tleft: 0;\n\ttop: 0;\n\tpadding: 0 2px;\n\tbackface-visibility: hidden;\n\ttransform-origin: 50% 0%;\n\ttransform: translate3d( 0px, 110%, 0px ) rotateX( -90deg );\n}\n\n\n/*********************************************\n * SPEAKER NOTES\n *********************************************/\n\n// Hide on-page notes\n.reveal aside.notes {\n\tdisplay: none;\n}\n\n// An interface element that can optionally be used to show the\n// speaker notes to all viewers, on top of the presentation\n.reveal .speaker-notes {\n\tdisplay: none;\n\tposition: absolute;\n\twidth: 70%;\n\tmax-height: 15%;\n\tleft: 15%;\n\tbottom: 26px;\n\tpadding: 10px;\n\tz-index: 1;\n\tfont-size: 18px;\n\tline-height: 1.4;\n\tcolor: #fff;\n\tbackground-color: rgba(0,0,0,0.5);\n\toverflow: auto;\n\tbox-sizing: border-box;\n\ttext-align: left;\n\tfont-family: Helvetica, sans-serif;\n\t-webkit-overflow-scrolling: touch;\n}\n\n.reveal .speaker-notes.visible:not(:empty) {\n\tdisplay: block;\n}\n\n@media screen and (max-width: 1024px) {\n\t.reveal .speaker-notes {\n\t\tfont-size: 14px;\n\t}\n}\n\n@media screen and (max-width: 600px) {\n\t.reveal .speaker-notes {\n\t\twidth: 90%;\n\t\tleft: 5%;\n\t}\n}\n\n\n/*********************************************\n * ZOOM PLUGIN\n *********************************************/\n\n.zoomed .reveal *,\n.zoomed .reveal *:before,\n.zoomed .reveal *:after {\n\tbackface-visibility: visible !important;\n}\n\n.zoomed .reveal .progress,\n.zoomed .reveal .controls {\n\topacity: 0;\n}\n\n.zoomed .reveal .roll span {\n\tbackground: none;\n}\n\n.zoomed .reveal .roll span:after {\n\tvisibility: hidden;\n}\n\n\n"
  },
  {
    "path": "talk/reveal.js/css/theme/README.md",
    "content": "## Dependencies\n\nThemes are written using Sass to keep things modular and reduce the need for repeated selectors across files. Make sure that you have the reveal.js development environment including the Grunt dependencies installed before proceding: https://github.com/hakimel/reveal.js#full-setup\n\n## Creating a Theme\n\nTo create your own theme, start by duplicating a ```.scss``` file in [/css/theme/source](https://github.com/hakimel/reveal.js/blob/master/css/theme/source). It will be automatically compiled by Grunt from Sass to CSS (see the [Gruntfile](https://github.com/hakimel/reveal.js/blob/master/Gruntfile.js)) when you run `grunt css-themes`.\n\nEach theme file does four things in the following order:\n\n1. **Include [/css/theme/template/mixins.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/mixins.scss)**\nShared utility functions.\n\n2. **Include [/css/theme/template/settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss)**\nDeclares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.\n\n3. **Override**\nThis is where you override the default theme. Either by specifying variables (see [settings.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/settings.scss) for reference) or by adding any selectors and styles you please.\n\n4. **Include [/css/theme/template/theme.scss](https://github.com/hakimel/reveal.js/blob/master/css/theme/template/theme.scss)**\nThe template theme file which will generate final CSS output based on the currently defined variables.\n"
  },
  {
    "path": "talk/reveal.js/css/theme/beige.css",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #f7f2d3;\n  background: -moz-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, white), color-stop(100%, #f7f2d3));\n  background: -webkit-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -o-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: -ms-radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background: radial-gradient(center, circle cover, white 0%, #f7f2d3 100%);\n  background-color: #f7f3de; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: rgba(79, 64, 28, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #8b743d;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #c0a86e;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #564826; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #8b743d;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #8b743d; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #8b743d; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #8b743d; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #8b743d; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #c0a86e; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #c0a86e; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #c0a86e; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #c0a86e; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #8b743d;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/black.css",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-light-background, section.has-light-background h1, section.has-light-background h2, section.has-light-background h3, section.has-light-background h4, section.has-light-background h5, section.has-light-background h6 {\n  color: #222; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #fff; }\n\n::selection {\n  color: #fff;\n  background: #bee4fd;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #fff;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #42affa;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8dcffc;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #068de9; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #fff;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #42affa;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #42affa; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #42affa; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #42affa; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #42affa; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8dcffc; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8dcffc; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8dcffc; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8dcffc; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #42affa;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/blood.css",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #222;\n  background-color: #222; }\n\n.reveal {\n  font-family: Ubuntu, \"sans-serif\";\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #a23;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: Ubuntu, \"sans-serif\";\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 2px 2px 2px #222;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #a23;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #dd5566;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #6a1520; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #a23;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #a23; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #a23; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #a23; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #a23; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #dd5566; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #dd5566; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #dd5566; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #dd5566; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #a23;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n\n.reveal p {\n  font-weight: 300;\n  text-shadow: 1px 1px #222; }\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  font-weight: 700; }\n\n.reveal p code {\n  background-color: #23241f;\n  display: inline-block;\n  border-radius: 7px; }\n\n.reveal small code {\n  vertical-align: baseline; }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/fonts/google-fonts.css",
    "content": "/* latin-ext */\n@font-face {\n  font-family: 'News Cycle';\n  font-style: normal;\n  font-weight: 400;\n  src: local('News Cycle'), local('NewsCycle'), url(s/newscycle/v13/d03oiboZGiaNuMDvH253CgsYbbCjybiHxArTLjt7FRU.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'News Cycle';\n  font-style: normal;\n  font-weight: 400;\n  src: local('News Cycle'), local('NewsCycle'), url(s/newscycle/v13/9Xe8dq6pQDsPyVH2D3tMQgzyDMXhdD8sAj6OAJTFsBI.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n/* latin-ext */\n@font-face {\n  font-family: 'News Cycle';\n  font-style: normal;\n  font-weight: 700;\n  src: local('News Cycle Bold'), local('NewsCycle-Bold'), url(s/newscycle/v13/G28Ny31cr5orMqEQy6ljtzrEaqfC9P2pvLXik1Kbr9s.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'News Cycle';\n  font-style: normal;\n  font-weight: 700;\n  src: local('News Cycle Bold'), local('NewsCycle-Bold'), url(s/newscycle/v13/G28Ny31cr5orMqEQy6ljt2aVI6zN22yiurzcBKxPjFE.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n\n/* latin-ext */\n@font-face {\n  font-family: 'Lato';\n  font-style: normal;\n  font-weight: 400;\n  src: local('Lato Regular'), local('Lato-Regular'), url(s/lato/v11/8qcEw_nrk_5HEcCpYdJu8BTbgVql8nDJpwnrE27mub0.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'Lato';\n  font-style: normal;\n  font-weight: 400;\n  src: local('Lato Regular'), local('Lato-Regular'), url(s/lato/v11/MDadn8DQ_3oT6kvnUq_2r_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n/* latin-ext */\n@font-face {\n  font-family: 'Lato';\n  font-style: normal;\n  font-weight: 700;\n  src: local('Lato Bold'), local('Lato-Bold'), url(s/lato/v11/rZPI2gHXi8zxUjnybc2ZQFKPGs1ZzpMvnHX-7fPOuAc.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'Lato';\n  font-style: normal;\n  font-weight: 700;\n  src: local('Lato Bold'), local('Lato-Bold'), url(s/lato/v11/MgNNr5y1C_tIEuLEmicLmwLUuEpTyoUstqEm5AMlJo4.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n/* latin-ext */\n@font-face {\n  font-family: 'Lato';\n  font-style: italic;\n  font-weight: 400;\n  src: local('Lato Italic'), local('Lato-Italic'), url(s/lato/v11/cT2GN3KRBUX69GVJ2b2hxn-_kf6ByYO6CLYdB4HQE-Y.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'Lato';\n  font-style: italic;\n  font-weight: 400;\n  src: local('Lato Italic'), local('Lato-Italic'), url(s/lato/v11/1KWMyx7m-L0fkQGwYhWwuuvvDin1pK8aKteLpeZ5c0A.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n/* latin-ext */\n@font-face {\n  font-family: 'Lato';\n  font-style: italic;\n  font-weight: 700;\n  src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(s/lato/v11/AcvTq8Q0lyKKNxRlL28Rn4X0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');\n  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;\n}\n/* latin */\n@font-face {\n  font-family: 'Lato';\n  font-style: italic;\n  font-weight: 700;\n  src: local('Lato Bold Italic'), local('Lato-BoldItalic'), url(s/lato/v11/HkF_qI1x_noxlxhrhMQYEJBw1xU1rKptJj_0jans920.woff2) format('woff2');\n  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;\n}\n"
  },
  {
    "path": "talk/reveal.js/css/theme/league.css",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #1c1e20;\n  background: -moz-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #555a5f), color-stop(100%, #1c1e20));\n  background: -webkit-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -o-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: -ms-radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background: radial-gradient(center, circle cover, #555a5f 0%, #1c1e20 100%);\n  background-color: #2b2b2b; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #FF5E99;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 20px 20px rgba(0, 0, 0, 0.15); }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #13DAEC;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #71e9f4;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #0d99a5; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #13DAEC;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #13DAEC; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #13DAEC; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #13DAEC; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #13DAEC; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #71e9f4; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #71e9f4; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #71e9f4; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #71e9f4; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #13DAEC;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/moon.css",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #002b36;\n  background-color: #002b36; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #93a1a1; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee8d5;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #93a1a1;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/night.css",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #111;\n  background-color: #111; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 30px;\n  font-weight: normal;\n  color: #eee; }\n\n::selection {\n  color: #fff;\n  background: #e7ad52;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #eee;\n  font-family: \"Montserrat\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.03em;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #e7ad52;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #f3d7ac;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #d08a1d; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #eee;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #e7ad52;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #e7ad52; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #e7ad52; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #e7ad52; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #e7ad52; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #f3d7ac; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #f3d7ac; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #f3d7ac; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #f3d7ac; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #e7ad52;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/serif.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #F0F1EB;\n  background-color: #F0F1EB; }\n\n.reveal {\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: #26351C;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #383D3D;\n  font-family: \"Palatino Linotype\", \"Book Antiqua\", Palatino, FreeSerif, serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #51483D;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #8b7c69;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #25211c; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #51483D;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #51483D; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #51483D; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #51483D; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #51483D; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #8b7c69; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #8b7c69; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #8b7c69; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #8b7c69; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #51483D;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/simple.css",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(fonts/google-fonts.css);\n/*@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);*/\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #000; }\n\n::selection {\n  color: #fff;\n  background: rgba(0, 0, 0, 0.99);\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #000;\n  font-family: \"News Cycle\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: none;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #00008B;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #0000f1;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #00003f; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #000;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #00008B;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #00008B; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #00008B; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #00008B; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #00008B; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #0000f1; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #0000f1; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #0000f1; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #0000f1; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #00008B;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/sky.css",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n.reveal a {\n  line-height: 1.3em; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #add9e4;\n  background: -moz-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, #f7fbfc), color-stop(100%, #add9e4));\n  background: -webkit-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -o-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: -ms-radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background: radial-gradient(center, circle cover, #f7fbfc 0%, #add9e4 100%);\n  background-color: #f7fbfc; }\n\n.reveal {\n  font-family: \"Open Sans\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #333; }\n\n::selection {\n  color: #fff;\n  background: #134674;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #333;\n  font-family: \"Quicksand\", sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: -0.08em;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #3b759e;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #74a7cb;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #264c66; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #333;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #3b759e;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #3b759e; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #3b759e; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #3b759e; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #3b759e; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #74a7cb; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #74a7cb; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #74a7cb; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #74a7cb; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #3b759e;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/solarized.css",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n  color-profile: sRGB;\n  rendering-intent: auto; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fdf6e3;\n  background-color: #fdf6e3; }\n\n.reveal {\n  font-family: \"Lato\", sans-serif;\n  font-size: 36px;\n  font-weight: normal;\n  color: #657b83; }\n\n::selection {\n  color: #fff;\n  background: #d33682;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #586e75;\n  font-family: \"League Gothic\", Impact, sans-serif;\n  font-weight: normal;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 3.77em; }\n\n.reveal h2 {\n  font-size: 2.11em; }\n\n.reveal h3 {\n  font-size: 1.55em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #268bd2;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #78b9e6;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a6091; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #657b83;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #268bd2;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #268bd2; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #268bd2; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #268bd2; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #268bd2; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #78b9e6; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #78b9e6; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #78b9e6; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #78b9e6; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #268bd2;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/css/theme/source/beige.scss",
    "content": "/**\n * Beige theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: #333;\n$headingColor: #333;\n$headingTextShadow: none;\n$backgroundColor: #f7f3de;\n$linkColor: #8b743d;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(79, 64, 28, 0.99);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(247,242,211,1), rgba(255,255,255,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/source/black.scss",
    "content": "/**\n * Black theme for reveal.js. This is the opposite of the 'white' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #222;\n\n$mainColor: #fff;\n$headingColor: #fff;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #42affa;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-light-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #222;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/source/blood.scss",
    "content": "/**\n * Blood theme for reveal.js\n * Author: Walther http://github.com/Walther\n *\n * Designed to be used with highlight.js theme\n * \"monokai_sublime.css\" available from\n * https://github.com/isagalaev/highlight.js/\n *\n * For other themes, change $codeBackground accordingly.\n *\n */\n\n // Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n// Include theme-specific fonts\n\n@import url(https://fonts.googleapis.com/css?family=Ubuntu:300,700,300italic,700italic);\n\n// Colors used in the theme\n$blood: #a23;\n$coal: #222;\n$codeBackground: #23241f;\n\n$backgroundColor: $coal;\n\n// Main text\n$mainFont: Ubuntu, 'sans-serif';\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Headings\n$headingFont: Ubuntu, 'sans-serif';\n$headingTextShadow: 2px 2px 2px $coal;\n\n// h1 shadow, borrowed humbly from \n// (c) Default theme by Hakim El Hattab\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Links\n$linkColor: $blood;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: $blood;\n$selectionColor: #fff;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n\n// some overrides after theme template import\n\n.reveal p {\n    font-weight: 300;\n    text-shadow: 1px 1px $coal;\n}\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n    font-weight: 700;\n}\n\n.reveal p code {\n    background-color: $codeBackground;\n    display: inline-block;\n    border-radius: 7px;\n}\n\n.reveal small code {\n    vertical-align: baseline;\n}"
  },
  {
    "path": "talk/reveal.js/css/theme/source/league.scss",
    "content": "/**\n * League theme for reveal.js.\n *\n * This was the default theme pre-3.0.0.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n// Override theme settings (see ../template/settings.scss)\n$headingTextShadow: 0px 0px 6px rgba(0,0,0,0.2);\n$heading1TextShadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0,0,0,.1), 0 0 5px rgba(0,0,0,.1), 0 1px 3px rgba(0,0,0,.3), 0 3px 5px rgba(0,0,0,.2), 0 5px 10px rgba(0,0,0,.25), 0 20px 20px rgba(0,0,0,.15);\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( rgba(28,30,32,1), rgba(85,90,95,1) );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/source/moon.scss",
    "content": "/**\n * Solarized Dark theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base1;\n$headingColor: $base2;\n$headingTextShadow: none;\n$backgroundColor: $base03;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "talk/reveal.js/css/theme/source/night.scss",
    "content": "/**\n * Black theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Montserrat:700);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #111;\n\n$mainFont: 'Open Sans', sans-serif;\n$linkColor: #e7ad52;\n$linkColorHover: lighten( $linkColor, 20% );\n$headingFont: 'Montserrat', Impact, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: -0.03em;\n$headingTextTransform: none;\n$selectionBackgroundColor: #e7ad52;\n$mainFontSize: 30px;\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/source/serif.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is brown.\n *\n * This theme is Copyright (C) 2012-2013 Owen Versteeg, http://owenversteeg.com - it is MIT licensed.\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$mainColor: #000;\n$headingFont: 'Palatino Linotype', 'Book Antiqua', Palatino, FreeSerif, serif;\n$headingColor: #383D3D;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #F0F1EB;\n$linkColor: #51483D;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #26351C;\n\n.reveal a {\n  line-height: 1.3em;\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "talk/reveal.js/css/theme/source/simple.scss",
    "content": "/**\n * A simple theme for reveal.js presentations, similar\n * to the default theme. The accent color is darkblue.\n *\n * This theme is Copyright (C) 2012 Owen Versteeg, https://github.com/StereotypicalApps. It is MIT licensed.\n * reveal.js is Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=News+Cycle:400,700);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Lato', sans-serif;\n$mainColor: #000;\n$headingFont: 'News Cycle', Impact, sans-serif;\n$headingColor: #000;\n$headingTextShadow: none;\n$headingTextTransform: none;\n$backgroundColor: #fff;\n$linkColor: #00008B;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: rgba(0, 0, 0, 0.99);\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/source/sky.scss",
    "content": "/**\n * Sky theme for reveal.js.\n *\n * Copyright (C) 2011-2012 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(https://fonts.googleapis.com/css?family=Quicksand:400,700,400italic,700italic);\n@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700);\n\n\n// Override theme settings (see ../template/settings.scss)\n$mainFont: 'Open Sans', sans-serif;\n$mainColor: #333;\n$headingFont: 'Quicksand', sans-serif;\n$headingColor: #333;\n$headingLetterSpacing: -0.08em;\n$headingTextShadow: none;\n$backgroundColor: #f7fbfc;\n$linkColor: #3b759e;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: #134674;\n\n// Fix links so they are not cut off\n.reveal a {\n\tline-height: 1.3em;\n}\n\n// Background generator\n@mixin bodyBackground() {\n\t@include radial-gradient( #add9e4, #f7fbfc );\n}\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "talk/reveal.js/css/theme/source/solarized.scss",
    "content": "/**\n * Solarized Light theme for reveal.js.\n * Author: Achim Staebler\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/league-gothic/league-gothic.css);\n@import url(https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic);\n\n\n/**\n * Solarized colors by Ethan Schoonover\n */\nhtml * {\n\tcolor-profile: sRGB;\n\trendering-intent: auto;\n}\n\n// Solarized colors\n$base03:    #002b36;\n$base02:    #073642;\n$base01:    #586e75;\n$base00:    #657b83;\n$base0:     #839496;\n$base1:     #93a1a1;\n$base2:     #eee8d5;\n$base3:     #fdf6e3;\n$yellow:    #b58900;\n$orange:    #cb4b16;\n$red:       #dc322f;\n$magenta:   #d33682;\n$violet:    #6c71c4;\n$blue:      #268bd2;\n$cyan:      #2aa198;\n$green:     #859900;\n\n// Override theme settings (see ../template/settings.scss)\n$mainColor: $base00;\n$headingColor: $base01;\n$headingTextShadow: none;\n$backgroundColor: $base3;\n$linkColor: $blue;\n$linkColorHover: lighten( $linkColor, 20% );\n$selectionBackgroundColor: $magenta;\n\n// Background generator\n// @mixin bodyBackground() {\n// \t@include radial-gradient( rgba($base3,1), rgba(lighten($base3, 20%),1) );\n// }\n\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------\n"
  },
  {
    "path": "talk/reveal.js/css/theme/source/white.scss",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n\n\n// Default mixins and settings -----------------\n@import \"../template/mixins\";\n@import \"../template/settings\";\n// ---------------------------------------------\n\n\n// Include theme-specific fonts\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\n\n\n// Override theme settings (see ../template/settings.scss)\n$backgroundColor: #fff;\n\n$mainColor: #222;\n$headingColor: #222;\n\n$mainFontSize: 38px;\n$mainFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingFont: 'Source Sans Pro', Helvetica, sans-serif;\n$headingTextShadow: none;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingFontWeight: 600;\n$linkColor: #2a76dd;\n$linkColorHover: lighten( $linkColor, 15% );\n$selectionBackgroundColor: lighten( $linkColor, 25% );\n\n$heading1Size: 2.5em;\n$heading2Size: 1.6em;\n$heading3Size: 1.3em;\n$heading4Size: 1.0em;\n\nsection.has-dark-background {\n\t&, h1, h2, h3, h4, h5, h6 {\n\t\tcolor: #fff;\n\t}\n}\n\n\n// Theme template ------------------------------\n@import \"../template/theme\";\n// ---------------------------------------------"
  },
  {
    "path": "talk/reveal.js/css/theme/template/mixins.scss",
    "content": "@mixin vertical-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, left bottom, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( top, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( top, $top 0%, $bottom 100% );\n}\n\n@mixin horizontal-gradient( $top, $bottom ) {\n\tbackground: $top;\n\tbackground: -moz-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -webkit-gradient( linear, left top, right top, color-stop(0%,$top), color-stop(100%,$bottom) );\n\tbackground: -webkit-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -o-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: -ms-linear-gradient( left, $top 0%, $bottom 100% );\n\tbackground: linear-gradient( left, $top 0%, $bottom 100% );\n}\n\n@mixin radial-gradient( $outer, $inner, $type: circle ) {\n\tbackground: $outer;\n\tbackground: -moz-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -webkit-gradient( radial, center center, 0px, center center, 100%, color-stop(0%,$inner), color-stop(100%,$outer) );\n\tbackground: -webkit-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -o-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: -ms-radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n\tbackground: radial-gradient( center, $type cover,  $inner 0%, $outer 100% );\n}"
  },
  {
    "path": "talk/reveal.js/css/theme/template/settings.scss",
    "content": "// Base settings for all themes that can optionally be\n// overridden by the super-theme\n\n// Background of the presentation\n$backgroundColor: #2b2b2b;\n\n// Primary/body text\n$mainFont: 'Lato', sans-serif;\n$mainFontSize: 36px;\n$mainColor: #eee;\n\n// Vertical spacing between blocks of text\n$blockMargin: 20px;\n\n// Headings\n$headingMargin: 0 0 $blockMargin 0;\n$headingFont: 'League Gothic', Impact, sans-serif;\n$headingColor: #eee;\n$headingLineHeight: 1.2;\n$headingLetterSpacing: normal;\n$headingTextTransform: uppercase;\n$headingTextShadow: none;\n$headingFontWeight: normal;\n$heading1TextShadow: $headingTextShadow;\n\n$heading1Size: 3.77em;\n$heading2Size: 2.11em;\n$heading3Size: 1.55em;\n$heading4Size: 1.00em;\n\n// Links and actions\n$linkColor: #13DAEC;\n$linkColorHover: lighten( $linkColor, 20% );\n\n// Text selection\n$selectionBackgroundColor: #FF5E99;\n$selectionColor: #fff;\n\n// Generates the presentation background, can be overridden\n// to return a background image or gradient\n@mixin bodyBackground() {\n\tbackground: $backgroundColor;\n}"
  },
  {
    "path": "talk/reveal.js/css/theme/template/theme.scss",
    "content": "// Base theme template for reveal.js\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\n\nbody {\n\t@include bodyBackground();\n\tbackground-color: $backgroundColor;\n}\n\n.reveal {\n\tfont-family: $mainFont;\n\tfont-size: $mainFontSize;\n\tfont-weight: normal;\n\tcolor: $mainColor;\n}\n\n::selection {\n\tcolor: $selectionColor;\n\tbackground: $selectionBackgroundColor;\n\ttext-shadow: none;\n}\n\n.reveal .slides>section,\n.reveal .slides>section>section {\n\tline-height: 1.3;\n\tfont-weight: inherit;\n}\n\n/*********************************************\n * HEADERS\n *********************************************/\n\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n\tmargin: $headingMargin;\n\tcolor: $headingColor;\n\n\tfont-family: $headingFont;\n\tfont-weight: $headingFontWeight;\n\tline-height: $headingLineHeight;\n\tletter-spacing: $headingLetterSpacing;\n\n\ttext-transform: $headingTextTransform;\n\ttext-shadow: $headingTextShadow;\n\n\tword-wrap: break-word;\n}\n\n.reveal h1 {font-size: $heading1Size; }\n.reveal h2 {font-size: $heading2Size; }\n.reveal h3 {font-size: $heading3Size; }\n.reveal h4 {font-size: $heading4Size; }\n\n.reveal h1 {\n\ttext-shadow: $heading1TextShadow;\n}\n\n\n/*********************************************\n * OTHER\n *********************************************/\n\n.reveal p {\n\tmargin: $blockMargin 0;\n\tline-height: 1.3;\n}\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n\tmax-width: 95%;\n\tmax-height: 95%;\n}\n.reveal strong,\n.reveal b {\n\tfont-weight: bold;\n}\n\n.reveal em {\n\tfont-style: italic;\n}\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n\tdisplay: inline-block;\n\n\ttext-align: left;\n\tmargin: 0 0 0 1em;\n}\n\n.reveal ol {\n\tlist-style-type: decimal;\n}\n\n.reveal ul {\n\tlist-style-type: disc;\n}\n\n.reveal ul ul {\n\tlist-style-type: square;\n}\n\n.reveal ul ul ul {\n\tlist-style-type: circle;\n}\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n\tdisplay: block;\n\tmargin-left: 40px;\n}\n\n.reveal dt {\n\tfont-weight: bold;\n}\n\n.reveal dd {\n\tmargin-left: 40px;\n}\n\n.reveal q,\n.reveal blockquote {\n\tquotes: none;\n}\n\n.reveal blockquote {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 70%;\n\tmargin: $blockMargin auto;\n\tpadding: 5px;\n\n\tfont-style: italic;\n\tbackground: rgba(255, 255, 255, 0.05);\n\tbox-shadow: 0px 0px 2px rgba(0,0,0,0.2);\n}\n\t.reveal blockquote p:first-child,\n\t.reveal blockquote p:last-child {\n\t\tdisplay: inline-block;\n\t}\n\n.reveal q {\n\tfont-style: italic;\n}\n\n.reveal pre {\n\tdisplay: block;\n\tposition: relative;\n\twidth: 90%;\n\tmargin: $blockMargin auto;\n\n\ttext-align: left;\n\tfont-size: 0.55em;\n\tfont-family: monospace;\n\tline-height: 1.2em;\n\n\tword-wrap: break-word;\n\n\tbox-shadow: 0px 0px 6px rgba(0,0,0,0.3);\n}\n.reveal code {\n\tfont-family: monospace;\n}\n\n.reveal pre code {\n\tdisplay: block;\n\tpadding: 5px;\n\toverflow: auto;\n\tmax-height: 400px;\n\tword-wrap: normal;\n}\n\n.reveal table {\n\tmargin: auto;\n\tborder-collapse: collapse;\n\tborder-spacing: 0;\n}\n\n.reveal table th {\n\tfont-weight: bold;\n}\n\n.reveal table th,\n.reveal table td {\n\ttext-align: left;\n\tpadding: 0.2em 0.5em 0.2em 0.5em;\n\tborder-bottom: 1px solid;\n}\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n\ttext-align: center;\n}\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n\ttext-align: right;\n}\n\n.reveal table tr:last-child td {\n\tborder-bottom: none;\n}\n\n.reveal sup {\n\tvertical-align: super;\n}\n.reveal sub {\n\tvertical-align: sub;\n}\n\n.reveal small {\n\tdisplay: inline-block;\n\tfont-size: 0.6em;\n\tline-height: 1.2em;\n\tvertical-align: top;\n}\n\n.reveal small * {\n\tvertical-align: top;\n}\n\n\n/*********************************************\n * LINKS\n *********************************************/\n\n.reveal a {\n\tcolor: $linkColor;\n\ttext-decoration: none;\n\n\t-webkit-transition: color .15s ease;\n\t   -moz-transition: color .15s ease;\n\t        transition: color .15s ease;\n}\n\t.reveal a:hover {\n\t\tcolor: $linkColorHover;\n\n\t\ttext-shadow: none;\n\t\tborder: none;\n\t}\n\n.reveal .roll span:after {\n\tcolor: #fff;\n\tbackground: darken( $linkColor, 15% );\n}\n\n\n/*********************************************\n * IMAGES\n *********************************************/\n\n.reveal section img {\n\tmargin: 15px 0px;\n\tbackground: rgba(255,255,255,0.12);\n\tborder: 4px solid $mainColor;\n\n\tbox-shadow: 0 0 10px rgba(0, 0, 0, 0.15);\n}\n\n\t.reveal section img.plain {\n\t\tborder: 0;\n\t\tbox-shadow: none;\n\t}\n\n\t.reveal a img {\n\t\t-webkit-transition: all .15s linear;\n\t\t   -moz-transition: all .15s linear;\n\t\t        transition: all .15s linear;\n\t}\n\n\t.reveal a:hover img {\n\t\tbackground: rgba(255,255,255,0.2);\n\t\tborder-color: $linkColor;\n\n\t\tbox-shadow: 0 0 20px rgba(0, 0, 0, 0.55);\n\t}\n\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n\tborder-right-color: $linkColor;\n}\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n\tborder-left-color: $linkColor;\n}\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n\tborder-bottom-color: $linkColor;\n}\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n\tborder-top-color: $linkColor;\n}\n\n.reveal .controls .navigate-left.enabled:hover {\n\tborder-right-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-right.enabled:hover {\n\tborder-left-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-up.enabled:hover {\n\tborder-bottom-color: $linkColorHover;\n}\n\n.reveal .controls .navigate-down.enabled:hover {\n\tborder-top-color: $linkColorHover;\n}\n\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n\n.reveal .progress {\n\tbackground: rgba(0,0,0,0.2);\n}\n\t.reveal .progress span {\n\t\tbackground: $linkColor;\n\n\t\t-webkit-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t   -moz-transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t\t        transition: width 800ms cubic-bezier(0.260, 0.860, 0.440, 0.985);\n\t}\n\n\n"
  },
  {
    "path": "talk/reveal.js/css/theme/white.css",
    "content": "/**\n * White theme for reveal.js. This is the opposite of the 'black' theme.\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n@import url(../../lib/font/source-sans-pro/source-sans-pro.css);\nsection.has-dark-background, section.has-dark-background h1, section.has-dark-background h2, section.has-dark-background h3, section.has-dark-background h4, section.has-dark-background h5, section.has-dark-background h6 {\n  color: #fff; }\n\n/*********************************************\n * GLOBAL STYLES\n *********************************************/\nbody {\n  background: #fff;\n  background-color: #fff; }\n\n.reveal {\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-size: 38px;\n  font-weight: normal;\n  color: #222; }\n\n::selection {\n  color: #fff;\n  background: #98bdef;\n  text-shadow: none; }\n\n.reveal .slides > section,\n.reveal .slides > section > section {\n  line-height: 1.3;\n  font-weight: inherit; }\n\n/*********************************************\n * HEADERS\n *********************************************/\n.reveal h1,\n.reveal h2,\n.reveal h3,\n.reveal h4,\n.reveal h5,\n.reveal h6 {\n  margin: 0 0 20px 0;\n  color: #222;\n  font-family: \"Source Sans Pro\", Helvetica, sans-serif;\n  font-weight: 600;\n  line-height: 1.2;\n  letter-spacing: normal;\n  text-transform: uppercase;\n  text-shadow: none;\n  word-wrap: break-word; }\n\n.reveal h1 {\n  font-size: 2.5em; }\n\n.reveal h2 {\n  font-size: 1.6em; }\n\n.reveal h3 {\n  font-size: 1.3em; }\n\n.reveal h4 {\n  font-size: 1em; }\n\n.reveal h1 {\n  text-shadow: none; }\n\n/*********************************************\n * OTHER\n *********************************************/\n.reveal p {\n  margin: 20px 0;\n  line-height: 1.3; }\n\n/* Ensure certain elements are never larger than the slide itself */\n.reveal img,\n.reveal video,\n.reveal iframe {\n  max-width: 95%;\n  max-height: 95%; }\n\n.reveal strong,\n.reveal b {\n  font-weight: bold; }\n\n.reveal em {\n  font-style: italic; }\n\n.reveal ol,\n.reveal dl,\n.reveal ul {\n  display: inline-block;\n  text-align: left;\n  margin: 0 0 0 1em; }\n\n.reveal ol {\n  list-style-type: decimal; }\n\n.reveal ul {\n  list-style-type: disc; }\n\n.reveal ul ul {\n  list-style-type: square; }\n\n.reveal ul ul ul {\n  list-style-type: circle; }\n\n.reveal ul ul,\n.reveal ul ol,\n.reveal ol ol,\n.reveal ol ul {\n  display: block;\n  margin-left: 40px; }\n\n.reveal dt {\n  font-weight: bold; }\n\n.reveal dd {\n  margin-left: 40px; }\n\n.reveal q,\n.reveal blockquote {\n  quotes: none; }\n\n.reveal blockquote {\n  display: block;\n  position: relative;\n  width: 70%;\n  margin: 20px auto;\n  padding: 5px;\n  font-style: italic;\n  background: rgba(255, 255, 255, 0.05);\n  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2); }\n\n.reveal blockquote p:first-child,\n.reveal blockquote p:last-child {\n  display: inline-block; }\n\n.reveal q {\n  font-style: italic; }\n\n.reveal pre {\n  display: block;\n  position: relative;\n  width: 90%;\n  margin: 20px auto;\n  text-align: left;\n  font-size: 0.55em;\n  font-family: monospace;\n  line-height: 1.2em;\n  word-wrap: break-word;\n  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.3); }\n\n.reveal code {\n  font-family: monospace; }\n\n.reveal pre code {\n  display: block;\n  padding: 5px;\n  overflow: auto;\n  max-height: 400px;\n  word-wrap: normal; }\n\n.reveal table {\n  margin: auto;\n  border-collapse: collapse;\n  border-spacing: 0; }\n\n.reveal table th {\n  font-weight: bold; }\n\n.reveal table th,\n.reveal table td {\n  text-align: left;\n  padding: 0.2em 0.5em 0.2em 0.5em;\n  border-bottom: 1px solid; }\n\n.reveal table th[align=\"center\"],\n.reveal table td[align=\"center\"] {\n  text-align: center; }\n\n.reveal table th[align=\"right\"],\n.reveal table td[align=\"right\"] {\n  text-align: right; }\n\n.reveal table tr:last-child td {\n  border-bottom: none; }\n\n.reveal sup {\n  vertical-align: super; }\n\n.reveal sub {\n  vertical-align: sub; }\n\n.reveal small {\n  display: inline-block;\n  font-size: 0.6em;\n  line-height: 1.2em;\n  vertical-align: top; }\n\n.reveal small * {\n  vertical-align: top; }\n\n/*********************************************\n * LINKS\n *********************************************/\n.reveal a {\n  color: #2a76dd;\n  text-decoration: none;\n  -webkit-transition: color 0.15s ease;\n  -moz-transition: color 0.15s ease;\n  transition: color 0.15s ease; }\n\n.reveal a:hover {\n  color: #6ca0e8;\n  text-shadow: none;\n  border: none; }\n\n.reveal .roll span:after {\n  color: #fff;\n  background: #1a53a1; }\n\n/*********************************************\n * IMAGES\n *********************************************/\n.reveal section img {\n  margin: 15px 0px;\n  background: rgba(255, 255, 255, 0.12);\n  border: 4px solid #222;\n  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15); }\n\n.reveal section img.plain {\n  border: 0;\n  box-shadow: none; }\n\n.reveal a img {\n  -webkit-transition: all 0.15s linear;\n  -moz-transition: all 0.15s linear;\n  transition: all 0.15s linear; }\n\n.reveal a:hover img {\n  background: rgba(255, 255, 255, 0.2);\n  border-color: #2a76dd;\n  box-shadow: 0 0 20px rgba(0, 0, 0, 0.55); }\n\n/*********************************************\n * NAVIGATION CONTROLS\n *********************************************/\n.reveal .controls .navigate-left,\n.reveal .controls .navigate-left.enabled {\n  border-right-color: #2a76dd; }\n\n.reveal .controls .navigate-right,\n.reveal .controls .navigate-right.enabled {\n  border-left-color: #2a76dd; }\n\n.reveal .controls .navigate-up,\n.reveal .controls .navigate-up.enabled {\n  border-bottom-color: #2a76dd; }\n\n.reveal .controls .navigate-down,\n.reveal .controls .navigate-down.enabled {\n  border-top-color: #2a76dd; }\n\n.reveal .controls .navigate-left.enabled:hover {\n  border-right-color: #6ca0e8; }\n\n.reveal .controls .navigate-right.enabled:hover {\n  border-left-color: #6ca0e8; }\n\n.reveal .controls .navigate-up.enabled:hover {\n  border-bottom-color: #6ca0e8; }\n\n.reveal .controls .navigate-down.enabled:hover {\n  border-top-color: #6ca0e8; }\n\n/*********************************************\n * PROGRESS BAR\n *********************************************/\n.reveal .progress {\n  background: rgba(0, 0, 0, 0.2); }\n\n.reveal .progress span {\n  background: #2a76dd;\n  -webkit-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  -moz-transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985);\n  transition: width 800ms cubic-bezier(0.26, 0.86, 0.44, 0.985); }\n"
  },
  {
    "path": "talk/reveal.js/index.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js – The HTML Presentation Framework</title>\n\n\t\t<meta name=\"description\" content=\"A framework for easily creating beautiful presentations using HTML\">\n\t\t<meta name=\"author\" content=\"Hakim El Hattab\">\n\n\t\t<meta name=\"apple-mobile-web-app-capable\" content=\"yes\">\n\t\t<meta name=\"apple-mobile-web-app-status-bar-style\" content=\"black-translucent\">\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui\">\n\n\t\t<link rel=\"stylesheet\" href=\"css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"css/theme/black.css\" id=\"theme\">\n\n\t\t<!-- Code syntax highlighting -->\n\t\t<link rel=\"stylesheet\" href=\"lib/css/zenburn.css\">\n\n\t\t<!-- Printing and PDF exports -->\n\t\t<script>\n\t\t\tvar link = document.createElement( 'link' );\n\t\t\tlink.rel = 'stylesheet';\n\t\t\tlink.type = 'text/css';\n\t\t\tlink.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';\n\t\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( link );\n\t\t</script>\n\n\t\t<!--[if lt IE 9]>\n\t\t<script src=\"lib/js/html5shiv.js\"></script>\n\t\t<![endif]-->\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<!-- Any section element inside of this container is displayed as a slide -->\n\t\t\t<div class=\"slides\">\n\t\t\t\t<section>\n\t\t\t\t\t<h1>Reveal.js</h1>\n\t\t\t\t\t<h3>The HTML Presentation Framework</h3>\n\t\t\t\t\t<p>\n\t\t\t\t\t\t<small>Created by <a href=\"http://hakim.se\">Hakim El Hattab</a> / <a href=\"http://twitter.com/hakimel\">@hakimel</a></small>\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Hello There</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\treveal.js enables you to create beautiful interactive slide decks using HTML. This presentation will show you examples of what it can do.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<!-- Example of nested vertical slides -->\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Vertical Slides</h2>\n\t\t\t\t\t\t<p>Slides can be nested inside of each other.</p>\n\t\t\t\t\t\t<p>Use the <em>Space</em> key to navigate through all slides.</p>\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t<a href=\"#\" class=\"navigate-down\">\n\t\t\t\t\t\t\t<img width=\"178\" height=\"238\" data-src=\"https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png\" alt=\"Down arrow\">\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Basement Level 1</h2>\n\t\t\t\t\t\t<p>Nested slides are useful for adding additional detail underneath a high level horizontal slide.</p>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Basement Level 2</h2>\n\t\t\t\t\t\t<p>That's it, time to go back up.</p>\n\t\t\t\t\t\t<br>\n\t\t\t\t\t\t<a href=\"#/2\">\n\t\t\t\t\t\t\t<img width=\"178\" height=\"238\" data-src=\"https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png\" alt=\"Up arrow\" style=\"transform: rotate(180deg); -webkit-transform: rotate(180deg);\">\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Slides</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tNot a coder? Not a problem. There's a fully-featured visual editor for authoring these, try it out at <a href=\"http://slides.com\" target=\"_blank\">http://slides.com</a>.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Point of View</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPress <strong>ESC</strong> to enter the slide overview.\n\t\t\t\t\t</p>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tHold down alt and click on any element to zoom in on it using <a href=\"http://lab.hakim.se/zoom-js\">zoom.js</a>. Alt + click anywhere to zoom back out.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Touch Optimized</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPresentations look great on touch devices, like mobile phones and tablets. Simply swipe through your slides.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Markdown support\n\n\t\t\t\t\t\tWrite content using inline or external Markdown.\n\t\t\t\t\t\tInstructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).\n\n\t\t\t\t\t\t```\n\t\t\t\t\t\t<section data-markdown>\n\t\t\t\t\t\t  ## Markdown support\n\n\t\t\t\t\t\t  Write content using inline or external Markdown.\n\t\t\t\t\t\t  Instructions and more info available in the [readme](https://github.com/hakimel/reveal.js#markdown).\n\t\t\t\t\t\t</section>\n\t\t\t\t\t\t```\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section id=\"fragments\">\n\t\t\t\t\t\t<h2>Fragments</h2>\n\t\t\t\t\t\t<p>Hit the next arrow...</p>\n\t\t\t\t\t\t<p class=\"fragment\">... to step through ...</p>\n\t\t\t\t\t\t<p><span class=\"fragment\">... a</span> <span class=\"fragment\">fragmented</span> <span class=\"fragment\">slide.</span></p>\n\n\t\t\t\t\t\t<aside class=\"notes\">\n\t\t\t\t\t\t\tThis slide has fragments which are also stepped through in the notes window.\n\t\t\t\t\t\t</aside>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Fragment Styles</h2>\n\t\t\t\t\t\t<p>There's different types of fragments, like:</p>\n\t\t\t\t\t\t<p class=\"fragment grow\">grow</p>\n\t\t\t\t\t\t<p class=\"fragment shrink\">shrink</p>\n\t\t\t\t\t\t<p class=\"fragment fade-out\">fade-out</p>\n\t\t\t\t\t\t<p class=\"fragment current-visible\">current-visible</p>\n\t\t\t\t\t\t<p class=\"fragment highlight-red\">highlight-red</p>\n\t\t\t\t\t\t<p class=\"fragment highlight-blue\">highlight-blue</p>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"transitions\">\n\t\t\t\t\t<h2>Transition Styles</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tYou can select from different transitions, like: <br>\n\t\t\t\t\t\t<a href=\"?transition=none#/transitions\">None</a> -\n\t\t\t\t\t\t<a href=\"?transition=fade#/transitions\">Fade</a> -\n\t\t\t\t\t\t<a href=\"?transition=slide#/transitions\">Slide</a> -\n\t\t\t\t\t\t<a href=\"?transition=convex#/transitions\">Convex</a> -\n\t\t\t\t\t\t<a href=\"?transition=concave#/transitions\">Concave</a> -\n\t\t\t\t\t\t<a href=\"?transition=zoom#/transitions\">Zoom</a>\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"themes\">\n\t\t\t\t\t<h2>Themes</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\treveal.js comes with a few themes built in: <br>\n\t\t\t\t\t\t<!-- Hacks to swap themes after the page has loaded. Not flexible and only intended for the reveal.js demo deck. -->\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/black.css'); return false;\">Black (default)</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/white.css'); return false;\">White</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/league.css'); return false;\">League</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/sky.css'); return false;\">Sky</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/beige.css'); return false;\">Beige</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/simple.css'); return false;\">Simple</a> <br>\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/serif.css'); return false;\">Serif</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/blood.css'); return false;\">Blood</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/night.css'); return false;\">Night</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/moon.css'); return false;\">Moon</a> -\n\t\t\t\t\t\t<a href=\"#\" onclick=\"document.getElementById('theme').setAttribute('href','css/theme/solarized.css'); return false;\">Solarized</a>\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#dddddd\">\n\t\t\t\t\t\t<h2>Slide Backgrounds</h2>\n\t\t\t\t\t\t<p>\n\t\t\t\t\t\t\tSet <code>data-background=\"#dddddd\"</code> on a slide to change the background color. All CSS color formats are supported.\n\t\t\t\t\t\t</p>\n\t\t\t\t\t\t<a href=\"#\" class=\"navigate-down\">\n\t\t\t\t\t\t\t<img width=\"178\" height=\"238\" data-src=\"https://s3.amazonaws.com/hakim-static/reveal-js/arrow.png\" alt=\"Down arrow\">\n\t\t\t\t\t\t</a>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png\">\n\t\t\t\t\t\t<h2>Image Backgrounds</h2>\n\t\t\t\t\t\t<pre><code class=\"hljs\">&lt;section data-background=\"image.png\"&gt;</code></pre>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"https://s3.amazonaws.com/hakim-static/reveal-js/image-placeholder.png\" data-background-repeat=\"repeat\" data-background-size=\"100px\">\n\t\t\t\t\t\t<h2>Tiled Backgrounds</h2>\n\t\t\t\t\t\t<pre><code class=\"hljs\" style=\"word-wrap: break-word;\">&lt;section data-background=\"image.png\" data-background-repeat=\"repeat\" data-background-size=\"100px\"&gt;</code></pre>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\" data-background-color=\"#000000\">\n\t\t\t\t\t\t<div style=\"background-color: rgba(0, 0, 0, 0.9); color: #fff; padding: 20px;\">\n\t\t\t\t\t\t\t<h2>Video Backgrounds</h2>\n\t\t\t\t\t\t\t<pre><code class=\"hljs\" style=\"word-wrap: break-word;\">&lt;section data-background-video=\"video.mp4,video.webm\"&gt;</code></pre>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"http://i.giphy.com/90F8aUepslB84.gif\">\n\t\t\t\t\t\t<h2>... and GIFs!</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"slide\" data-background=\"#4d7e65\" data-background-transition=\"zoom\">\n\t\t\t\t\t<h2>Background Transitions</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tDifferent background transitions are available via the backgroundTransition option. This one's called \"zoom\".\n\t\t\t\t\t</p>\n\t\t\t\t\t<pre><code class=\"hljs\">Reveal.configure({ backgroundTransition: 'zoom' })</code></pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"slide\" data-background=\"#b5533c\" data-background-transition=\"zoom\">\n\t\t\t\t\t<h2>Background Transitions</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tYou can override background transitions per-slide.\n\t\t\t\t\t</p>\n\t\t\t\t\t<pre><code class=\"hljs\" style=\"word-wrap: break-word;\">&lt;section data-background-transition=\"zoom\"&gt;</code></pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Pretty Code</h2>\n\t\t\t\t\t<pre><code class=\"hljs\" data-trim contenteditable>\nfunction linkify( selector ) {\n  if( supports3DTransforms ) {\n\n    var nodes = document.querySelectorAll( selector );\n\n    for( var i = 0, len = nodes.length; i &lt; len; i++ ) {\n      var node = nodes[i];\n\n      if( !node.className ) {\n        node.className += ' roll';\n      }\n    }\n  }\n}\n\t\t\t\t\t</code></pre>\n\t\t\t\t\t<p>Code syntax highlighting courtesy of <a href=\"http://softwaremaniacs.org/soft/highlight/en/description/\">highlight.js</a>.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Marvelous List</h2>\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>No order here</li>\n\t\t\t\t\t\t<li>Or here</li>\n\t\t\t\t\t\t<li>Or here</li>\n\t\t\t\t\t\t<li>Or here</li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Fantastic Ordered List</h2>\n\t\t\t\t\t<ol>\n\t\t\t\t\t\t<li>One is smaller than...</li>\n\t\t\t\t\t\t<li>Two is smaller than...</li>\n\t\t\t\t\t\t<li>Three!</li>\n\t\t\t\t\t</ol>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Tabular Tables</h2>\n\t\t\t\t\t<table>\n\t\t\t\t\t\t<thead>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<th>Item</th>\n\t\t\t\t\t\t\t\t<th>Value</th>\n\t\t\t\t\t\t\t\t<th>Quantity</th>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</thead>\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td>Apples</td>\n\t\t\t\t\t\t\t\t<td>$1</td>\n\t\t\t\t\t\t\t\t<td>7</td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td>Lemonade</td>\n\t\t\t\t\t\t\t\t<td>$2</td>\n\t\t\t\t\t\t\t\t<td>18</td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td>Bread</td>\n\t\t\t\t\t\t\t\t<td>$3</td>\n\t\t\t\t\t\t\t\t<td>2</td>\n\t\t\t\t\t\t\t</tr>\n\t\t\t\t\t\t</tbody>\n\t\t\t\t\t</table>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Clever Quotes</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tThese guys come in two forms, inline: <q cite=\"http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations\">\n\t\t\t\t\t\t&ldquo;The nice thing about standards is that there are so many to choose from&rdquo;</q> and block:\n\t\t\t\t\t</p>\n\t\t\t\t\t<blockquote cite=\"http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations\">\n\t\t\t\t\t\t&ldquo;For years there has been a theory that millions of monkeys typing at random on millions of typewriters would\n\t\t\t\t\t\treproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.&rdquo;\n\t\t\t\t\t</blockquote>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Intergalactic Interconnections</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tYou can link between slides internally,\n\t\t\t\t\t\t<a href=\"#/2/3\">like this</a>.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Speaker View</h2>\n\t\t\t\t\t<p>There's a <a href=\"https://github.com/hakimel/reveal.js#speaker-notes\">speaker view</a>. It includes a timer, preview of the upcoming slide as well as your speaker notes.</p>\n\t\t\t\t\t<p>Press the <em>S</em> key to try it out.</p>\n\n\t\t\t\t\t<aside class=\"notes\">\n\t\t\t\t\t\tOh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\n\t\t\t\t\t</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Export to PDF</h2>\n\t\t\t\t\t<p>Presentations can be <a href=\"https://github.com/hakimel/reveal.js#pdf-export\">exported to PDF</a>, here's an example:</p>\n\t\t\t\t\t<iframe src=\"https://www.slideshare.net/slideshow/embed_code/42840540\" width=\"445\" height=\"355\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" style=\"border:3px solid #666; margin-bottom:5px; max-width: 100%;\" allowfullscreen> </iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Global State</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tSet <code>data-state=\"something\"</code> on a slide and <code>\"something\"</code>\n\t\t\t\t\t\twill be added as a class to the document element when the slide is open. This lets you\n\t\t\t\t\t\tapply broader style changes, like switching the page background.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-state=\"customevent\">\n\t\t\t\t\t<h2>State Events</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tAdditionally custom events can be triggered on a per slide basis by binding to the <code>data-state</code> name.\n\t\t\t\t\t</p>\n\t\t\t\t\t<pre><code class=\"javascript\" data-trim contenteditable style=\"font-size: 18px;\">\nReveal.addEventListener( 'customevent', function() {\n\tconsole.log( '\"customevent\" has fired' );\n} );\n\t\t\t\t\t</code></pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Take a Moment</h2>\n\t\t\t\t\t<p>\n\t\t\t\t\t\tPress B or . on your keyboard to pause the presentation. This is helpful when you're on stage and want to take distracting slides off the screen.\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Much more</h2>\n\t\t\t\t\t<ul>\n\t\t\t\t\t\t<li>Right-to-left support</li>\n\t\t\t\t\t\t<li><a href=\"https://github.com/hakimel/reveal.js#api\">Extensive JavaScript API</a></li>\n\t\t\t\t\t\t<li><a href=\"https://github.com/hakimel/reveal.js#auto-sliding\">Auto-progression</a></li>\n\t\t\t\t\t\t<li><a href=\"https://github.com/hakimel/reveal.js#parallax-background\">Parallax backgrounds</a></li>\n\t\t\t\t\t\t<li><a href=\"https://github.com/hakimel/reveal.js#keyboard-bindings\">Custom keyboard bindings</a></li>\n\t\t\t\t\t</ul>\n\t\t\t\t</section>\n\n\t\t\t\t<section style=\"text-align: left;\">\n\t\t\t\t\t<h1>THE END</h1>\n\t\t\t\t\t<p>\n\t\t\t\t\t\t- <a href=\"http://slides.com\">Try the online editor</a> <br>\n\t\t\t\t\t\t- <a href=\"https://github.com/hakimel/reveal.js\">Source code &amp; documentation</a>\n\t\t\t\t\t</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"lib/js/head.min.js\"></script>\n\t\t<script src=\"js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available at:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t\t// Optional reveal.js plugins\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n\t\t\t\t\t{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: 'plugin/zoom-js/zoom.js', async: true },\n\t\t\t\t\t{ src: 'plugin/notes/notes.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/js/reveal.js",
    "content": "/*!\n * reveal.js\n * http://lab.hakim.se/reveal-js\n * MIT licensed\n *\n * Copyright (C) 2015 Hakim El Hattab, http://hakim.se\n */\n(function( root, factory ) {\n\tif( typeof define === 'function' && define.amd ) {\n\t\t// AMD. Register as an anonymous module.\n\t\tdefine( function() {\n\t\t\troot.Reveal = factory();\n\t\t\treturn root.Reveal;\n\t\t} );\n\t} else if( typeof exports === 'object' ) {\n\t\t// Node. Does not work with strict CommonJS.\n\t\tmodule.exports = factory();\n\t} else {\n\t\t// Browser globals.\n\t\troot.Reveal = factory();\n\t}\n}( this, function() {\n\n\t'use strict';\n\n\tvar Reveal;\n\n\tvar SLIDES_SELECTOR = '.slides section',\n\t\tHORIZONTAL_SLIDES_SELECTOR = '.slides>section',\n\t\tVERTICAL_SLIDES_SELECTOR = '.slides>section.present>section',\n\t\tHOME_SLIDE_SELECTOR = '.slides>section:first-of-type',\n\n\t\t// Configuration defaults, can be overridden at initialization time\n\t\tconfig = {\n\n\t\t\t// The \"normal\" size of the presentation, aspect ratio will be preserved\n\t\t\t// when the presentation is scaled to fit different resolutions\n\t\t\twidth: 960,\n\t\t\theight: 700,\n\n\t\t\t// Factor of the display size that should remain empty around the content\n\t\t\tmargin: 0.1,\n\n\t\t\t// Bounds for smallest/largest possible scale to apply to content\n\t\t\tminScale: 0.2,\n\t\t\tmaxScale: 1.5,\n\n\t\t\t// Display controls in the bottom right corner\n\t\t\tcontrols: true,\n\n\t\t\t// Display a presentation progress bar\n\t\t\tprogress: true,\n\n\t\t\t// Display the page number of the current slide\n\t\t\tslideNumber: false,\n\n\t\t\t// Push each slide change to the browser history\n\t\t\thistory: false,\n\n\t\t\t// Enable keyboard shortcuts for navigation\n\t\t\tkeyboard: true,\n\n\t\t\t// Optional function that blocks keyboard events when retuning false\n\t\t\tkeyboardCondition: null,\n\n\t\t\t// Enable the slide overview mode\n\t\t\toverview: true,\n\n\t\t\t// Vertical centering of slides\n\t\t\tcenter: true,\n\n\t\t\t// Enables touch navigation on devices with touch input\n\t\t\ttouch: true,\n\n\t\t\t// Loop the presentation\n\t\t\tloop: false,\n\n\t\t\t// Change the presentation direction to be RTL\n\t\t\trtl: false,\n\n\t\t\t// Turns fragments on and off globally\n\t\t\tfragments: true,\n\n\t\t\t// Flags if the presentation is running in an embedded mode,\n\t\t\t// i.e. contained within a limited portion of the screen\n\t\t\tembedded: false,\n\n\t\t\t// Flags if we should show a help overlay when the questionmark\n\t\t\t// key is pressed\n\t\t\thelp: true,\n\n\t\t\t// Flags if it should be possible to pause the presentation (blackout)\n\t\t\tpause: true,\n\n\t\t\t// Flags if speaker notes should be visible to all viewers\n\t\t\tshowNotes: false,\n\n\t\t\t// Number of milliseconds between automatically proceeding to the\n\t\t\t// next slide, disabled when set to 0, this value can be overwritten\n\t\t\t// by using a data-autoslide attribute on your slides\n\t\t\tautoSlide: 0,\n\n\t\t\t// Stop auto-sliding after user input\n\t\t\tautoSlideStoppable: true,\n\n\t\t\t// Enable slide navigation via mouse wheel\n\t\t\tmouseWheel: false,\n\n\t\t\t// Apply a 3D roll to links on hover\n\t\t\trollingLinks: false,\n\n\t\t\t// Hides the address bar on mobile devices\n\t\t\thideAddressBar: true,\n\n\t\t\t// Opens links in an iframe preview overlay\n\t\t\tpreviewLinks: false,\n\n\t\t\t// Exposes the reveal.js API through window.postMessage\n\t\t\tpostMessage: true,\n\n\t\t\t// Dispatches all reveal.js events to the parent window through postMessage\n\t\t\tpostMessageEvents: false,\n\n\t\t\t// Focuses body when page changes visiblity to ensure keyboard shortcuts work\n\t\t\tfocusBodyOnPageVisibilityChange: true,\n\n\t\t\t// Transition style\n\t\t\ttransition: 'slide', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Transition speed\n\t\t\ttransitionSpeed: 'default', // default/fast/slow\n\n\t\t\t// Transition style for full page slide backgrounds\n\t\t\tbackgroundTransition: 'fade', // none/fade/slide/convex/concave/zoom\n\n\t\t\t// Parallax background image\n\t\t\tparallaxBackgroundImage: '', // CSS syntax, e.g. \"a.jpg\"\n\n\t\t\t// Parallax background size\n\t\t\tparallaxBackgroundSize: '', // CSS syntax, e.g. \"3000px 2000px\"\n\n\t\t\t// Amount of pixels to move the parallax background per slide step\n\t\t\tparallaxBackgroundHorizontal: null,\n\t\t\tparallaxBackgroundVertical: null,\n\n\t\t\t// Number of slides away from the current that are visible\n\t\t\tviewDistance: 3,\n\n\t\t\t// Script dependencies to load\n\t\t\tdependencies: []\n\n\t\t},\n\n\t\t// Flags if reveal.js is loaded (has dispatched the 'ready' event)\n\t\tloaded = false,\n\n\t\t// Flags if the overview mode is currently active\n\t\toverview = false,\n\n\t\t// The horizontal and vertical index of the currently active slide\n\t\tindexh,\n\t\tindexv,\n\n\t\t// The previous and current slide HTML elements\n\t\tpreviousSlide,\n\t\tcurrentSlide,\n\n\t\tpreviousBackground,\n\n\t\t// Slides may hold a data-state attribute which we pick up and apply\n\t\t// as a class to the body. This list contains the combined state of\n\t\t// all current slides.\n\t\tstate = [],\n\n\t\t// The current scale of the presentation (see width/height config)\n\t\tscale = 1,\n\n\t\t// CSS transform that is currently applied to the slides container,\n\t\t// split into two groups\n\t\tslidesTransform = { layout: '', overview: '' },\n\n\t\t// Cached references to DOM elements\n\t\tdom = {},\n\n\t\t// Features supported by the browser, see #checkCapabilities()\n\t\tfeatures = {},\n\n\t\t// Client is a mobile device, see #checkCapabilities()\n\t\tisMobileDevice,\n\n\t\t// Throttles mouse wheel navigation\n\t\tlastMouseWheelStep = 0,\n\n\t\t// Delays updates to the URL due to a Chrome thumbnailer bug\n\t\twriteURLTimeout = 0,\n\n\t\t// Flags if the interaction event listeners are bound\n\t\teventsAreBound = false,\n\n\t\t// The current auto-slide duration\n\t\tautoSlide = 0,\n\n\t\t// Auto slide properties\n\t\tautoSlidePlayer,\n\t\tautoSlideTimeout = 0,\n\t\tautoSlideStartTime = -1,\n\t\tautoSlidePaused = false,\n\n\t\t// Holds information about the currently ongoing touch input\n\t\ttouch = {\n\t\t\tstartX: 0,\n\t\t\tstartY: 0,\n\t\t\tstartSpan: 0,\n\t\t\tstartCount: 0,\n\t\t\tcaptured: false,\n\t\t\tthreshold: 40\n\t\t},\n\n\t\t// Holds information about the keyboard shortcuts\n\t\tkeyboardShortcuts = {\n\t\t\t'N  ,  SPACE':\t\t\t'Next slide',\n\t\t\t'P':\t\t\t\t\t'Previous slide',\n\t\t\t'&#8592;  ,  H':\t\t'Navigate left',\n\t\t\t'&#8594;  ,  L':\t\t'Navigate right',\n\t\t\t'&#8593;  ,  K':\t\t'Navigate up',\n\t\t\t'&#8595;  ,  J':\t\t'Navigate down',\n\t\t\t'Home':\t\t\t\t\t'First slide',\n\t\t\t'End':\t\t\t\t\t'Last slide',\n\t\t\t'B  ,  .':\t\t\t\t'Pause',\n\t\t\t'F':\t\t\t\t\t'Fullscreen',\n\t\t\t'ESC, O':\t\t\t\t'Slide overview'\n\t\t};\n\n\t/**\n\t * Starts up the presentation if the client is capable.\n\t */\n\tfunction initialize( options ) {\n\n\t\tcheckCapabilities();\n\n\t\tif( !features.transforms2d && !features.transforms3d ) {\n\t\t\tdocument.body.setAttribute( 'class', 'no-transforms' );\n\n\t\t\t// Since JS won't be running any further, we load all lazy\n\t\t\t// loading elements upfront\n\t\t\tvar images = toArray( document.getElementsByTagName( 'img' ) ),\n\t\t\t\tiframes = toArray( document.getElementsByTagName( 'iframe' ) );\n\n\t\t\tvar lazyLoadable = images.concat( iframes );\n\n\t\t\tfor( var i = 0, len = lazyLoadable.length; i < len; i++ ) {\n\t\t\t\tvar element = lazyLoadable[i];\n\t\t\t\tif( element.getAttribute( 'data-src' ) ) {\n\t\t\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\t\t\telement.removeAttribute( 'data-src' );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// If the browser doesn't support core features we won't be\n\t\t\t// using JavaScript to control the presentation\n\t\t\treturn;\n\t\t}\n\n\t\t// Cache references to key DOM elements\n\t\tdom.wrapper = document.querySelector( '.reveal' );\n\t\tdom.slides = document.querySelector( '.reveal .slides' );\n\n\t\t// Force a layout when the whole page, incl fonts, has loaded\n\t\twindow.addEventListener( 'load', layout, false );\n\n\t\tvar query = Reveal.getQueryHash();\n\n\t\t// Do not accept new dependencies via query config to avoid\n\t\t// the potential of malicious script injection\n\t\tif( typeof query['dependencies'] !== 'undefined' ) delete query['dependencies'];\n\n\t\t// Copy options over to our config object\n\t\textend( config, options );\n\t\textend( config, query );\n\n\t\t// Hide the address bar in mobile browsers\n\t\thideAddressBar();\n\n\t\t// Loads the dependencies and continues to #start() once done\n\t\tload();\n\n\t}\n\n\t/**\n\t * Inspect the client to see what it's capable of, this\n\t * should only happens once per runtime.\n\t */\n\tfunction checkCapabilities() {\n\n\t\tfeatures.transforms3d = 'WebkitPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'msPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'OPerspective' in document.body.style ||\n\t\t\t\t\t\t\t\t'perspective' in document.body.style;\n\n\t\tfeatures.transforms2d = 'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\t\tfeatures.requestAnimationFrameMethod = window.requestAnimationFrame || window.webkitRequestAnimationFrame || window.mozRequestAnimationFrame;\n\t\tfeatures.requestAnimationFrame = typeof features.requestAnimationFrameMethod === 'function';\n\n\t\tfeatures.canvas = !!document.createElement( 'canvas' ).getContext;\n\n\t\tfeatures.touch = !!( 'ontouchstart' in window );\n\n\t\t// Transitions in the overview are disabled in desktop and\n\t\t// mobile Safari due to lag\n\t\tfeatures.overviewTransitions = !/Version\\/[\\d\\.]+.*Safari/.test( navigator.userAgent );\n\n\t\tisMobileDevice = /(iphone|ipod|ipad|android)/gi.test( navigator.userAgent );\n\n\t}\n\n    /**\n     * Loads the dependencies of reveal.js. Dependencies are\n     * defined via the configuration option 'dependencies'\n     * and will be loaded prior to starting/binding reveal.js.\n     * Some dependencies may have an 'async' flag, if so they\n     * will load after reveal.js has been started up.\n     */\n\tfunction load() {\n\n\t\tvar scripts = [],\n\t\t\tscriptsAsync = [],\n\t\t\tscriptsToPreload = 0;\n\n\t\t// Called once synchronous scripts finish loading\n\t\tfunction proceed() {\n\t\t\tif( scriptsAsync.length ) {\n\t\t\t\t// Load asynchronous scripts\n\t\t\t\thead.js.apply( null, scriptsAsync );\n\t\t\t}\n\n\t\t\tstart();\n\t\t}\n\n\t\tfunction loadScript( s ) {\n\t\t\thead.ready( s.src.match( /([\\w\\d_\\-]*)\\.?js$|[^\\\\\\/]*$/i )[0], function() {\n\t\t\t\t// Extension may contain callback functions\n\t\t\t\tif( typeof s.callback === 'function' ) {\n\t\t\t\t\ts.callback.apply( this );\n\t\t\t\t}\n\n\t\t\t\tif( --scriptsToPreload === 0 ) {\n\t\t\t\t\tproceed();\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tfor( var i = 0, len = config.dependencies.length; i < len; i++ ) {\n\t\t\tvar s = config.dependencies[i];\n\n\t\t\t// Load if there's no condition or the condition is truthy\n\t\t\tif( !s.condition || s.condition() ) {\n\t\t\t\tif( s.async ) {\n\t\t\t\t\tscriptsAsync.push( s.src );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tscripts.push( s.src );\n\t\t\t\t}\n\n\t\t\t\tloadScript( s );\n\t\t\t}\n\t\t}\n\n\t\tif( scripts.length ) {\n\t\t\tscriptsToPreload = scripts.length;\n\n\t\t\t// Load synchronous scripts\n\t\t\thead.js.apply( null, scripts );\n\t\t}\n\t\telse {\n\t\t\tproceed();\n\t\t}\n\n\t}\n\n\t/**\n\t * Starts up reveal.js by binding input events and navigating\n\t * to the current URL deeplink if there is one.\n\t */\n\tfunction start() {\n\n\t\t// Make sure we've got all the DOM elements we need\n\t\tsetupDOM();\n\n\t\t// Listen to messages posted to this window\n\t\tsetupPostMessage();\n\n\t\t// Prevent iframes from scrolling the slides out of view\n\t\tsetupIframeScrollPrevention();\n\n\t\t// Resets all vertical slides so that only the first is visible\n\t\tresetVerticalSlides();\n\n\t\t// Updates the presentation to match the current configuration values\n\t\tconfigure();\n\n\t\t// Read the initial hash\n\t\treadURL();\n\n\t\t// Update all backgrounds\n\t\tupdateBackground( true );\n\n\t\t// Notify listeners that the presentation is ready but use a 1ms\n\t\t// timeout to ensure it's not fired synchronously after #initialize()\n\t\tsetTimeout( function() {\n\t\t\t// Enable transitions now that we're loaded\n\t\t\tdom.slides.classList.remove( 'no-transition' );\n\n\t\t\tloaded = true;\n\n\t\t\tdispatchEvent( 'ready', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\t\t}, 1 );\n\n\t\t// Special setup and config is required when printing to PDF\n\t\tif( isPrintingPDF() ) {\n\t\t\tremoveEventListeners();\n\n\t\t\t// The document needs to have loaded for the PDF layout\n\t\t\t// measurements to be accurate\n\t\t\tif( document.readyState === 'complete' ) {\n\t\t\t\tsetupPDF();\n\t\t\t}\n\t\t\telse {\n\t\t\t\twindow.addEventListener( 'load', setupPDF );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Finds and stores references to DOM elements which are\n\t * required by the presentation. If a required element is\n\t * not found, it is created.\n\t */\n\tfunction setupDOM() {\n\n\t\t// Prevent transitions while we're loading\n\t\tdom.slides.classList.add( 'no-transition' );\n\n\t\t// Background element\n\t\tdom.background = createSingletonNode( dom.wrapper, 'div', 'backgrounds', null );\n\n\t\t// Progress bar\n\t\tdom.progress = createSingletonNode( dom.wrapper, 'div', 'progress', '<span></span>' );\n\t\tdom.progressbar = dom.progress.querySelector( 'span' );\n\n\t\t// Arrow controls\n\t\tcreateSingletonNode( dom.wrapper, 'aside', 'controls',\n\t\t\t'<button class=\"navigate-left\" aria-label=\"previous slide\"></button>' +\n\t\t\t'<button class=\"navigate-right\" aria-label=\"next slide\"></button>' +\n\t\t\t'<button class=\"navigate-up\" aria-label=\"above slide\"></button>' +\n\t\t\t'<button class=\"navigate-down\" aria-label=\"below slide\"></button>' );\n\n\t\t// Slide number\n\t\tdom.slideNumber = createSingletonNode( dom.wrapper, 'div', 'slide-number', '' );\n\n\t\t// Element containing notes that are visible to the audience\n\t\tdom.speakerNotes = createSingletonNode( dom.wrapper, 'div', 'speaker-notes', null );\n\t\tdom.speakerNotes.setAttribute( 'data-prevent-swipe', '' );\n\n\t\t// Overlay graphic which is displayed during the paused mode\n\t\tcreateSingletonNode( dom.wrapper, 'div', 'pause-overlay', null );\n\n\t\t// Cache references to elements\n\t\tdom.controls = document.querySelector( '.reveal .controls' );\n\t\tdom.theme = document.querySelector( '#theme' );\n\n\t\tdom.wrapper.setAttribute( 'role', 'application' );\n\n\t\t// There can be multiple instances of controls throughout the page\n\t\tdom.controlsLeft = toArray( document.querySelectorAll( '.navigate-left' ) );\n\t\tdom.controlsRight = toArray( document.querySelectorAll( '.navigate-right' ) );\n\t\tdom.controlsUp = toArray( document.querySelectorAll( '.navigate-up' ) );\n\t\tdom.controlsDown = toArray( document.querySelectorAll( '.navigate-down' ) );\n\t\tdom.controlsPrev = toArray( document.querySelectorAll( '.navigate-prev' ) );\n\t\tdom.controlsNext = toArray( document.querySelectorAll( '.navigate-next' ) );\n\n\t\tdom.statusDiv = createStatusDiv();\n\t}\n\n\t/**\n\t * Creates a hidden div with role aria-live to announce the\n\t * current slide content. Hide the div off-screen to make it\n\t * available only to Assistive Technologies.\n\t */\n\tfunction createStatusDiv() {\n\n\t\tvar statusDiv = document.getElementById( 'aria-status-div' );\n\t\tif( !statusDiv ) {\n\t\t\tstatusDiv = document.createElement( 'div' );\n\t\t\tstatusDiv.style.position = 'absolute';\n\t\t\tstatusDiv.style.height = '1px';\n\t\t\tstatusDiv.style.width = '1px';\n\t\t\tstatusDiv.style.overflow ='hidden';\n\t\t\tstatusDiv.style.clip = 'rect( 1px, 1px, 1px, 1px )';\n\t\t\tstatusDiv.setAttribute( 'id', 'aria-status-div' );\n\t\t\tstatusDiv.setAttribute( 'aria-live', 'polite' );\n\t\t\tstatusDiv.setAttribute( 'aria-atomic','true' );\n\t\t\tdom.wrapper.appendChild( statusDiv );\n\t\t}\n\t\treturn statusDiv;\n\n\t}\n\n\t/**\n\t * Configures the presentation for printing to a static\n\t * PDF.\n\t */\n\tfunction setupPDF() {\n\n\t\tvar slideSize = getComputedSlideSize( window.innerWidth, window.innerHeight );\n\n\t\t// Dimensions of the PDF pages\n\t\tvar pageWidth = Math.floor( slideSize.width * ( 1 + config.margin ) ),\n\t\t\tpageHeight = Math.floor( slideSize.height * ( 1 + config.margin  ) );\n\n\t\t// Dimensions of slides within the pages\n\t\tvar slideWidth = slideSize.width,\n\t\t\tslideHeight = slideSize.height;\n\n\t\t// Let the browser know what page size we want to print\n\t\tinjectStyleSheet( '@page{size:'+ pageWidth +'px '+ pageHeight +'px; margin: 0;}' );\n\n\t\t// Limit the size of certain elements to the dimensions of the slide\n\t\tinjectStyleSheet( '.reveal section>img, .reveal section>video, .reveal section>iframe{max-width: '+ slideWidth +'px; max-height:'+ slideHeight +'px}' );\n\n\t\tdocument.body.classList.add( 'print-pdf' );\n\t\tdocument.body.style.width = pageWidth + 'px';\n\t\tdocument.body.style.height = pageHeight + 'px';\n\n\t\t// Add each slide's index as attributes on itself, we need these\n\t\t// indices to generate slide numbers below\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\t\t\t\t} );\n\t\t\t}\n\t\t} );\n\n\t\t// Slide and slide background layout\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\n\t\t\t// Vertical stacks are not centred since their section\n\t\t\t// children will be\n\t\t\tif( slide.classList.contains( 'stack' ) === false ) {\n\t\t\t\t// Center the slide inside of the page, giving the slide some margin\n\t\t\t\tvar left = ( pageWidth - slideWidth ) / 2,\n\t\t\t\t\ttop = ( pageHeight - slideHeight ) / 2;\n\n\t\t\t\tvar contentHeight = getAbsoluteHeight( slide );\n\t\t\t\tvar numberOfPages = Math.max( Math.ceil( contentHeight / pageHeight ), 1 );\n\n\t\t\t\t// Center slides vertically\n\t\t\t\tif( numberOfPages === 1 && config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\ttop = Math.max( ( pageHeight - contentHeight ) / 2, 0 );\n\t\t\t\t}\n\n\t\t\t\t// Position the slide inside of the page\n\t\t\t\tslide.style.left = left + 'px';\n\t\t\t\tslide.style.top = top + 'px';\n\t\t\t\tslide.style.width = slideWidth + 'px';\n\n\t\t\t\t// TODO Backgrounds need to be multiplied when the slide\n\t\t\t\t// stretches over multiple pages\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background ) {\n\t\t\t\t\tbackground.style.width = pageWidth + 'px';\n\t\t\t\t\tbackground.style.height = ( pageHeight * numberOfPages ) + 'px';\n\t\t\t\t\tbackground.style.top = -top + 'px';\n\t\t\t\t\tbackground.style.left = -left + 'px';\n\t\t\t\t}\n\n\t\t\t\t// Inject notes if `showNotes` is enabled\n\t\t\t\tif( config.showNotes ) {\n\t\t\t\t\tvar notes = getSlideNotes( slide );\n\t\t\t\t\tif( notes ) {\n\t\t\t\t\t\tvar notesSpacing = 8;\n\t\t\t\t\t\tvar notesElement = document.createElement( 'div' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes' );\n\t\t\t\t\t\tnotesElement.classList.add( 'speaker-notes-pdf' );\n\t\t\t\t\t\tnotesElement.innerHTML = notes;\n\t\t\t\t\t\tnotesElement.style.left = ( notesSpacing - left ) + 'px';\n\t\t\t\t\t\tnotesElement.style.bottom = ( notesSpacing - top ) + 'px';\n\t\t\t\t\t\tnotesElement.style.width = ( pageWidth - notesSpacing*2 ) + 'px';\n\t\t\t\t\t\tslide.appendChild( notesElement );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Inject slide numbers if `slideNumbers` are enabled\n\t\t\t\tif( config.slideNumber ) {\n\t\t\t\t\tvar slideNumberH = parseInt( slide.getAttribute( 'data-index-h' ), 10 ) + 1,\n\t\t\t\t\t\tslideNumberV = parseInt( slide.getAttribute( 'data-index-v' ), 10 ) + 1;\n\n\t\t\t\t\tvar numberElement = document.createElement( 'div' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number' );\n\t\t\t\t\tnumberElement.classList.add( 'slide-number-pdf' );\n\t\t\t\t\tnumberElement.innerHTML = formatSlideNumber( slideNumberH, '.', slideNumberV );\n\t\t\t\t\tbackground.appendChild( numberElement );\n\t\t\t\t}\n\t\t\t}\n\n\t\t} );\n\n\t\t// Show all fragments\n\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' .fragment' ) ).forEach( function( fragment ) {\n\t\t\tfragment.classList.add( 'visible' );\n\t\t} );\n\n\t}\n\n\t/**\n\t * This is an unfortunate necessity. Iframes can trigger the\n\t * parent window to scroll, for example by focusing an input.\n\t * This scrolling can not be prevented by hiding overflow in\n\t * CSS so we have to resort to repeatedly checking if the\n\t * browser has decided to offset our slides :(\n\t */\n\tfunction setupIframeScrollPrevention() {\n\n\t\tif( dom.slides.querySelector( 'iframe' ) ) {\n\t\t\tsetInterval( function() {\n\t\t\t\tif( dom.wrapper.scrollTop !== 0 || dom.wrapper.scrollLeft !== 0 ) {\n\t\t\t\t\tdom.wrapper.scrollTop = 0;\n\t\t\t\t\tdom.wrapper.scrollLeft = 0;\n\t\t\t\t}\n\t\t\t}, 500 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates an HTML element and returns a reference to it.\n\t * If the element already exists the existing instance will\n\t * be returned.\n\t */\n\tfunction createSingletonNode( container, tagname, classname, innerHTML ) {\n\n\t\t// Find all nodes matching the description\n\t\tvar nodes = container.querySelectorAll( '.' + classname );\n\n\t\t// Check all matches to find one which is a direct child of\n\t\t// the specified container\n\t\tfor( var i = 0; i < nodes.length; i++ ) {\n\t\t\tvar testNode = nodes[i];\n\t\t\tif( testNode.parentNode === container ) {\n\t\t\t\treturn testNode;\n\t\t\t}\n\t\t}\n\n\t\t// If no node was found, create it now\n\t\tvar node = document.createElement( tagname );\n\t\tnode.classList.add( classname );\n\t\tif( typeof innerHTML === 'string' ) {\n\t\t\tnode.innerHTML = innerHTML;\n\t\t}\n\t\tcontainer.appendChild( node );\n\n\t\treturn node;\n\n\t}\n\n\t/**\n\t * Creates the slide background elements and appends them\n\t * to the background container. One element is created per\n\t * slide no matter if the given slide has visible background.\n\t */\n\tfunction createBackgrounds() {\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\t// Clear prior backgrounds\n\t\tdom.background.innerHTML = '';\n\t\tdom.background.classList.add( 'no-transition' );\n\n\t\t// Iterate over all horizontal slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( slideh ) {\n\n\t\t\tvar backgroundStack;\n\n\t\t\tif( printMode ) {\n\t\t\t\tbackgroundStack = createBackground( slideh, slideh );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundStack = createBackground( slideh, dom.background );\n\t\t\t}\n\n\t\t\t// Iterate over all vertical slides\n\t\t\ttoArray( slideh.querySelectorAll( 'section' ) ).forEach( function( slidev ) {\n\n\t\t\t\tif( printMode ) {\n\t\t\t\t\tcreateBackground( slidev, slidev );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tcreateBackground( slidev, backgroundStack );\n\t\t\t\t}\n\n\t\t\t\tbackgroundStack.classList.add( 'stack' );\n\n\t\t\t} );\n\n\t\t} );\n\n\t\t// Add parallax background if specified\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tdom.background.style.backgroundImage = 'url(\"' + config.parallaxBackgroundImage + '\")';\n\t\t\tdom.background.style.backgroundSize = config.parallaxBackgroundSize;\n\n\t\t\t// Make sure the below properties are set on the element - these properties are\n\t\t\t// needed for proper transitions to be set on the element via CSS. To remove\n\t\t\t// annoying background slide-in effect when the presentation starts, apply\n\t\t\t// these properties after short time delay\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.wrapper.classList.add( 'has-parallax-background' );\n\t\t\t}, 1 );\n\n\t\t}\n\t\telse {\n\n\t\t\tdom.background.style.backgroundImage = '';\n\t\t\tdom.wrapper.classList.remove( 'has-parallax-background' );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Creates a background for the given slide.\n\t *\n\t * @param {HTMLElement} slide\n\t * @param {HTMLElement} container The element that the background\n\t * should be appended to\n\t */\n\tfunction createBackground( slide, container ) {\n\n\t\tvar data = {\n\t\t\tbackground: slide.getAttribute( 'data-background' ),\n\t\t\tbackgroundSize: slide.getAttribute( 'data-background-size' ),\n\t\t\tbackgroundImage: slide.getAttribute( 'data-background-image' ),\n\t\t\tbackgroundVideo: slide.getAttribute( 'data-background-video' ),\n\t\t\tbackgroundIframe: slide.getAttribute( 'data-background-iframe' ),\n\t\t\tbackgroundColor: slide.getAttribute( 'data-background-color' ),\n\t\t\tbackgroundRepeat: slide.getAttribute( 'data-background-repeat' ),\n\t\t\tbackgroundPosition: slide.getAttribute( 'data-background-position' ),\n\t\t\tbackgroundTransition: slide.getAttribute( 'data-background-transition' )\n\t\t};\n\n\t\tvar element = document.createElement( 'div' );\n\n\t\t// Carry over custom classes from the slide to the background\n\t\telement.className = 'slide-background ' + slide.className.replace( /present|past|future/, '' );\n\n\t\tif( data.background ) {\n\t\t\t// Auto-wrap image urls in url(...)\n\t\t\tif( /^(http|file|\\/\\/)/gi.test( data.background ) || /\\.(svg|png|jpg|jpeg|gif|bmp)$/gi.test( data.background ) ) {\n\t\t\t\tslide.setAttribute( 'data-background-image', data.background );\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.background = data.background;\n\t\t\t}\n\t\t}\n\n\t\t// Create a hash for this combination of background settings.\n\t\t// This is used to determine when two slide backgrounds are\n\t\t// the same.\n\t\tif( data.background || data.backgroundColor || data.backgroundImage || data.backgroundVideo || data.backgroundIframe ) {\n\t\t\telement.setAttribute( 'data-background-hash', data.background +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundSize +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundImage +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundVideo +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundIframe +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundColor +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundRepeat +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundPosition +\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tdata.backgroundTransition );\n\t\t}\n\n\t\t// Additional and optional background properties\n\t\tif( data.backgroundSize ) element.style.backgroundSize = data.backgroundSize;\n\t\tif( data.backgroundColor ) element.style.backgroundColor = data.backgroundColor;\n\t\tif( data.backgroundRepeat ) element.style.backgroundRepeat = data.backgroundRepeat;\n\t\tif( data.backgroundPosition ) element.style.backgroundPosition = data.backgroundPosition;\n\t\tif( data.backgroundTransition ) element.setAttribute( 'data-background-transition', data.backgroundTransition );\n\n\t\tcontainer.appendChild( element );\n\n\t\t// If backgrounds are being recreated, clear old classes\n\t\tslide.classList.remove( 'has-dark-background' );\n\t\tslide.classList.remove( 'has-light-background' );\n\n\t\t// If this slide has a background color, add a class that\n\t\t// signals if it is light or dark. If the slide has no background\n\t\t// color, no class will be set\n\t\tvar computedBackgroundColor = window.getComputedStyle( element ).backgroundColor;\n\t\tif( computedBackgroundColor ) {\n\t\t\tvar rgb = colorToRgb( computedBackgroundColor );\n\n\t\t\t// Ignore fully transparent backgrounds. Some browsers return\n\t\t\t// rgba(0,0,0,0) when reading the computed background color of\n\t\t\t// an element with no background\n\t\t\tif( rgb && rgb.a !== 0 ) {\n\t\t\t\tif( colorBrightness( computedBackgroundColor ) < 128 ) {\n\t\t\t\t\tslide.classList.add( 'has-dark-background' );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.classList.add( 'has-light-background' );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn element;\n\n\t}\n\n\t/**\n\t * Registers a listener to postMessage events, this makes it\n\t * possible to call all reveal.js API methods from another\n\t * window. For example:\n\t *\n\t * revealWindow.postMessage( JSON.stringify({\n\t *   method: 'slide',\n\t *   args: [ 2 ]\n\t * }), '*' );\n\t */\n\tfunction setupPostMessage() {\n\n\t\tif( config.postMessage ) {\n\t\t\twindow.addEventListener( 'message', function ( event ) {\n\t\t\t\tvar data = event.data;\n\n\t\t\t\t// Make sure we're dealing with JSON\n\t\t\t\tif( typeof data === 'string' && data.charAt( 0 ) === '{' && data.charAt( data.length - 1 ) === '}' ) {\n\t\t\t\t\tdata = JSON.parse( data );\n\n\t\t\t\t\t// Check if the requested method can be found\n\t\t\t\t\tif( data.method && typeof Reveal[data.method] === 'function' ) {\n\t\t\t\t\t\tReveal[data.method].apply( Reveal, data.args );\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies the configuration settings from the config\n\t * object. May be called multiple times.\n\t */\n\tfunction configure( options ) {\n\n\t\tvar numberOfSlides = dom.wrapper.querySelectorAll( SLIDES_SELECTOR ).length;\n\n\t\tdom.wrapper.classList.remove( config.transition );\n\n\t\t// New config options may be passed when this method\n\t\t// is invoked through the API after initialization\n\t\tif( typeof options === 'object' ) extend( config, options );\n\n\t\t// Force linear transition based on browser capabilities\n\t\tif( features.transforms3d === false ) config.transition = 'linear';\n\n\t\tdom.wrapper.classList.add( config.transition );\n\n\t\tdom.wrapper.setAttribute( 'data-transition-speed', config.transitionSpeed );\n\t\tdom.wrapper.setAttribute( 'data-background-transition', config.backgroundTransition );\n\n\t\tdom.controls.style.display = config.controls ? 'block' : 'none';\n\t\tdom.progress.style.display = config.progress ? 'block' : 'none';\n\t\tdom.slideNumber.style.display = config.slideNumber && !isPrintingPDF() ? 'block' : 'none';\n\n\t\tif( config.rtl ) {\n\t\t\tdom.wrapper.classList.add( 'rtl' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'rtl' );\n\t\t}\n\n\t\tif( config.center ) {\n\t\t\tdom.wrapper.classList.add( 'center' );\n\t\t}\n\t\telse {\n\t\t\tdom.wrapper.classList.remove( 'center' );\n\t\t}\n\n\t\t// Exit the paused mode if it was configured off\n\t\tif( config.pause === false ) {\n\t\t\tresume();\n\t\t}\n\n\t\tif( config.showNotes ) {\n\t\t\tdom.speakerNotes.classList.add( 'visible' );\n\t\t}\n\t\telse {\n\t\t\tdom.speakerNotes.classList.remove( 'visible' );\n\t\t}\n\n\t\tif( config.mouseWheel ) {\n\t\t\tdocument.addEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.addEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\t\telse {\n\t\t\tdocument.removeEventListener( 'DOMMouseScroll', onDocumentMouseScroll, false ); // FF\n\t\t\tdocument.removeEventListener( 'mousewheel', onDocumentMouseScroll, false );\n\t\t}\n\n\t\t// Rolling 3D links\n\t\tif( config.rollingLinks ) {\n\t\t\tenableRollingLinks();\n\t\t}\n\t\telse {\n\t\t\tdisableRollingLinks();\n\t\t}\n\n\t\t// Iframe link previews\n\t\tif( config.previewLinks ) {\n\t\t\tenablePreviewLinks();\n\t\t}\n\t\telse {\n\t\t\tdisablePreviewLinks();\n\t\t\tenablePreviewLinks( '[data-preview-link]' );\n\t\t}\n\n\t\t// Remove existing auto-slide controls\n\t\tif( autoSlidePlayer ) {\n\t\t\tautoSlidePlayer.destroy();\n\t\t\tautoSlidePlayer = null;\n\t\t}\n\n\t\t// Generate auto-slide controls if needed\n\t\tif( numberOfSlides > 1 && config.autoSlide && config.autoSlideStoppable && features.canvas && features.requestAnimationFrame ) {\n\t\t\tautoSlidePlayer = new Playback( dom.wrapper, function() {\n\t\t\t\treturn Math.min( Math.max( ( Date.now() - autoSlideStartTime ) / autoSlide, 0 ), 1 );\n\t\t\t} );\n\n\t\t\tautoSlidePlayer.on( 'click', onAutoSlidePlayerClick );\n\t\t\tautoSlidePaused = false;\n\t\t}\n\n\t\t// When fragments are turned off they should be visible\n\t\tif( config.fragments === false ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( '.fragment' ) ).forEach( function( element ) {\n\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t} );\n\t\t}\n\n\t\tsync();\n\n\t}\n\n\t/**\n\t * Binds all event listeners.\n\t */\n\tfunction addEventListeners() {\n\n\t\teventsAreBound = true;\n\n\t\twindow.addEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.addEventListener( 'resize', onWindowResize, false );\n\n\t\tif( config.touch ) {\n\t\t\tdom.wrapper.addEventListener( 'touchstart', onTouchStart, false );\n\t\t\tdom.wrapper.addEventListener( 'touchmove', onTouchMove, false );\n\t\t\tdom.wrapper.addEventListener( 'touchend', onTouchEnd, false );\n\n\t\t\t// Support pointer-style touch interaction as well\n\t\t\tif( window.navigator.pointerEnabled ) {\n\t\t\t\t// IE 11 uses un-prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'pointerdown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointermove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'pointerup', onPointerUp, false );\n\t\t\t}\n\t\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\t\t// IE 10 uses prefixed version of pointer events\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\t\tdom.wrapper.addEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t\t}\n\t\t}\n\n\t\tif( config.keyboard ) {\n\t\t\tdocument.addEventListener( 'keydown', onDocumentKeyDown, false );\n\t\t\tdocument.addEventListener( 'keypress', onDocumentKeyPress, false );\n\t\t}\n\n\t\tif( config.progress && dom.progress ) {\n\t\t\tdom.progress.addEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\tif( config.focusBodyOnPageVisibilityChange ) {\n\t\t\tvar visibilityChange;\n\n\t\t\tif( 'hidden' in document ) {\n\t\t\t\tvisibilityChange = 'visibilitychange';\n\t\t\t}\n\t\t\telse if( 'msHidden' in document ) {\n\t\t\t\tvisibilityChange = 'msvisibilitychange';\n\t\t\t}\n\t\t\telse if( 'webkitHidden' in document ) {\n\t\t\t\tvisibilityChange = 'webkitvisibilitychange';\n\t\t\t}\n\n\t\t\tif( visibilityChange ) {\n\t\t\t\tdocument.addEventListener( visibilityChange, onPageVisibilityChange, false );\n\t\t\t}\n\t\t}\n\n\t\t// Listen to both touch and click events, in case the device\n\t\t// supports both\n\t\tvar pointerEvents = [ 'touchstart', 'click' ];\n\n\t\t// Only support touch for Android, fixes double navigations in\n\t\t// stock browser\n\t\tif( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tpointerEvents = [ 'touchstart' ];\n\t\t}\n\n\t\tpointerEvents.forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.addEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.addEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.addEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.addEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.addEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.addEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbinds all event listeners.\n\t */\n\tfunction removeEventListeners() {\n\n\t\teventsAreBound = false;\n\n\t\tdocument.removeEventListener( 'keydown', onDocumentKeyDown, false );\n\t\tdocument.removeEventListener( 'keypress', onDocumentKeyPress, false );\n\t\twindow.removeEventListener( 'hashchange', onWindowHashChange, false );\n\t\twindow.removeEventListener( 'resize', onWindowResize, false );\n\n\t\tdom.wrapper.removeEventListener( 'touchstart', onTouchStart, false );\n\t\tdom.wrapper.removeEventListener( 'touchmove', onTouchMove, false );\n\t\tdom.wrapper.removeEventListener( 'touchend', onTouchEnd, false );\n\n\t\t// IE11\n\t\tif( window.navigator.pointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'pointerdown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointermove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'pointerup', onPointerUp, false );\n\t\t}\n\t\t// IE10\n\t\telse if( window.navigator.msPointerEnabled ) {\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerDown', onPointerDown, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerMove', onPointerMove, false );\n\t\t\tdom.wrapper.removeEventListener( 'MSPointerUp', onPointerUp, false );\n\t\t}\n\n\t\tif ( config.progress && dom.progress ) {\n\t\t\tdom.progress.removeEventListener( 'click', onProgressClicked, false );\n\t\t}\n\n\t\t[ 'touchstart', 'click' ].forEach( function( eventName ) {\n\t\t\tdom.controlsLeft.forEach( function( el ) { el.removeEventListener( eventName, onNavigateLeftClicked, false ); } );\n\t\t\tdom.controlsRight.forEach( function( el ) { el.removeEventListener( eventName, onNavigateRightClicked, false ); } );\n\t\t\tdom.controlsUp.forEach( function( el ) { el.removeEventListener( eventName, onNavigateUpClicked, false ); } );\n\t\t\tdom.controlsDown.forEach( function( el ) { el.removeEventListener( eventName, onNavigateDownClicked, false ); } );\n\t\t\tdom.controlsPrev.forEach( function( el ) { el.removeEventListener( eventName, onNavigatePrevClicked, false ); } );\n\t\t\tdom.controlsNext.forEach( function( el ) { el.removeEventListener( eventName, onNavigateNextClicked, false ); } );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Extend object a with the properties of object b.\n\t * If there's a conflict, object b takes precedence.\n\t */\n\tfunction extend( a, b ) {\n\n\t\tfor( var i in b ) {\n\t\t\ta[ i ] = b[ i ];\n\t\t}\n\n\t}\n\n\t/**\n\t * Converts the target object to an array.\n\t */\n\tfunction toArray( o ) {\n\n\t\treturn Array.prototype.slice.call( o );\n\n\t}\n\n\t/**\n\t * Utility for deserializing a value.\n\t */\n\tfunction deserialize( value ) {\n\n\t\tif( typeof value === 'string' ) {\n\t\t\tif( value === 'null' ) return null;\n\t\t\telse if( value === 'true' ) return true;\n\t\t\telse if( value === 'false' ) return false;\n\t\t\telse if( value.match( /^\\d+$/ ) ) return parseFloat( value );\n\t\t}\n\n\t\treturn value;\n\n\t}\n\n\t/**\n\t * Measures the distance in pixels between point a\n\t * and point b.\n\t *\n\t * @param {Object} a point with x/y properties\n\t * @param {Object} b point with x/y properties\n\t */\n\tfunction distanceBetween( a, b ) {\n\n\t\tvar dx = a.x - b.x,\n\t\t\tdy = a.y - b.y;\n\n\t\treturn Math.sqrt( dx*dx + dy*dy );\n\n\t}\n\n\t/**\n\t * Applies a CSS transform to the target element.\n\t */\n\tfunction transformElement( element, transform ) {\n\n\t\telement.style.WebkitTransform = transform;\n\t\telement.style.MozTransform = transform;\n\t\telement.style.msTransform = transform;\n\t\telement.style.transform = transform;\n\n\t}\n\n\t/**\n\t * Applies CSS transforms to the slides container. The container\n\t * is transformed from two separate sources: layout and the overview\n\t * mode.\n\t */\n\tfunction transformSlides( transforms ) {\n\n\t\t// Pick up new transforms from arguments\n\t\tif( typeof transforms.layout === 'string' ) slidesTransform.layout = transforms.layout;\n\t\tif( typeof transforms.overview === 'string' ) slidesTransform.overview = transforms.overview;\n\n\t\t// Apply the transforms to the slides container\n\t\tif( slidesTransform.layout ) {\n\t\t\ttransformElement( dom.slides, slidesTransform.layout + ' ' + slidesTransform.overview );\n\t\t}\n\t\telse {\n\t\t\ttransformElement( dom.slides, slidesTransform.overview );\n\t\t}\n\n\t}\n\n\t/**\n\t * Injects the given CSS styles into the DOM.\n\t */\n\tfunction injectStyleSheet( value ) {\n\n\t\tvar tag = document.createElement( 'style' );\n\t\ttag.type = 'text/css';\n\t\tif( tag.styleSheet ) {\n\t\t\ttag.styleSheet.cssText = value;\n\t\t}\n\t\telse {\n\t\t\ttag.appendChild( document.createTextNode( value ) );\n\t\t}\n\t\tdocument.getElementsByTagName( 'head' )[0].appendChild( tag );\n\n\t}\n\n\t/**\n\t * Converts various color input formats to an {r:0,g:0,b:0} object.\n\t *\n\t * @param {String} color The string representation of a color,\n\t * the following formats are supported:\n\t * - #000\n\t * - #000000\n\t * - rgb(0,0,0)\n\t */\n\tfunction colorToRgb( color ) {\n\n\t\tvar hex3 = color.match( /^#([0-9a-f]{3})$/i );\n\t\tif( hex3 && hex3[1] ) {\n\t\t\thex3 = hex3[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex3.charAt( 0 ), 16 ) * 0x11,\n\t\t\t\tg: parseInt( hex3.charAt( 1 ), 16 ) * 0x11,\n\t\t\t\tb: parseInt( hex3.charAt( 2 ), 16 ) * 0x11\n\t\t\t};\n\t\t}\n\n\t\tvar hex6 = color.match( /^#([0-9a-f]{6})$/i );\n\t\tif( hex6 && hex6[1] ) {\n\t\t\thex6 = hex6[1];\n\t\t\treturn {\n\t\t\t\tr: parseInt( hex6.substr( 0, 2 ), 16 ),\n\t\t\t\tg: parseInt( hex6.substr( 2, 2 ), 16 ),\n\t\t\t\tb: parseInt( hex6.substr( 4, 2 ), 16 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgb = color.match( /^rgb\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\)$/i );\n\t\tif( rgb ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgb[1], 10 ),\n\t\t\t\tg: parseInt( rgb[2], 10 ),\n\t\t\t\tb: parseInt( rgb[3], 10 )\n\t\t\t};\n\t\t}\n\n\t\tvar rgba = color.match( /^rgba\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*\\,\\s*([\\d]+|[\\d]*.[\\d]+)\\s*\\)$/i );\n\t\tif( rgba ) {\n\t\t\treturn {\n\t\t\t\tr: parseInt( rgba[1], 10 ),\n\t\t\t\tg: parseInt( rgba[2], 10 ),\n\t\t\t\tb: parseInt( rgba[3], 10 ),\n\t\t\t\ta: parseFloat( rgba[4] )\n\t\t\t};\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Calculates brightness on a scale of 0-255.\n\t *\n\t * @param color See colorStringToRgb for supported formats.\n\t */\n\tfunction colorBrightness( color ) {\n\n\t\tif( typeof color === 'string' ) color = colorToRgb( color );\n\n\t\tif( color ) {\n\t\t\treturn ( color.r * 299 + color.g * 587 + color.b * 114 ) / 1000;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the height of the given element by looking\n\t * at the position and height of its immediate children.\n\t */\n\tfunction getAbsoluteHeight( element ) {\n\n\t\tvar height = 0;\n\n\t\tif( element ) {\n\t\t\tvar absoluteChildren = 0;\n\n\t\t\ttoArray( element.childNodes ).forEach( function( child ) {\n\n\t\t\t\tif( typeof child.offsetTop === 'number' && child.style ) {\n\t\t\t\t\t// Count # of abs children\n\t\t\t\t\tif( window.getComputedStyle( child ).position === 'absolute' ) {\n\t\t\t\t\t\tabsoluteChildren += 1;\n\t\t\t\t\t}\n\n\t\t\t\t\theight = Math.max( height, child.offsetTop + child.offsetHeight );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t// If there are no absolute children, use offsetHeight\n\t\t\tif( absoluteChildren === 0 ) {\n\t\t\t\theight = element.offsetHeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Returns the remaining height within the parent of the\n\t * target element.\n\t *\n\t * remaining height = [ configured parent height ] - [ current parent height ]\n\t */\n\tfunction getRemainingHeight( element, height ) {\n\n\t\theight = height || 0;\n\n\t\tif( element ) {\n\t\t\tvar newHeight, oldHeight = element.style.height;\n\n\t\t\t// Change the .stretch element height to 0 in order find the height of all\n\t\t\t// the other elements\n\t\t\telement.style.height = '0px';\n\t\t\tnewHeight = height - element.parentNode.offsetHeight;\n\n\t\t\t// Restore the old height, just in case\n\t\t\telement.style.height = oldHeight + 'px';\n\n\t\t\treturn newHeight;\n\t\t}\n\n\t\treturn height;\n\n\t}\n\n\t/**\n\t * Checks if this instance is being used to print a PDF.\n\t */\n\tfunction isPrintingPDF() {\n\n\t\treturn ( /print-pdf/gi ).test( window.location.search );\n\n\t}\n\n\t/**\n\t * Hides the address bar if we're on a mobile device.\n\t */\n\tfunction hideAddressBar() {\n\n\t\tif( config.hideAddressBar && isMobileDevice ) {\n\t\t\t// Events that should trigger the address bar to hide\n\t\t\twindow.addEventListener( 'load', removeAddressBar, false );\n\t\t\twindow.addEventListener( 'orientationchange', removeAddressBar, false );\n\t\t}\n\n\t}\n\n\t/**\n\t * Causes the address bar to hide on mobile devices,\n\t * more vertical space ftw.\n\t */\n\tfunction removeAddressBar() {\n\n\t\tsetTimeout( function() {\n\t\t\twindow.scrollTo( 0, 1 );\n\t\t}, 10 );\n\n\t}\n\n\t/**\n\t * Dispatches an event of the specified type from the\n\t * reveal DOM element.\n\t */\n\tfunction dispatchEvent( type, args ) {\n\n\t\tvar event = document.createEvent( 'HTMLEvents', 1, 2 );\n\t\tevent.initEvent( type, true, true );\n\t\textend( event, args );\n\t\tdom.wrapper.dispatchEvent( event );\n\n\t\t// If we're in an iframe, post each reveal.js event to the\n\t\t// parent window. Used by the notes plugin\n\t\tif( config.postMessageEvents && window.parent !== window.self ) {\n\t\t\twindow.parent.postMessage( JSON.stringify({ namespace: 'reveal', eventName: type, state: getState() }), '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Wrap all links in 3D goodness.\n\t */\n\tfunction enableRollingLinks() {\n\n\t\tif( features.transforms3d && !( 'msPerspective' in document.body.style ) ) {\n\t\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a' );\n\n\t\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\t\tvar anchor = anchors[i];\n\n\t\t\t\tif( anchor.textContent && !anchor.querySelector( '*' ) && ( !anchor.className || !anchor.classList.contains( anchor, 'roll' ) ) ) {\n\t\t\t\t\tvar span = document.createElement('span');\n\t\t\t\t\tspan.setAttribute('data-title', anchor.text);\n\t\t\t\t\tspan.innerHTML = anchor.innerHTML;\n\n\t\t\t\t\tanchor.classList.add( 'roll' );\n\t\t\t\t\tanchor.innerHTML = '';\n\t\t\t\t\tanchor.appendChild(span);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Unwrap all 3D links.\n\t */\n\tfunction disableRollingLinks() {\n\n\t\tvar anchors = dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ' a.roll' );\n\n\t\tfor( var i = 0, len = anchors.length; i < len; i++ ) {\n\t\t\tvar anchor = anchors[i];\n\t\t\tvar span = anchor.querySelector( 'span' );\n\n\t\t\tif( span ) {\n\t\t\t\tanchor.classList.remove( 'roll' );\n\t\t\t\tanchor.innerHTML = span.innerHTML;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Bind preview frame links.\n\t */\n\tfunction enablePreviewLinks( selector ) {\n\n\t\tvar anchors = toArray( document.querySelectorAll( selector ? selector : 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.addEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Unbind preview frame links.\n\t */\n\tfunction disablePreviewLinks() {\n\n\t\tvar anchors = toArray( document.querySelectorAll( 'a' ) );\n\n\t\tanchors.forEach( function( element ) {\n\t\t\tif( /^(http|www)/gi.test( element.getAttribute( 'href' ) ) ) {\n\t\t\t\telement.removeEventListener( 'click', onPreviewLinkClicked, false );\n\t\t\t}\n\t\t} );\n\n\t}\n\n\t/**\n\t * Opens a preview window for the target URL.\n\t */\n\tfunction showPreview( url ) {\n\n\t\tcloseOverlay();\n\n\t\tdom.overlay = document.createElement( 'div' );\n\t\tdom.overlay.classList.add( 'overlay' );\n\t\tdom.overlay.classList.add( 'overlay-preview' );\n\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\tdom.overlay.innerHTML = [\n\t\t\t'<header>',\n\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'<a class=\"external\" href=\"'+ url +'\" target=\"_blank\"><span class=\"icon\"></span></a>',\n\t\t\t'</header>',\n\t\t\t'<div class=\"spinner\"></div>',\n\t\t\t'<div class=\"viewport\">',\n\t\t\t\t'<iframe src=\"'+ url +'\"></iframe>',\n\t\t\t'</div>'\n\t\t].join('');\n\n\t\tdom.overlay.querySelector( 'iframe' ).addEventListener( 'load', function( event ) {\n\t\t\tdom.overlay.classList.add( 'loaded' );\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t\tevent.preventDefault();\n\t\t}, false );\n\n\t\tdom.overlay.querySelector( '.external' ).addEventListener( 'click', function( event ) {\n\t\t\tcloseOverlay();\n\t\t}, false );\n\n\t\tsetTimeout( function() {\n\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Opens a overlay window with help material.\n\t */\n\tfunction showHelp() {\n\n\t\tif( config.help ) {\n\n\t\t\tcloseOverlay();\n\n\t\t\tdom.overlay = document.createElement( 'div' );\n\t\t\tdom.overlay.classList.add( 'overlay' );\n\t\t\tdom.overlay.classList.add( 'overlay-help' );\n\t\t\tdom.wrapper.appendChild( dom.overlay );\n\n\t\t\tvar html = '<p class=\"title\">Keyboard Shortcuts</p><br/>';\n\n\t\t\thtml += '<table><th>KEY</th><th>ACTION</th>';\n\t\t\tfor( var key in keyboardShortcuts ) {\n\t\t\t\thtml += '<tr><td>' + key + '</td><td>' + keyboardShortcuts[ key ] + '</td></tr>';\n\t\t\t}\n\n\t\t\thtml += '</table>';\n\n\t\t\tdom.overlay.innerHTML = [\n\t\t\t\t'<header>',\n\t\t\t\t\t'<a class=\"close\" href=\"#\"><span class=\"icon\"></span></a>',\n\t\t\t\t'</header>',\n\t\t\t\t'<div class=\"viewport\">',\n\t\t\t\t\t'<div class=\"viewport-inner\">'+ html +'</div>',\n\t\t\t\t'</div>'\n\t\t\t].join('');\n\n\t\t\tdom.overlay.querySelector( '.close' ).addEventListener( 'click', function( event ) {\n\t\t\t\tcloseOverlay();\n\t\t\t\tevent.preventDefault();\n\t\t\t}, false );\n\n\t\t\tsetTimeout( function() {\n\t\t\t\tdom.overlay.classList.add( 'visible' );\n\t\t\t}, 1 );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Closes any currently open overlay.\n\t */\n\tfunction closeOverlay() {\n\n\t\tif( dom.overlay ) {\n\t\t\tdom.overlay.parentNode.removeChild( dom.overlay );\n\t\t\tdom.overlay = null;\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies JavaScript-controlled layout rules to the\n\t * presentation.\n\t */\n\tfunction layout() {\n\n\t\tif( dom.wrapper && !isPrintingPDF() ) {\n\n\t\t\tvar size = getComputedSlideSize();\n\n\t\t\tvar slidePadding = 20; // TODO Dig this out of DOM\n\n\t\t\t// Layout the contents of the slides\n\t\t\tlayoutSlideContents( config.width, config.height, slidePadding );\n\n\t\t\tdom.slides.style.width = size.width + 'px';\n\t\t\tdom.slides.style.height = size.height + 'px';\n\n\t\t\t// Determine scale of content to fit within available space\n\t\t\tscale = Math.min( size.presentationWidth / size.width, size.presentationHeight / size.height );\n\n\t\t\t// Respect max/min scale settings\n\t\t\tscale = Math.max( scale, config.minScale );\n\t\t\tscale = Math.min( scale, config.maxScale );\n\n\t\t\t// Don't apply any scaling styles if scale is 1\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\tdom.slides.style.left = '';\n\t\t\t\tdom.slides.style.top = '';\n\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\tdom.slides.style.right = '';\n\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Use zoom to scale up in desktop Chrome so that content\n\t\t\t\t// remains crisp. We don't use zoom to scale down since that\n\t\t\t\t// can lead to shifts in text layout/line breaks.\n\t\t\t\tif( scale > 1 && !isMobileDevice && /chrome/i.test( navigator.userAgent ) && typeof dom.slides.style.zoom !== 'undefined' ) {\n\t\t\t\t\tdom.slides.style.zoom = scale;\n\t\t\t\t\tdom.slides.style.left = '';\n\t\t\t\t\tdom.slides.style.top = '';\n\t\t\t\t\tdom.slides.style.bottom = '';\n\t\t\t\t\tdom.slides.style.right = '';\n\t\t\t\t\ttransformSlides( { layout: '' } );\n\t\t\t\t}\n\t\t\t\t// Apply scale transform as a fallback\n\t\t\t\telse {\n\t\t\t\t\tdom.slides.style.zoom = '';\n\t\t\t\t\tdom.slides.style.left = '50%';\n\t\t\t\t\tdom.slides.style.top = '50%';\n\t\t\t\t\tdom.slides.style.bottom = 'auto';\n\t\t\t\t\tdom.slides.style.right = 'auto';\n\t\t\t\t\ttransformSlides( { layout: 'translate(-50%, -50%) scale('+ scale +')' } );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Select all slides, vertical and horizontal\n\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) );\n\n\t\t\tfor( var i = 0, len = slides.length; i < len; i++ ) {\n\t\t\t\tvar slide = slides[ i ];\n\n\t\t\t\t// Don't bother updating invisible slides\n\t\t\t\tif( slide.style.display === 'none' ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( config.center || slide.classList.contains( 'center' ) ) {\n\t\t\t\t\t// Vertical stacks are not centred since their section\n\t\t\t\t\t// children will be\n\t\t\t\t\tif( slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\t\tslide.style.top = 0;\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tslide.style.top = Math.max( ( ( size.height - getAbsoluteHeight( slide ) ) / 2 ) - slidePadding, 0 ) + 'px';\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tslide.style.top = '';\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t\tupdateProgress();\n\t\t\tupdateParallax();\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies layout logic to the contents of all slides in\n\t * the presentation.\n\t */\n\tfunction layoutSlideContents( width, height, padding ) {\n\n\t\t// Handle sizing of elements with the 'stretch' class\n\t\ttoArray( dom.slides.querySelectorAll( 'section > .stretch' ) ).forEach( function( element ) {\n\n\t\t\t// Determine how much vertical space we can use\n\t\t\tvar remainingHeight = getRemainingHeight( element, height );\n\n\t\t\t// Consider the aspect ratio of media elements\n\t\t\tif( /(img|video)/gi.test( element.nodeName ) ) {\n\t\t\t\tvar nw = element.naturalWidth || element.videoWidth,\n\t\t\t\t\tnh = element.naturalHeight || element.videoHeight;\n\n\t\t\t\tvar es = Math.min( width / nw, remainingHeight / nh );\n\n\t\t\t\telement.style.width = ( nw * es ) + 'px';\n\t\t\t\telement.style.height = ( nh * es ) + 'px';\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\telement.style.width = width + 'px';\n\t\t\t\telement.style.height = remainingHeight + 'px';\n\t\t\t}\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Calculates the computed pixel size of our slides. These\n\t * values are based on the width and height configuration\n\t * options.\n\t */\n\tfunction getComputedSlideSize( presentationWidth, presentationHeight ) {\n\n\t\tvar size = {\n\t\t\t// Slide size\n\t\t\twidth: config.width,\n\t\t\theight: config.height,\n\n\t\t\t// Presentation size\n\t\t\tpresentationWidth: presentationWidth || dom.wrapper.offsetWidth,\n\t\t\tpresentationHeight: presentationHeight || dom.wrapper.offsetHeight\n\t\t};\n\n\t\t// Reduce available space by margin\n\t\tsize.presentationWidth -= ( size.presentationWidth * config.margin );\n\t\tsize.presentationHeight -= ( size.presentationHeight * config.margin );\n\n\t\t// Slide width may be a percentage of available width\n\t\tif( typeof size.width === 'string' && /%$/.test( size.width ) ) {\n\t\t\tsize.width = parseInt( size.width, 10 ) / 100 * size.presentationWidth;\n\t\t}\n\n\t\t// Slide height may be a percentage of available height\n\t\tif( typeof size.height === 'string' && /%$/.test( size.height ) ) {\n\t\t\tsize.height = parseInt( size.height, 10 ) / 100 * size.presentationHeight;\n\t\t}\n\n\t\treturn size;\n\n\t}\n\n\t/**\n\t * Stores the vertical index of a stack so that the same\n\t * vertical slide can be selected when navigating to and\n\t * from the stack.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t * @param {int} v Index to memorize\n\t */\n\tfunction setPreviousVerticalIndex( stack, v ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' ) {\n\t\t\tstack.setAttribute( 'data-previous-indexv', v || 0 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the vertical index which was stored using\n\t * #setPreviousVerticalIndex() or 0 if no previous index\n\t * exists.\n\t *\n\t * @param {HTMLElement} stack The vertical stack element\n\t */\n\tfunction getPreviousVerticalIndex( stack ) {\n\n\t\tif( typeof stack === 'object' && typeof stack.setAttribute === 'function' && stack.classList.contains( 'stack' ) ) {\n\t\t\t// Prefer manually defined start-indexv\n\t\t\tvar attributeName = stack.hasAttribute( 'data-start-indexv' ) ? 'data-start-indexv' : 'data-previous-indexv';\n\n\t\t\treturn parseInt( stack.getAttribute( attributeName ) || 0, 10 );\n\t\t}\n\n\t\treturn 0;\n\n\t}\n\n\t/**\n\t * Displays the overview of slides (quick nav) by scaling\n\t * down and arranging all slide elements.\n\t */\n\tfunction activateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview && !isOverview() ) {\n\n\t\t\toverview = true;\n\n\t\t\tdom.wrapper.classList.add( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\n\t\t\tif( features.overviewTransitions ) {\n\t\t\t\tsetTimeout( function() {\n\t\t\t\t\tdom.wrapper.classList.add( 'overview-animated' );\n\t\t\t\t}, 1 );\n\t\t\t}\n\n\t\t\t// Don't auto-slide while in overview mode\n\t\t\tcancelAutoSlide();\n\n\t\t\t// Move the backgrounds element into the slide container to\n\t\t\t// that the same scaling is applied\n\t\t\tdom.slides.appendChild( dom.background );\n\n\t\t\t// Clicking on an overview slide navigates to it\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\tif( !slide.classList.contains( 'stack' ) ) {\n\t\t\t\t\tslide.addEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\tupdateSlidesVisibility();\n\t\t\tlayoutOverview();\n\t\t\tupdateOverview();\n\n\t\t\tlayout();\n\n\t\t\t// Notify observers of the overview showing\n\t\t\tdispatchEvent( 'overviewshown', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Uses CSS transforms to position all slides in a grid for\n\t * display inside of the overview mode.\n\t */\n\tfunction layoutOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\t// Layout slides\n\t\ttoArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).forEach( function( hslide, h ) {\n\t\t\thslide.setAttribute( 'data-index-h', h );\n\t\t\ttransformElement( hslide, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\tif( hslide.classList.contains( 'stack' ) ) {\n\n\t\t\t\ttoArray( hslide.querySelectorAll( 'section' ) ).forEach( function( vslide, v ) {\n\t\t\t\t\tvslide.setAttribute( 'data-index-h', h );\n\t\t\t\t\tvslide.setAttribute( 'data-index-v', v );\n\n\t\t\t\t\ttransformElement( vslide, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t\t} );\n\n\t\t\t}\n\t\t} );\n\n\t\t// Layout slide backgrounds\n\t\ttoArray( dom.background.childNodes ).forEach( function( hbackground, h ) {\n\t\t\ttransformElement( hbackground, 'translate3d(' + ( h * slideWidth ) + 'px, 0, 0)' );\n\n\t\t\ttoArray( hbackground.querySelectorAll( '.slide-background' ) ).forEach( function( vbackground, v ) {\n\t\t\t\ttransformElement( vbackground, 'translate3d(0, ' + ( v * slideHeight ) + 'px, 0)' );\n\t\t\t} );\n\t\t} );\n\n\t}\n\n\t/**\n\t * Moves the overview viewport to the current slides.\n\t * Called each time the current slide changes.\n\t */\n\tfunction updateOverview() {\n\n\t\tvar margin = 70;\n\t\tvar slideWidth = config.width + margin,\n\t\t\tslideHeight = config.height + margin;\n\n\t\t// Reverse in RTL mode\n\t\tif( config.rtl ) {\n\t\t\tslideWidth = -slideWidth;\n\t\t}\n\n\t\ttransformSlides( {\n\t\t\toverview: [\n\t\t\t\t'translateX('+ ( -indexh * slideWidth ) +'px)',\n\t\t\t\t'translateY('+ ( -indexv * slideHeight ) +'px)',\n\t\t\t\t'translateZ('+ ( window.innerWidth < 400 ? -1000 : -2500 ) +'px)'\n\t\t\t].join( ' ' )\n\t\t} );\n\n\t}\n\n\t/**\n\t * Exits the slide overview and enters the currently\n\t * active slide.\n\t */\n\tfunction deactivateOverview() {\n\n\t\t// Only proceed if enabled in config\n\t\tif( config.overview ) {\n\n\t\t\toverview = false;\n\n\t\t\tdom.wrapper.classList.remove( 'overview' );\n\t\t\tdom.wrapper.classList.remove( 'overview-animated' );\n\n\t\t\t// Temporarily add a class so that transitions can do different things\n\t\t\t// depending on whether they are exiting/entering overview, or just\n\t\t\t// moving from slide to slide\n\t\t\tdom.wrapper.classList.add( 'overview-deactivating' );\n\n\t\t\tsetTimeout( function () {\n\t\t\t\tdom.wrapper.classList.remove( 'overview-deactivating' );\n\t\t\t}, 1 );\n\n\t\t\t// Move the background element back out\n\t\t\tdom.wrapper.appendChild( dom.background );\n\n\t\t\t// Clean up changes made to slides\n\t\t\ttoArray( dom.wrapper.querySelectorAll( SLIDES_SELECTOR ) ).forEach( function( slide ) {\n\t\t\t\ttransformElement( slide, '' );\n\n\t\t\t\tslide.removeEventListener( 'click', onOverviewSlideClicked, true );\n\t\t\t} );\n\n\t\t\t// Clean up changes made to backgrounds\n\t\t\ttoArray( dom.background.querySelectorAll( '.slide-background' ) ).forEach( function( background ) {\n\t\t\t\ttransformElement( background, '' );\n\t\t\t} );\n\n\t\t\ttransformSlides( { overview: '' } );\n\n\t\t\tslide( indexh, indexv );\n\n\t\t\tlayout();\n\n\t\t\tcueAutoSlide();\n\n\t\t\t// Notify observers of the overview hiding\n\t\t\tdispatchEvent( 'overviewhidden', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'currentSlide': currentSlide\n\t\t\t} );\n\n\t\t}\n\t}\n\n\t/**\n\t * Toggles the slide overview mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which overrides the\n\t * toggle logic and forcibly sets the desired state. True means\n\t * overview is open, false means it's closed.\n\t */\n\tfunction toggleOverview( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? activateOverview() : deactivateOverview();\n\t\t}\n\t\telse {\n\t\t\tisOverview() ? deactivateOverview() : activateOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the overview is currently active.\n\t *\n\t * @return {Boolean} true if the overview is active,\n\t * false otherwise\n\t */\n\tfunction isOverview() {\n\n\t\treturn overview;\n\n\t}\n\n\t/**\n\t * Checks if the current or specified slide is vertical\n\t * (nested within another slide).\n\t *\n\t * @param {HTMLElement} slide [optional] The slide to check\n\t * orientation of\n\t */\n\tfunction isVerticalSlide( slide ) {\n\n\t\t// Prefer slide argument, otherwise use current slide\n\t\tslide = slide ? slide : currentSlide;\n\n\t\treturn slide && slide.parentNode && !!slide.parentNode.nodeName.match( /section/i );\n\n\t}\n\n\t/**\n\t * Handling the fullscreen functionality via the fullscreen API\n\t *\n\t * @see http://fullscreen.spec.whatwg.org/\n\t * @see https://developer.mozilla.org/en-US/docs/DOM/Using_fullscreen_mode\n\t */\n\tfunction enterFullscreen() {\n\n\t\tvar element = document.body;\n\n\t\t// Check which implementation is available\n\t\tvar requestMethod = element.requestFullScreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullscreen ||\n\t\t\t\t\t\t\telement.webkitRequestFullScreen ||\n\t\t\t\t\t\t\telement.mozRequestFullScreen ||\n\t\t\t\t\t\t\telement.msRequestFullscreen;\n\n\t\tif( requestMethod ) {\n\t\t\trequestMethod.apply( element );\n\t\t}\n\n\t}\n\n\t/**\n\t * Enters the paused mode which fades everything on screen to\n\t * black.\n\t */\n\tfunction pause() {\n\n\t\tif( config.pause ) {\n\t\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\n\t\t\tcancelAutoSlide();\n\t\t\tdom.wrapper.classList.add( 'paused' );\n\n\t\t\tif( wasPaused === false ) {\n\t\t\t\tdispatchEvent( 'paused' );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Exits from the paused mode.\n\t */\n\tfunction resume() {\n\n\t\tvar wasPaused = dom.wrapper.classList.contains( 'paused' );\n\t\tdom.wrapper.classList.remove( 'paused' );\n\n\t\tcueAutoSlide();\n\n\t\tif( wasPaused ) {\n\t\t\tdispatchEvent( 'resumed' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Toggles the paused mode on and off.\n\t */\n\tfunction togglePause( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? pause() : resume();\n\t\t}\n\t\telse {\n\t\t\tisPaused() ? resume() : pause();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if we are currently in the paused mode.\n\t */\n\tfunction isPaused() {\n\n\t\treturn dom.wrapper.classList.contains( 'paused' );\n\n\t}\n\n\t/**\n\t * Toggles the auto slide mode on and off.\n\t *\n\t * @param {Boolean} override Optional flag which sets the desired state.\n\t * True means autoplay starts, false means it stops.\n\t */\n\n\tfunction toggleAutoSlide( override ) {\n\n\t\tif( typeof override === 'boolean' ) {\n\t\t\toverride ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t\telse {\n\t\t\tautoSlidePaused ? resumeAutoSlide() : pauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Checks if the auto slide mode is currently on.\n\t */\n\tfunction isAutoSliding() {\n\n\t\treturn !!( autoSlide && !autoSlidePaused );\n\n\t}\n\n\t/**\n\t * Steps from the current point in the presentation to the\n\t * slide which matches the specified horizontal and vertical\n\t * indices.\n\t *\n\t * @param {int} h Horizontal index of the target slide\n\t * @param {int} v Vertical index of the target slide\n\t * @param {int} f Optional index of a fragment within the\n\t * target slide to activate\n\t * @param {int} o Optional origin for use in multimaster environments\n\t */\n\tfunction slide( h, v, f, o ) {\n\n\t\t// Remember where we were at before\n\t\tpreviousSlide = currentSlide;\n\n\t\t// Query all horizontal slides in the deck\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR );\n\n\t\t// If no vertical index is specified and the upcoming slide is a\n\t\t// stack, resume at its previous vertical index\n\t\tif( v === undefined && !isOverview() ) {\n\t\t\tv = getPreviousVerticalIndex( horizontalSlides[ h ] );\n\t\t}\n\n\t\t// If we were on a vertical stack, remember what vertical index\n\t\t// it was on so we can resume at the same position when returning\n\t\tif( previousSlide && previousSlide.parentNode && previousSlide.parentNode.classList.contains( 'stack' ) ) {\n\t\t\tsetPreviousVerticalIndex( previousSlide.parentNode, indexv );\n\t\t}\n\n\t\t// Remember the state before this slide\n\t\tvar stateBefore = state.concat();\n\n\t\t// Reset the state array\n\t\tstate.length = 0;\n\n\t\tvar indexhBefore = indexh || 0,\n\t\t\tindexvBefore = indexv || 0;\n\n\t\t// Activate and transition to the new slide\n\t\tindexh = updateSlides( HORIZONTAL_SLIDES_SELECTOR, h === undefined ? indexh : h );\n\t\tindexv = updateSlides( VERTICAL_SLIDES_SELECTOR, v === undefined ? indexv : v );\n\n\t\t// Update the visibility of slides now that the indices have changed\n\t\tupdateSlidesVisibility();\n\n\t\tlayout();\n\n\t\t// Apply the new state\n\t\tstateLoop: for( var i = 0, len = state.length; i < len; i++ ) {\n\t\t\t// Check if this state existed on the previous slide. If it\n\t\t\t// did, we will avoid adding it repeatedly\n\t\t\tfor( var j = 0; j < stateBefore.length; j++ ) {\n\t\t\t\tif( stateBefore[j] === state[i] ) {\n\t\t\t\t\tstateBefore.splice( j, 1 );\n\t\t\t\t\tcontinue stateLoop;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tdocument.documentElement.classList.add( state[i] );\n\n\t\t\t// Dispatch custom event matching the state's name\n\t\t\tdispatchEvent( state[i] );\n\t\t}\n\n\t\t// Clean up the remains of the previous state\n\t\twhile( stateBefore.length ) {\n\t\t\tdocument.documentElement.classList.remove( stateBefore.pop() );\n\t\t}\n\n\t\t// Update the overview if it's currently active\n\t\tif( isOverview() ) {\n\t\t\tupdateOverview();\n\t\t}\n\n\t\t// Find the current horizontal slide and any possible vertical slides\n\t\t// within it\n\t\tvar currentHorizontalSlide = horizontalSlides[ indexh ],\n\t\t\tcurrentVerticalSlides = currentHorizontalSlide.querySelectorAll( 'section' );\n\n\t\t// Store references to the previous and current slides\n\t\tcurrentSlide = currentVerticalSlides[ indexv ] || currentHorizontalSlide;\n\n\t\t// Show fragment, if specified\n\t\tif( typeof f !== 'undefined' ) {\n\t\t\tnavigateFragment( f );\n\t\t}\n\n\t\t// Dispatch an event if the slide changed\n\t\tvar slideChanged = ( indexh !== indexhBefore || indexv !== indexvBefore );\n\t\tif( slideChanged ) {\n\t\t\tdispatchEvent( 'slidechanged', {\n\t\t\t\t'indexh': indexh,\n\t\t\t\t'indexv': indexv,\n\t\t\t\t'previousSlide': previousSlide,\n\t\t\t\t'currentSlide': currentSlide,\n\t\t\t\t'origin': o\n\t\t\t} );\n\t\t}\n\t\telse {\n\t\t\t// Ensure that the previous slide is never the same as the current\n\t\t\tpreviousSlide = null;\n\t\t}\n\n\t\t// Solves an edge case where the previous slide maintains the\n\t\t// 'present' class when navigating between adjacent vertical\n\t\t// stacks\n\t\tif( previousSlide ) {\n\t\t\tpreviousSlide.classList.remove( 'present' );\n\t\t\tpreviousSlide.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t// Reset all slides upon navigate to home\n\t\t\t// Issue: #285\n\t\t\tif ( dom.wrapper.querySelector( HOME_SLIDE_SELECTOR ).classList.contains( 'present' ) ) {\n\t\t\t\t// Launch async task\n\t\t\t\tsetTimeout( function () {\n\t\t\t\t\tvar slides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.stack') ), i;\n\t\t\t\t\tfor( i in slides ) {\n\t\t\t\t\t\tif( slides[i] ) {\n\t\t\t\t\t\t\t// Reset stack\n\t\t\t\t\t\t\tsetPreviousVerticalIndex( slides[i], 0 );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}, 0 );\n\t\t\t}\n\t\t}\n\n\t\t// Handle embedded content\n\t\tif( slideChanged || !previousSlide ) {\n\t\t\tstopEmbeddedContent( previousSlide );\n\t\t\tstartEmbeddedContent( currentSlide );\n\t\t}\n\n\t\t// Announce the current slide contents, for screen readers\n\t\tdom.statusDiv.textContent = currentSlide.textContent;\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground();\n\t\tupdateParallax();\n\t\tupdateSlideNumber();\n\t\tupdateNotes();\n\n\t\t// Update the URL hash\n\t\twriteURL();\n\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Syncs the presentation with the current DOM. Useful\n\t * when new slides or control elements are added or when\n\t * the configuration has changed.\n\t */\n\tfunction sync() {\n\n\t\t// Subscribe to input\n\t\tremoveEventListeners();\n\t\taddEventListeners();\n\n\t\t// Force a layout to make sure the current config is accounted for\n\t\tlayout();\n\n\t\t// Reflect the current autoSlide value\n\t\tautoSlide = config.autoSlide;\n\n\t\t// Start auto-sliding if it's enabled\n\t\tcueAutoSlide();\n\n\t\t// Re-create the slide backgrounds\n\t\tcreateBackgrounds();\n\n\t\t// Write the current hash to the URL\n\t\twriteURL();\n\n\t\tsortAllFragments();\n\n\t\tupdateControls();\n\t\tupdateProgress();\n\t\tupdateBackground( true );\n\t\tupdateSlideNumber();\n\t\tupdateSlidesVisibility();\n\t\tupdateNotes();\n\n\t\tformatEmbeddedContent();\n\t\tstartEmbeddedContent( currentSlide );\n\n\t\tif( isOverview() ) {\n\t\t\tlayoutOverview();\n\t\t}\n\n\t}\n\n\t/**\n\t * Resets all vertical slides so that only the first\n\t * is visible.\n\t */\n\tfunction resetVerticalSlides() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tif( y > 0 ) {\n\t\t\t\t\tverticalSlide.classList.remove( 'present' );\n\t\t\t\t\tverticalSlide.classList.remove( 'past' );\n\t\t\t\t\tverticalSlide.classList.add( 'future' );\n\t\t\t\t\tverticalSlide.setAttribute( 'aria-hidden', 'true' );\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Sorts and formats all of fragments in the\n\t * presentation.\n\t */\n\tfunction sortAllFragments() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\t\thorizontalSlides.forEach( function( horizontalSlide ) {\n\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\t\t\tverticalSlides.forEach( function( verticalSlide, y ) {\n\n\t\t\t\tsortFragments( verticalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t\t} );\n\n\t\t\tif( verticalSlides.length === 0 ) sortFragments( horizontalSlide.querySelectorAll( '.fragment' ) );\n\n\t\t} );\n\n\t}\n\n\t/**\n\t * Updates one dimension of slides by showing the slide\n\t * with the specified index.\n\t *\n\t * @param {String} selector A CSS selector that will fetch\n\t * the group of slides we are working with\n\t * @param {Number} index The index of the slide that should be\n\t * shown\n\t *\n\t * @return {Number} The index of the slide that is now shown,\n\t * might differ from the passed in index if it was out of\n\t * bounds.\n\t */\n\tfunction updateSlides( selector, index ) {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar slides = toArray( dom.wrapper.querySelectorAll( selector ) ),\n\t\t\tslidesLength = slides.length;\n\n\t\tvar printMode = isPrintingPDF();\n\n\t\tif( slidesLength ) {\n\n\t\t\t// Should the index loop?\n\t\t\tif( config.loop ) {\n\t\t\t\tindex %= slidesLength;\n\n\t\t\t\tif( index < 0 ) {\n\t\t\t\t\tindex = slidesLength + index;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Enforce max and minimum index bounds\n\t\t\tindex = Math.max( Math.min( index, slidesLength - 1 ), 0 );\n\n\t\t\tfor( var i = 0; i < slidesLength; i++ ) {\n\t\t\t\tvar element = slides[i];\n\n\t\t\t\tvar reverse = config.rtl && !isVerticalSlide( element );\n\n\t\t\t\telement.classList.remove( 'past' );\n\t\t\t\telement.classList.remove( 'present' );\n\t\t\t\telement.classList.remove( 'future' );\n\n\t\t\t\t// http://www.w3.org/html/wg/drafts/html/master/editing.html#the-hidden-attribute\n\t\t\t\telement.setAttribute( 'hidden', '' );\n\t\t\t\telement.setAttribute( 'aria-hidden', 'true' );\n\n\t\t\t\t// If this element contains vertical slides\n\t\t\t\tif( element.querySelector( 'section' ) ) {\n\t\t\t\t\telement.classList.add( 'stack' );\n\t\t\t\t}\n\n\t\t\t\t// If we're printing static slides, all slides are \"present\"\n\t\t\t\tif( printMode ) {\n\t\t\t\t\telement.classList.add( 'present' );\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\n\t\t\t\tif( i < index ) {\n\t\t\t\t\t// Any element previous to index is given the 'past' class\n\t\t\t\t\telement.classList.add( reverse ? 'future' : 'past' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar pastFragments = toArray( element.querySelectorAll( '.fragment' ) );\n\n\t\t\t\t\t\t// Show all fragments on prior slides\n\t\t\t\t\t\twhile( pastFragments.length ) {\n\t\t\t\t\t\t\tvar pastFragment = pastFragments.pop();\n\t\t\t\t\t\t\tpastFragment.classList.add( 'visible' );\n\t\t\t\t\t\t\tpastFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse if( i > index ) {\n\t\t\t\t\t// Any element subsequent to index is given the 'future' class\n\t\t\t\t\telement.classList.add( reverse ? 'past' : 'future' );\n\n\t\t\t\t\tif( config.fragments ) {\n\t\t\t\t\t\tvar futureFragments = toArray( element.querySelectorAll( '.fragment.visible' ) );\n\n\t\t\t\t\t\t// No fragments in future slides should be visible ahead of time\n\t\t\t\t\t\twhile( futureFragments.length ) {\n\t\t\t\t\t\t\tvar futureFragment = futureFragments.pop();\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'visible' );\n\t\t\t\t\t\t\tfutureFragment.classList.remove( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// Mark the current slide as present\n\t\t\tslides[index].classList.add( 'present' );\n\t\t\tslides[index].removeAttribute( 'hidden' );\n\t\t\tslides[index].removeAttribute( 'aria-hidden' );\n\n\t\t\t// If this slide has a state associated with it, add it\n\t\t\t// onto the current state of the deck\n\t\t\tvar slideState = slides[index].getAttribute( 'data-state' );\n\t\t\tif( slideState ) {\n\t\t\t\tstate = state.concat( slideState.split( ' ' ) );\n\t\t\t}\n\n\t\t}\n\t\telse {\n\t\t\t// Since there are no slides we can't be anywhere beyond the\n\t\t\t// zeroth index\n\t\t\tindex = 0;\n\t\t}\n\n\t\treturn index;\n\n\t}\n\n\t/**\n\t * Optimization method; hide all slides that are far away\n\t * from the present slide.\n\t */\n\tfunction updateSlidesVisibility() {\n\n\t\t// Select all slides and convert the NodeList result to\n\t\t// an array\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ),\n\t\t\thorizontalSlidesLength = horizontalSlides.length,\n\t\t\tdistanceX,\n\t\t\tdistanceY;\n\n\t\tif( horizontalSlidesLength && typeof indexh !== 'undefined' ) {\n\n\t\t\t// The number of steps away from the present slide that will\n\t\t\t// be visible\n\t\t\tvar viewDistance = isOverview() ? 10 : config.viewDistance;\n\n\t\t\t// Limit view distance on weaker devices\n\t\t\tif( isMobileDevice ) {\n\t\t\t\tviewDistance = isOverview() ? 6 : 2;\n\t\t\t}\n\n\t\t\t// All slides need to be visible when exporting to PDF\n\t\t\tif( isPrintingPDF() ) {\n\t\t\t\tviewDistance = Number.MAX_VALUE;\n\t\t\t}\n\n\t\t\tfor( var x = 0; x < horizontalSlidesLength; x++ ) {\n\t\t\t\tvar horizontalSlide = horizontalSlides[x];\n\n\t\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) ),\n\t\t\t\t\tverticalSlidesLength = verticalSlides.length;\n\n\t\t\t\t// Determine how far away this slide is from the present\n\t\t\t\tdistanceX = Math.abs( ( indexh || 0 ) - x ) || 0;\n\n\t\t\t\t// If the presentation is looped, distance should measure\n\t\t\t\t// 1 between the first and last slides\n\t\t\t\tif( config.loop ) {\n\t\t\t\t\tdistanceX = Math.abs( ( ( indexh || 0 ) - x ) % ( horizontalSlidesLength - viewDistance ) ) || 0;\n\t\t\t\t}\n\n\t\t\t\t// Show the horizontal slide if it's within the view distance\n\t\t\t\tif( distanceX < viewDistance ) {\n\t\t\t\t\tshowSlide( horizontalSlide );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\thideSlide( horizontalSlide );\n\t\t\t\t}\n\n\t\t\t\tif( verticalSlidesLength ) {\n\n\t\t\t\t\tvar oy = getPreviousVerticalIndex( horizontalSlide );\n\n\t\t\t\t\tfor( var y = 0; y < verticalSlidesLength; y++ ) {\n\t\t\t\t\t\tvar verticalSlide = verticalSlides[y];\n\n\t\t\t\t\t\tdistanceY = x === ( indexh || 0 ) ? Math.abs( ( indexv || 0 ) - y ) : Math.abs( y - oy );\n\n\t\t\t\t\t\tif( distanceX + distanceY < viewDistance ) {\n\t\t\t\t\t\t\tshowSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\thideSlide( verticalSlide );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Pick up notes from the current slide and display tham\n\t * to the viewer.\n\t *\n\t * @see `showNotes` config value\n\t */\n\tfunction updateNotes() {\n\n\t\tif( config.showNotes && dom.speakerNotes && currentSlide && !isPrintingPDF() ) {\n\n\t\t\tdom.speakerNotes.innerHTML = getSlideNotes() || '';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the progress bar to reflect the current slide.\n\t */\n\tfunction updateProgress() {\n\n\t\t// Update progress if enabled\n\t\tif( config.progress && dom.progressbar ) {\n\n\t\t\tdom.progressbar.style.width = getProgress() * dom.wrapper.offsetWidth + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the slide number div to reflect the current slide.\n\t *\n\t * The following slide number formats are available:\n\t *  \"h.v\": \thorizontal . vertical slide number (default)\n\t *  \"h/v\": \thorizontal / vertical slide number\n\t *    \"c\": \tflattened slide number\n\t *  \"c/t\": \tflattened slide number / total slides\n\t */\n\tfunction updateSlideNumber() {\n\n\t\t// Update slide number if enabled\n\t\tif( config.slideNumber && dom.slideNumber ) {\n\n\t\t\tvar value = [];\n\t\t\tvar format = 'h.v';\n\n\t\t\t// Check if a custom number format is available\n\t\t\tif( typeof config.slideNumber === 'string' ) {\n\t\t\t\tformat = config.slideNumber;\n\t\t\t}\n\n\t\t\tswitch( format ) {\n\t\t\t\tcase 'c':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'c/t':\n\t\t\t\t\tvalue.push( getSlidePastCount() + 1, '/', getTotalSlides() );\n\t\t\t\t\tbreak;\n\t\t\t\tcase 'h/v':\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '/', indexv + 1 );\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tvalue.push( indexh + 1 );\n\t\t\t\t\tif( isVerticalSlide() ) value.push( '.', indexv + 1 );\n\t\t\t}\n\n\t\t\tdom.slideNumber.innerHTML = formatSlideNumber( value[0], value[1], value[2] );\n\t\t}\n\n\t}\n\n\t/**\n\t * Applies HTML formatting to a slide number before it's\n\t * written to the DOM.\n\t */\n\tfunction formatSlideNumber( a, delimiter, b ) {\n\n\t\tif( typeof b === 'number' && !isNaN( b ) ) {\n\t\t\treturn  '<span class=\"slide-number-a\">'+ a +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-delimiter\">'+ delimiter +'</span>' +\n\t\t\t\t\t'<span class=\"slide-number-b\">'+ b +'</span>';\n\t\t}\n\t\telse {\n\t\t\treturn '<span class=\"slide-number-a\">'+ a +'</span>';\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the state of all control/navigation arrows.\n\t */\n\tfunction updateControls() {\n\n\t\tvar routes = availableRoutes();\n\t\tvar fragments = availableFragments();\n\n\t\t// Remove the 'enabled' class from all directions\n\t\tdom.controlsLeft.concat( dom.controlsRight )\n\t\t\t\t\t\t.concat( dom.controlsUp )\n\t\t\t\t\t\t.concat( dom.controlsDown )\n\t\t\t\t\t\t.concat( dom.controlsPrev )\n\t\t\t\t\t\t.concat( dom.controlsNext ).forEach( function( node ) {\n\t\t\tnode.classList.remove( 'enabled' );\n\t\t\tnode.classList.remove( 'fragmented' );\n\t\t} );\n\n\t\t// Add the 'enabled' class to the available routes\n\t\tif( routes.left ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.right ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.up ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'enabled' );\t} );\n\t\tif( routes.down ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Prev/next buttons\n\t\tif( routes.left || routes.up ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\t\tif( routes.right || routes.down ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'enabled' ); } );\n\n\t\t// Highlight fragment directions\n\t\tif( currentSlide ) {\n\n\t\t\t// Always apply fragment decorator to prev/next buttons\n\t\t\tif( fragments.prev ) dom.controlsPrev.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\tif( fragments.next ) dom.controlsNext.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\n\t\t\t// Apply fragment decorators to directional buttons based on\n\t\t\t// what slide axis they are in\n\t\t\tif( isVerticalSlide( currentSlide ) ) {\n\t\t\t\tif( fragments.prev ) dom.controlsUp.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsDown.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif( fragments.prev ) dom.controlsLeft.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t\tif( fragments.next ) dom.controlsRight.forEach( function( el ) { el.classList.add( 'fragmented', 'enabled' ); } );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the background elements to reflect the current\n\t * slide.\n\t *\n\t * @param {Boolean} includeAll If true, the backgrounds of\n\t * all vertical slides (not just the present) will be updated.\n\t */\n\tfunction updateBackground( includeAll ) {\n\n\t\tvar currentBackground = null;\n\n\t\t// Reverse past/future classes when in RTL mode\n\t\tvar horizontalPast = config.rtl ? 'future' : 'past',\n\t\t\thorizontalFuture = config.rtl ? 'past' : 'future';\n\n\t\t// Update the classes of all backgrounds to match the\n\t\t// states of their slides (past/present/future)\n\t\ttoArray( dom.background.childNodes ).forEach( function( backgroundh, h ) {\n\n\t\t\tbackgroundh.classList.remove( 'past' );\n\t\t\tbackgroundh.classList.remove( 'present' );\n\t\t\tbackgroundh.classList.remove( 'future' );\n\n\t\t\tif( h < indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalPast );\n\t\t\t}\n\t\t\telse if ( h > indexh ) {\n\t\t\t\tbackgroundh.classList.add( horizontalFuture );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundh.classList.add( 'present' );\n\n\t\t\t\t// Store a reference to the current background element\n\t\t\t\tcurrentBackground = backgroundh;\n\t\t\t}\n\n\t\t\tif( includeAll || h === indexh ) {\n\t\t\t\ttoArray( backgroundh.querySelectorAll( '.slide-background' ) ).forEach( function( backgroundv, v ) {\n\n\t\t\t\t\tbackgroundv.classList.remove( 'past' );\n\t\t\t\t\tbackgroundv.classList.remove( 'present' );\n\t\t\t\t\tbackgroundv.classList.remove( 'future' );\n\n\t\t\t\t\tif( v < indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'past' );\n\t\t\t\t\t}\n\t\t\t\t\telse if ( v > indexv ) {\n\t\t\t\t\t\tbackgroundv.classList.add( 'future' );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tbackgroundv.classList.add( 'present' );\n\n\t\t\t\t\t\t// Only if this is the present horizontal and vertical slide\n\t\t\t\t\t\tif( h === indexh ) currentBackground = backgroundv;\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\t\t\t}\n\n\t\t} );\n\n\t\t// Stop any currently playing video background\n\t\tif( previousBackground ) {\n\n\t\t\tvar previousVideo = previousBackground.querySelector( 'video' );\n\t\t\tif( previousVideo ) previousVideo.pause();\n\n\t\t}\n\n\t\tif( currentBackground ) {\n\n\t\t\t// Start video playback\n\t\t\tvar currentVideo = currentBackground.querySelector( 'video' );\n\t\t\tif( currentVideo ) {\n\t\t\t\tif( currentVideo.currentTime > 0 ) currentVideo.currentTime = 0;\n\t\t\t\tcurrentVideo.play();\n\t\t\t}\n\n\t\t\tvar backgroundImageURL = currentBackground.style.backgroundImage || '';\n\n\t\t\t// Restart GIFs (doesn't work in Firefox)\n\t\t\tif( /\\.gif/i.test( backgroundImageURL ) ) {\n\t\t\t\tcurrentBackground.style.backgroundImage = '';\n\t\t\t\twindow.getComputedStyle( currentBackground ).opacity;\n\t\t\t\tcurrentBackground.style.backgroundImage = backgroundImageURL;\n\t\t\t}\n\n\t\t\t// Don't transition between identical backgrounds. This\n\t\t\t// prevents unwanted flicker.\n\t\t\tvar previousBackgroundHash = previousBackground ? previousBackground.getAttribute( 'data-background-hash' ) : null;\n\t\t\tvar currentBackgroundHash = currentBackground.getAttribute( 'data-background-hash' );\n\t\t\tif( currentBackgroundHash && currentBackgroundHash === previousBackgroundHash && currentBackground !== previousBackground ) {\n\t\t\t\tdom.background.classList.add( 'no-transition' );\n\t\t\t}\n\n\t\t\tpreviousBackground = currentBackground;\n\n\t\t}\n\n\t\t// If there's a background brightness flag for this slide,\n\t\t// bubble it to the .reveal container\n\t\tif( currentSlide ) {\n\t\t\t[ 'has-light-background', 'has-dark-background' ].forEach( function( classToBubble ) {\n\t\t\t\tif( currentSlide.classList.contains( classToBubble ) ) {\n\t\t\t\t\tdom.wrapper.classList.add( classToBubble );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tdom.wrapper.classList.remove( classToBubble );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t// Allow the first background to apply without transition\n\t\tsetTimeout( function() {\n\t\t\tdom.background.classList.remove( 'no-transition' );\n\t\t}, 1 );\n\n\t}\n\n\t/**\n\t * Updates the position of the parallax background based\n\t * on the current slide index.\n\t */\n\tfunction updateParallax() {\n\n\t\tif( config.parallaxBackgroundImage ) {\n\n\t\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\t\tvar backgroundSize = dom.background.style.backgroundSize.split( ' ' ),\n\t\t\t\tbackgroundWidth, backgroundHeight;\n\n\t\t\tif( backgroundSize.length === 1 ) {\n\t\t\t\tbackgroundWidth = backgroundHeight = parseInt( backgroundSize[0], 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tbackgroundWidth = parseInt( backgroundSize[0], 10 );\n\t\t\t\tbackgroundHeight = parseInt( backgroundSize[1], 10 );\n\t\t\t}\n\n\t\t\tvar slideWidth = dom.background.offsetWidth,\n\t\t\t\thorizontalSlideCount = horizontalSlides.length,\n\t\t\t\thorizontalOffsetMultiplier,\n\t\t\t\thorizontalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundHorizontal === 'number' ) {\n\t\t\t\thorizontalOffsetMultiplier = config.parallaxBackgroundHorizontal;\n\t\t\t}\n\t\t\telse {\n\t\t\t\thorizontalOffsetMultiplier = ( backgroundWidth - slideWidth ) / ( horizontalSlideCount-1 );\n\t\t\t}\n\n\t\t\thorizontalOffset = horizontalOffsetMultiplier * indexh * -1;\n\n\t\t\tvar slideHeight = dom.background.offsetHeight,\n\t\t\t\tverticalSlideCount = verticalSlides.length,\n\t\t\t\tverticalOffsetMultiplier,\n\t\t\t\tverticalOffset;\n\n\t\t\tif( typeof config.parallaxBackgroundVertical === 'number' ) {\n\t\t\t\tverticalOffsetMultiplier = config.parallaxBackgroundVertical;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tverticalOffsetMultiplier = ( backgroundHeight - slideHeight ) / ( verticalSlideCount-1 );\n\t\t\t}\n\n\t\t\tverticalOffset = verticalSlideCount > 0 ?  verticalOffsetMultiplier * indexv * 1 : 0;\n\n\t\t\tdom.background.style.backgroundPosition = horizontalOffset + 'px ' + -verticalOffset + 'px';\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is within the configured view\n\t * distance. Shows the slide element and loads any content\n\t * that is set to load lazily (data-src).\n\t */\n\tfunction showSlide( slide ) {\n\n\t\t// Show the slide element\n\t\tslide.style.display = 'block';\n\n\t\t// Media elements with data-src attributes\n\t\ttoArray( slide.querySelectorAll( 'img[data-src], video[data-src], audio[data-src]' ) ).forEach( function( element ) {\n\t\t\telement.setAttribute( 'src', element.getAttribute( 'data-src' ) );\n\t\t\telement.removeAttribute( 'data-src' );\n\t\t} );\n\n\t\t// Media elements with <source> children\n\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( media ) {\n\t\t\tvar sources = 0;\n\n\t\t\ttoArray( media.querySelectorAll( 'source[data-src]' ) ).forEach( function( source ) {\n\t\t\t\tsource.setAttribute( 'src', source.getAttribute( 'data-src' ) );\n\t\t\t\tsource.removeAttribute( 'data-src' );\n\t\t\t\tsources += 1;\n\t\t\t} );\n\n\t\t\t// If we rewrote sources for this video/audio element, we need\n\t\t\t// to manually tell it to load from its new origin\n\t\t\tif( sources > 0 ) {\n\t\t\t\tmedia.load();\n\t\t\t}\n\t\t} );\n\n\n\t\t// Show the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'block';\n\n\t\t\t// If the background contains media, load it\n\t\t\tif( background.hasAttribute( 'data-loaded' ) === false ) {\n\t\t\t\tbackground.setAttribute( 'data-loaded', 'true' );\n\n\t\t\t\tvar backgroundImage = slide.getAttribute( 'data-background-image' ),\n\t\t\t\t\tbackgroundVideo = slide.getAttribute( 'data-background-video' ),\n\t\t\t\t\tbackgroundVideoLoop = slide.hasAttribute( 'data-background-video-loop' ),\n\t\t\t\t\tbackgroundIframe = slide.getAttribute( 'data-background-iframe' );\n\n\t\t\t\t// Images\n\t\t\t\tif( backgroundImage ) {\n\t\t\t\t\tbackground.style.backgroundImage = 'url('+ backgroundImage +')';\n\t\t\t\t}\n\t\t\t\t// Videos\n\t\t\t\telse if ( backgroundVideo && !isSpeakerNotes() ) {\n\t\t\t\t\tvar video = document.createElement( 'video' );\n\n\t\t\t\t\tif( backgroundVideoLoop ) {\n\t\t\t\t\t\tvideo.setAttribute( 'loop', '' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Support comma separated lists of video sources\n\t\t\t\t\tbackgroundVideo.split( ',' ).forEach( function( source ) {\n\t\t\t\t\t\tvideo.innerHTML += '<source src=\"'+ source +'\">';\n\t\t\t\t\t} );\n\n\t\t\t\t\tbackground.appendChild( video );\n\t\t\t\t}\n\t\t\t\t// Iframes\n\t\t\t\telse if( backgroundIframe ) {\n\t\t\t\t\tvar iframe = document.createElement( 'iframe' );\n\t\t\t\t\t\tiframe.setAttribute( 'src', backgroundIframe );\n\t\t\t\t\t\tiframe.style.width  = '100%';\n\t\t\t\t\t\tiframe.style.height = '100%';\n\t\t\t\t\t\tiframe.style.maxHeight = '100%';\n\t\t\t\t\t\tiframe.style.maxWidth = '100%';\n\n\t\t\t\t\tbackground.appendChild( iframe );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Called when the given slide is moved outside of the\n\t * configured view distance.\n\t */\n\tfunction hideSlide( slide ) {\n\n\t\t// Hide the slide element\n\t\tslide.style.display = 'none';\n\n\t\t// Hide the corresponding background element\n\t\tvar indices = getIndices( slide );\n\t\tvar background = getSlideBackground( indices.h, indices.v );\n\t\tif( background ) {\n\t\t\tbackground.style.display = 'none';\n\t\t}\n\n\t}\n\n\t/**\n\t * Determine what available routes there are for navigation.\n\t *\n\t * @return {Object} containing four booleans: left/right/up/down\n\t */\n\tfunction availableRoutes() {\n\n\t\tvar horizontalSlides = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ),\n\t\t\tverticalSlides = dom.wrapper.querySelectorAll( VERTICAL_SLIDES_SELECTOR );\n\n\t\tvar routes = {\n\t\t\tleft: indexh > 0 || config.loop,\n\t\t\tright: indexh < horizontalSlides.length - 1 || config.loop,\n\t\t\tup: indexv > 0,\n\t\t\tdown: indexv < verticalSlides.length - 1\n\t\t};\n\n\t\t// reverse horizontal controls for rtl\n\t\tif( config.rtl ) {\n\t\t\tvar left = routes.left;\n\t\t\troutes.left = routes.right;\n\t\t\troutes.right = left;\n\t\t}\n\n\t\treturn routes;\n\n\t}\n\n\t/**\n\t * Returns an object describing the available fragment\n\t * directions.\n\t *\n\t * @return {Object} two boolean properties: prev/next\n\t */\n\tfunction availableFragments() {\n\n\t\tif( currentSlide && config.fragments ) {\n\t\t\tvar fragments = currentSlide.querySelectorAll( '.fragment' );\n\t\t\tvar hiddenFragments = currentSlide.querySelectorAll( '.fragment:not(.visible)' );\n\n\t\t\treturn {\n\t\t\t\tprev: fragments.length - hiddenFragments.length > 0,\n\t\t\t\tnext: !!hiddenFragments.length\n\t\t\t};\n\t\t}\n\t\telse {\n\t\t\treturn { prev: false, next: false };\n\t\t}\n\n\t}\n\n\t/**\n\t * Enforces origin-specific format rules for embedded media.\n\t */\n\tfunction formatEmbeddedContent() {\n\n\t\tvar _appendParamToIframeSource = function( sourceAttribute, sourceURL, param ) {\n\t\t\ttoArray( dom.slides.querySelectorAll( 'iframe['+ sourceAttribute +'*=\"'+ sourceURL +'\"]' ) ).forEach( function( el ) {\n\t\t\t\tvar src = el.getAttribute( sourceAttribute );\n\t\t\t\tif( src && src.indexOf( param ) === -1 ) {\n\t\t\t\t\tel.setAttribute( sourceAttribute, src + ( !/\\?/.test( src ) ? '?' : '&' ) + param );\n\t\t\t\t}\n\t\t\t});\n\t\t};\n\n\t\t// YouTube frames must include \"?enablejsapi=1\"\n\t\t_appendParamToIframeSource( 'src', 'youtube.com/embed/', 'enablejsapi=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'youtube.com/embed/', 'enablejsapi=1' );\n\n\t\t// Vimeo frames must include \"?api=1\"\n\t\t_appendParamToIframeSource( 'src', 'player.vimeo.com/', 'api=1' );\n\t\t_appendParamToIframeSource( 'data-src', 'player.vimeo.com/', 'api=1' );\n\n\t}\n\n\t/**\n\t * Start playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction startEmbeddedContent( slide ) {\n\n\t\tif( slide && !isSpeakerNotes() ) {\n\t\t\t// Restart GIFs\n\t\t\ttoArray( slide.querySelectorAll( 'img[src$=\".gif\"]' ) ).forEach( function( el ) {\n\t\t\t\t// Setting the same unchanged source like this was confirmed\n\t\t\t\t// to work in Chrome, FF & Safari\n\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'src' ) );\n\t\t\t} );\n\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) && typeof el.play === 'function' ) {\n\t\t\t\t\tel.play();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Normal iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src]' ) ).forEach( function( el ) {\n\t\t\t\tstartEmbeddedIframe( { target: el } );\n\t\t\t} );\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\tif( el.getAttribute( 'src' ) !== el.getAttribute( 'data-src' ) ) {\n\t\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe ); // remove first to avoid dupes\n\t\t\t\t\tel.addEventListener( 'load', startEmbeddedIframe );\n\t\t\t\t\tel.setAttribute( 'src', el.getAttribute( 'data-src' ) );\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * \"Starts\" the content of an embedded iframe using the\n\t * postmessage API.\n\t */\n\tfunction startEmbeddedIframe( event ) {\n\n\t\tvar iframe = event.target;\n\n\t\t// YouTube postMessage API\n\t\tif( /youtube\\.com\\/embed\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"playVideo\",\"args\":\"\"}', '*' );\n\t\t}\n\t\t// Vimeo postMessage API\n\t\telse if( /player\\.vimeo\\.com\\//.test( iframe.getAttribute( 'src' ) ) && iframe.hasAttribute( 'data-autoplay' ) ) {\n\t\t\tiframe.contentWindow.postMessage( '{\"method\":\"play\"}', '*' );\n\t\t}\n\t\t// Generic postMessage API\n\t\telse {\n\t\t\tiframe.contentWindow.postMessage( 'slide:start', '*' );\n\t\t}\n\n\t}\n\n\t/**\n\t * Stop playback of any embedded content inside of\n\t * the targeted slide.\n\t */\n\tfunction stopEmbeddedContent( slide ) {\n\n\t\tif( slide && slide.parentNode ) {\n\t\t\t// HTML5 media elements\n\t\t\ttoArray( slide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.pause === 'function' ) {\n\t\t\t\t\tel.pause();\n\t\t\t\t}\n\t\t\t} );\n\n\t\t\t// Generic postMessage API for non-lazy loaded iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe' ) ).forEach( function( el ) {\n\t\t\t\tel.contentWindow.postMessage( 'slide:stop', '*' );\n\t\t\t\tel.removeEventListener( 'load', startEmbeddedIframe );\n\t\t\t});\n\n\t\t\t// YouTube postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"youtube.com/embed/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"event\":\"command\",\"func\":\"pauseVideo\",\"args\":\"\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Vimeo postMessage API\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[src*=\"player.vimeo.com/\"]' ) ).forEach( function( el ) {\n\t\t\t\tif( !el.hasAttribute( 'data-ignore' ) && typeof el.contentWindow.postMessage === 'function' ) {\n\t\t\t\t\tel.contentWindow.postMessage( '{\"method\":\"pause\"}', '*' );\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// Lazy loading iframes\n\t\t\ttoArray( slide.querySelectorAll( 'iframe[data-src]' ) ).forEach( function( el ) {\n\t\t\t\t// Only removing the src doesn't actually unload the frame\n\t\t\t\t// in all browsers (Firefox) so we set it to blank first\n\t\t\t\tel.setAttribute( 'src', 'about:blank' );\n\t\t\t\tel.removeAttribute( 'src' );\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Returns the number of past slides. This can be used as a global\n\t * flattened index for slides.\n\t */\n\tfunction getSlidePastCount() {\n\n\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t// The number of past slides\n\t\tvar pastCount = 0;\n\n\t\t// Step through all slides and count the past ones\n\t\tmainLoop: for( var i = 0; i < horizontalSlides.length; i++ ) {\n\n\t\t\tvar horizontalSlide = horizontalSlides[i];\n\t\t\tvar verticalSlides = toArray( horizontalSlide.querySelectorAll( 'section' ) );\n\n\t\t\tfor( var j = 0; j < verticalSlides.length; j++ ) {\n\n\t\t\t\t// Stop as soon as we arrive at the present\n\t\t\t\tif( verticalSlides[j].classList.contains( 'present' ) ) {\n\t\t\t\t\tbreak mainLoop;\n\t\t\t\t}\n\n\t\t\t\tpastCount++;\n\n\t\t\t}\n\n\t\t\t// Stop as soon as we arrive at the present\n\t\t\tif( horizontalSlide.classList.contains( 'present' ) ) {\n\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\t// Don't count the wrapping section for vertical slides\n\t\t\tif( horizontalSlide.classList.contains( 'stack' ) === false ) {\n\t\t\t\tpastCount++;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount;\n\n\t}\n\n\t/**\n\t * Returns a value ranging from 0-1 that represents\n\t * how far into the presentation we have navigated.\n\t */\n\tfunction getProgress() {\n\n\t\t// The number of past and total slides\n\t\tvar totalCount = getTotalSlides();\n\t\tvar pastCount = getSlidePastCount();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar allFragments = currentSlide.querySelectorAll( '.fragment' );\n\n\t\t\t// If there are fragments in the current slide those should be\n\t\t\t// accounted for in the progress.\n\t\t\tif( allFragments.length > 0 ) {\n\t\t\t\tvar visibleFragments = currentSlide.querySelectorAll( '.fragment.visible' );\n\n\t\t\t\t// This value represents how big a portion of the slide progress\n\t\t\t\t// that is made up by its fragments (0-1)\n\t\t\t\tvar fragmentWeight = 0.9;\n\n\t\t\t\t// Add fragment progress to the past slide count\n\t\t\t\tpastCount += ( visibleFragments.length / allFragments.length ) * fragmentWeight;\n\t\t\t}\n\n\t\t}\n\n\t\treturn pastCount / ( totalCount - 1 );\n\n\t}\n\n\t/**\n\t * Checks if this presentation is running inside of the\n\t * speaker notes window.\n\t */\n\tfunction isSpeakerNotes() {\n\n\t\treturn !!window.location.search.match( /receiver/gi );\n\n\t}\n\n\t/**\n\t * Reads the current URL (hash) and navigates accordingly.\n\t */\n\tfunction readURL() {\n\n\t\tvar hash = window.location.hash;\n\n\t\t// Attempt to parse the hash as either an index or name\n\t\tvar bits = hash.slice( 2 ).split( '/' ),\n\t\t\tname = hash.replace( /#|\\//gi, '' );\n\n\t\t// If the first bit is invalid and there is a name we can\n\t\t// assume that this is a named link\n\t\tif( isNaN( parseInt( bits[0], 10 ) ) && name.length ) {\n\t\t\tvar element;\n\n\t\t\t// Ensure the named link is a valid HTML ID attribute\n\t\t\tif( /^[a-zA-Z][\\w:.-]*$/.test( name ) ) {\n\t\t\t\t// Find the slide with the specified ID\n\t\t\t\telement = document.getElementById( name );\n\t\t\t}\n\n\t\t\tif( element ) {\n\t\t\t\t// Find the position of the named slide and navigate to it\n\t\t\t\tvar indices = Reveal.getIndices( element );\n\t\t\t\tslide( indices.h, indices.v );\n\t\t\t}\n\t\t\t// If the slide doesn't exist, navigate to the current slide\n\t\t\telse {\n\t\t\t\tslide( indexh || 0, indexv || 0 );\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Read the index components of the hash\n\t\t\tvar h = parseInt( bits[0], 10 ) || 0,\n\t\t\t\tv = parseInt( bits[1], 10 ) || 0;\n\n\t\t\tif( h !== indexh || v !== indexv ) {\n\t\t\t\tslide( h, v );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Updates the page URL (hash) to reflect the current\n\t * state.\n\t *\n\t * @param {Number} delay The time in ms to wait before\n\t * writing the hash\n\t */\n\tfunction writeURL( delay ) {\n\n\t\tif( config.history ) {\n\n\t\t\t// Make sure there's never more than one timeout running\n\t\t\tclearTimeout( writeURLTimeout );\n\n\t\t\t// If a delay is specified, timeout this call\n\t\t\tif( typeof delay === 'number' ) {\n\t\t\t\twriteURLTimeout = setTimeout( writeURL, delay );\n\t\t\t}\n\t\t\telse if( currentSlide ) {\n\t\t\t\tvar url = '/';\n\n\t\t\t\t// Attempt to create a named link based on the slide's ID\n\t\t\t\tvar id = currentSlide.getAttribute( 'id' );\n\t\t\t\tif( id ) {\n\t\t\t\t\tid = id.replace( /[^a-zA-Z0-9\\-\\_\\:\\.]/g, '' );\n\t\t\t\t}\n\n\t\t\t\t// If the current slide has an ID, use that as a named link\n\t\t\t\tif( typeof id === 'string' && id.length ) {\n\t\t\t\t\turl = '/' + id;\n\t\t\t\t}\n\t\t\t\t// Otherwise use the /h/v index\n\t\t\t\telse {\n\t\t\t\t\tif( indexh > 0 || indexv > 0 ) url += indexh;\n\t\t\t\t\tif( indexv > 0 ) url += '/' + indexv;\n\t\t\t\t}\n\n\t\t\t\twindow.location.hash = url;\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Retrieves the h/v location of the current, or specified,\n\t * slide.\n\t *\n\t * @param {HTMLElement} slide If specified, the returned\n\t * index will be for this slide rather than the currently\n\t * active one\n\t *\n\t * @return {Object} { h: <int>, v: <int>, f: <int> }\n\t */\n\tfunction getIndices( slide ) {\n\n\t\t// By default, return the current indices\n\t\tvar h = indexh,\n\t\t\tv = indexv,\n\t\t\tf;\n\n\t\t// If a slide is specified, return the indices of that slide\n\t\tif( slide ) {\n\t\t\tvar isVertical = isVerticalSlide( slide );\n\t\t\tvar slideh = isVertical ? slide.parentNode : slide;\n\n\t\t\t// Select all horizontal slides\n\t\t\tvar horizontalSlides = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) );\n\n\t\t\t// Now that we know which the horizontal slide is, get its index\n\t\t\th = Math.max( horizontalSlides.indexOf( slideh ), 0 );\n\n\t\t\t// Assume we're not vertical\n\t\t\tv = undefined;\n\n\t\t\t// If this is a vertical slide, grab the vertical index\n\t\t\tif( isVertical ) {\n\t\t\t\tv = Math.max( toArray( slide.parentNode.querySelectorAll( 'section' ) ).indexOf( slide ), 0 );\n\t\t\t}\n\t\t}\n\n\t\tif( !slide && currentSlide ) {\n\t\t\tvar hasFragments = currentSlide.querySelectorAll( '.fragment' ).length > 0;\n\t\t\tif( hasFragments ) {\n\t\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\t\t\t\tif( currentFragment && currentFragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\tf = parseInt( currentFragment.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tf = currentSlide.querySelectorAll( '.fragment.visible' ).length - 1;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn { h: h, v: v, f: f };\n\n\t}\n\n\t/**\n\t * Retrieves the total number of slides in this presentation.\n\t */\n\tfunction getTotalSlides() {\n\n\t\treturn dom.wrapper.querySelectorAll( SLIDES_SELECTOR + ':not(.stack)' ).length;\n\n\t}\n\n\t/**\n\t * Returns the slide element matching the specified index.\n\t */\n\tfunction getSlide( x, y ) {\n\n\t\tvar horizontalSlide = dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR )[ x ];\n\t\tvar verticalSlides = horizontalSlide && horizontalSlide.querySelectorAll( 'section' );\n\n\t\tif( verticalSlides && verticalSlides.length && typeof y === 'number' ) {\n\t\t\treturn verticalSlides ? verticalSlides[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalSlide;\n\n\t}\n\n\t/**\n\t * Returns the background element for the given slide.\n\t * All slides, even the ones with no background properties\n\t * defined, have a background element so as long as the\n\t * index is valid an element will be returned.\n\t */\n\tfunction getSlideBackground( x, y ) {\n\n\t\t// When printing to PDF the slide backgrounds are nested\n\t\t// inside of the slides\n\t\tif( isPrintingPDF() ) {\n\t\t\tvar slide = getSlide( x, y );\n\t\t\tif( slide ) {\n\t\t\t\tvar background = slide.querySelector( '.slide-background' );\n\t\t\t\tif( background && background.parentNode === slide ) {\n\t\t\t\t\treturn background;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn undefined;\n\t\t}\n\n\t\tvar horizontalBackground = dom.wrapper.querySelectorAll( '.backgrounds>.slide-background' )[ x ];\n\t\tvar verticalBackgrounds = horizontalBackground && horizontalBackground.querySelectorAll( '.slide-background' );\n\n\t\tif( verticalBackgrounds && verticalBackgrounds.length && typeof y === 'number' ) {\n\t\t\treturn verticalBackgrounds ? verticalBackgrounds[ y ] : undefined;\n\t\t}\n\n\t\treturn horizontalBackground;\n\n\t}\n\n\t/**\n\t * Retrieves the speaker notes from a slide. Notes can be\n\t * defined in two ways:\n\t * 1. As a data-notes attribute on the slide <section>\n\t * 2. As an <aside class=\"notes\"> inside of the slide\n\t */\n\tfunction getSlideNotes( slide ) {\n\n\t\t// Default to the current slide\n\t\tslide = slide || currentSlide;\n\n\t\t// Notes can be specified via the data-notes attribute...\n\t\tif( slide.hasAttribute( 'data-notes' ) ) {\n\t\t\treturn slide.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// ... or using an <aside class=\"notes\"> element\n\t\tvar notesElement = slide.querySelector( 'aside.notes' );\n\t\tif( notesElement ) {\n\t\t\treturn notesElement.innerHTML;\n\t\t}\n\n\t\treturn null;\n\n\t}\n\n\t/**\n\t * Retrieves the current state of the presentation as\n\t * an object. This state can then be restored at any\n\t * time.\n\t */\n\tfunction getState() {\n\n\t\tvar indices = getIndices();\n\n\t\treturn {\n\t\t\tindexh: indices.h,\n\t\t\tindexv: indices.v,\n\t\t\tindexf: indices.f,\n\t\t\tpaused: isPaused(),\n\t\t\toverview: isOverview()\n\t\t};\n\n\t}\n\n\t/**\n\t * Restores the presentation to the given state.\n\t *\n\t * @param {Object} state As generated by getState()\n\t */\n\tfunction setState( state ) {\n\n\t\tif( typeof state === 'object' ) {\n\t\t\tslide( deserialize( state.indexh ), deserialize( state.indexv ), deserialize( state.indexf ) );\n\n\t\t\tvar pausedFlag = deserialize( state.paused ),\n\t\t\t\toverviewFlag = deserialize( state.overview );\n\n\t\t\tif( typeof pausedFlag === 'boolean' && pausedFlag !== isPaused() ) {\n\t\t\t\ttogglePause( pausedFlag );\n\t\t\t}\n\n\t\t\tif( typeof overviewFlag === 'boolean' && overviewFlag !== isOverview() ) {\n\t\t\t\ttoggleOverview( overviewFlag );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Return a sorted fragments list, ordered by an increasing\n\t * \"data-fragment-index\" attribute.\n\t *\n\t * Fragments will be revealed in the order that they are returned by\n\t * this function, so you can use the index attributes to control the\n\t * order of fragment appearance.\n\t *\n\t * To maintain a sensible default fragment order, fragments are presumed\n\t * to be passed in document order. This function adds a \"fragment-index\"\n\t * attribute to each node if such an attribute is not already present,\n\t * and sets that attribute to an integer value which is the position of\n\t * the fragment within the fragments list.\n\t */\n\tfunction sortFragments( fragments ) {\n\n\t\tfragments = toArray( fragments );\n\n\t\tvar ordered = [],\n\t\t\tunordered = [],\n\t\t\tsorted = [];\n\n\t\t// Group ordered and unordered elements\n\t\tfragments.forEach( function( fragment, i ) {\n\t\t\tif( fragment.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\tvar index = parseInt( fragment.getAttribute( 'data-fragment-index' ), 10 );\n\n\t\t\t\tif( !ordered[index] ) {\n\t\t\t\t\tordered[index] = [];\n\t\t\t\t}\n\n\t\t\t\tordered[index].push( fragment );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tunordered.push( [ fragment ] );\n\t\t\t}\n\t\t} );\n\n\t\t// Append fragments without explicit indices in their\n\t\t// DOM order\n\t\tordered = ordered.concat( unordered );\n\n\t\t// Manually count the index up per group to ensure there\n\t\t// are no gaps\n\t\tvar index = 0;\n\n\t\t// Push all fragments in their sorted order to an array,\n\t\t// this flattens the groups\n\t\tordered.forEach( function( group ) {\n\t\t\tgroup.forEach( function( fragment ) {\n\t\t\t\tsorted.push( fragment );\n\t\t\t\tfragment.setAttribute( 'data-fragment-index', index );\n\t\t\t} );\n\n\t\t\tindex ++;\n\t\t} );\n\n\t\treturn sorted;\n\n\t}\n\n\t/**\n\t * Navigate to the specified slide fragment.\n\t *\n\t * @param {Number} index The index of the fragment that\n\t * should be shown, -1 means all are invisible\n\t * @param {Number} offset Integer offset to apply to the\n\t * fragment index\n\t *\n\t * @return {Boolean} true if a change was made in any\n\t * fragments visibility as part of this call\n\t */\n\tfunction navigateFragment( index, offset ) {\n\n\t\tif( currentSlide && config.fragments ) {\n\n\t\t\tvar fragments = sortFragments( currentSlide.querySelectorAll( '.fragment' ) );\n\t\t\tif( fragments.length ) {\n\n\t\t\t\t// If no index is specified, find the current\n\t\t\t\tif( typeof index !== 'number' ) {\n\t\t\t\t\tvar lastVisibleFragment = sortFragments( currentSlide.querySelectorAll( '.fragment.visible' ) ).pop();\n\n\t\t\t\t\tif( lastVisibleFragment ) {\n\t\t\t\t\t\tindex = parseInt( lastVisibleFragment.getAttribute( 'data-fragment-index' ) || 0, 10 );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tindex = -1;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// If an offset is specified, apply it to the index\n\t\t\t\tif( typeof offset === 'number' ) {\n\t\t\t\t\tindex += offset;\n\t\t\t\t}\n\n\t\t\t\tvar fragmentsShown = [],\n\t\t\t\t\tfragmentsHidden = [];\n\n\t\t\t\ttoArray( fragments ).forEach( function( element, i ) {\n\n\t\t\t\t\tif( element.hasAttribute( 'data-fragment-index' ) ) {\n\t\t\t\t\t\ti = parseInt( element.getAttribute( 'data-fragment-index' ), 10 );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Visible fragments\n\t\t\t\t\tif( i <= index ) {\n\t\t\t\t\t\tif( !element.classList.contains( 'visible' ) ) fragmentsShown.push( element );\n\t\t\t\t\t\telement.classList.add( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\n\t\t\t\t\t\t// Announce the fragments one by one to the Screen Reader\n\t\t\t\t\t\tdom.statusDiv.textContent = element.textContent;\n\n\t\t\t\t\t\tif( i === index ) {\n\t\t\t\t\t\t\telement.classList.add( 'current-fragment' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Hidden fragments\n\t\t\t\t\telse {\n\t\t\t\t\t\tif( element.classList.contains( 'visible' ) ) fragmentsHidden.push( element );\n\t\t\t\t\t\telement.classList.remove( 'visible' );\n\t\t\t\t\t\telement.classList.remove( 'current-fragment' );\n\t\t\t\t\t}\n\n\n\t\t\t\t} );\n\n\t\t\t\tif( fragmentsHidden.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmenthidden', { fragment: fragmentsHidden[0], fragments: fragmentsHidden } );\n\t\t\t\t}\n\n\t\t\t\tif( fragmentsShown.length ) {\n\t\t\t\t\tdispatchEvent( 'fragmentshown', { fragment: fragmentsShown[0], fragments: fragmentsShown } );\n\t\t\t\t}\n\n\t\t\t\tupdateControls();\n\t\t\t\tupdateProgress();\n\n\t\t\t\treturn !!( fragmentsShown.length || fragmentsHidden.length );\n\n\t\t\t}\n\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\t/**\n\t * Navigate to the next slide fragment.\n\t *\n\t * @return {Boolean} true if there was a next fragment,\n\t * false otherwise\n\t */\n\tfunction nextFragment() {\n\n\t\treturn navigateFragment( null, 1 );\n\n\t}\n\n\t/**\n\t * Navigate to the previous slide fragment.\n\t *\n\t * @return {Boolean} true if there was a previous fragment,\n\t * false otherwise\n\t */\n\tfunction previousFragment() {\n\n\t\treturn navigateFragment( null, -1 );\n\n\t}\n\n\t/**\n\t * Cues a new automated slide if enabled in the config.\n\t */\n\tfunction cueAutoSlide() {\n\n\t\tcancelAutoSlide();\n\n\t\tif( currentSlide ) {\n\n\t\t\tvar currentFragment = currentSlide.querySelector( '.current-fragment' );\n\n\t\t\tvar fragmentAutoSlide = currentFragment ? currentFragment.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar parentAutoSlide = currentSlide.parentNode ? currentSlide.parentNode.getAttribute( 'data-autoslide' ) : null;\n\t\t\tvar slideAutoSlide = currentSlide.getAttribute( 'data-autoslide' );\n\n\t\t\t// Pick value in the following priority order:\n\t\t\t// 1. Current fragment's data-autoslide\n\t\t\t// 2. Current slide's data-autoslide\n\t\t\t// 3. Parent slide's data-autoslide\n\t\t\t// 4. Global autoSlide setting\n\t\t\tif( fragmentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( fragmentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( slideAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( slideAutoSlide, 10 );\n\t\t\t}\n\t\t\telse if( parentAutoSlide ) {\n\t\t\t\tautoSlide = parseInt( parentAutoSlide, 10 );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tautoSlide = config.autoSlide;\n\t\t\t}\n\n\t\t\t// If there are media elements with data-autoplay,\n\t\t\t// automatically set the autoSlide duration to the\n\t\t\t// length of that media. Not applicable if the slide\n\t\t\t// is divided up into fragments.\n\t\t\tif( currentSlide.querySelectorAll( '.fragment' ).length === 0 ) {\n\t\t\t\ttoArray( currentSlide.querySelectorAll( 'video, audio' ) ).forEach( function( el ) {\n\t\t\t\t\tif( el.hasAttribute( 'data-autoplay' ) ) {\n\t\t\t\t\t\tif( autoSlide && el.duration * 1000 > autoSlide ) {\n\t\t\t\t\t\t\tautoSlide = ( el.duration * 1000 ) + 1000;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t} );\n\t\t\t}\n\n\t\t\t// Cue the next auto-slide if:\n\t\t\t// - There is an autoSlide value\n\t\t\t// - Auto-sliding isn't paused by the user\n\t\t\t// - The presentation isn't paused\n\t\t\t// - The overview isn't active\n\t\t\t// - The presentation isn't over\n\t\t\tif( autoSlide && !autoSlidePaused && !isPaused() && !isOverview() && ( !Reveal.isLastSlide() || availableFragments().next || config.loop === true ) ) {\n\t\t\t\tautoSlideTimeout = setTimeout( navigateNext, autoSlide );\n\t\t\t\tautoSlideStartTime = Date.now();\n\t\t\t}\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( autoSlideTimeout !== -1 );\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Cancels any ongoing request to auto-slide.\n\t */\n\tfunction cancelAutoSlide() {\n\n\t\tclearTimeout( autoSlideTimeout );\n\t\tautoSlideTimeout = -1;\n\n\t}\n\n\tfunction pauseAutoSlide() {\n\n\t\tif( autoSlide && !autoSlidePaused ) {\n\t\t\tautoSlidePaused = true;\n\t\t\tdispatchEvent( 'autoslidepaused' );\n\t\t\tclearTimeout( autoSlideTimeout );\n\n\t\t\tif( autoSlidePlayer ) {\n\t\t\t\tautoSlidePlayer.setPlaying( false );\n\t\t\t}\n\t\t}\n\n\t}\n\n\tfunction resumeAutoSlide() {\n\n\t\tif( autoSlide && autoSlidePaused ) {\n\t\t\tautoSlidePaused = false;\n\t\t\tdispatchEvent( 'autoslideresumed' );\n\t\t\tcueAutoSlide();\n\t\t}\n\n\t}\n\n\tfunction navigateLeft() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().left ) {\n\t\t\t\tslide( indexh + 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || previousFragment() === false ) && availableRoutes().left ) {\n\t\t\tslide( indexh - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateRight() {\n\n\t\t// Reverse for RTL\n\t\tif( config.rtl ) {\n\t\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().right ) {\n\t\t\t\tslide( indexh - 1 );\n\t\t\t}\n\t\t}\n\t\t// Normal navigation\n\t\telse if( ( isOverview() || nextFragment() === false ) && availableRoutes().right ) {\n\t\t\tslide( indexh + 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateUp() {\n\n\t\t// Prioritize hiding fragments\n\t\tif( ( isOverview() || previousFragment() === false ) && availableRoutes().up ) {\n\t\t\tslide( indexh, indexv - 1 );\n\t\t}\n\n\t}\n\n\tfunction navigateDown() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( ( isOverview() || nextFragment() === false ) && availableRoutes().down ) {\n\t\t\tslide( indexh, indexv + 1 );\n\t\t}\n\n\t}\n\n\t/**\n\t * Navigates backwards, prioritized in the following order:\n\t * 1) Previous fragment\n\t * 2) Previous vertical slide\n\t * 3) Previous horizontal slide\n\t */\n\tfunction navigatePrev() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( previousFragment() === false ) {\n\t\t\tif( availableRoutes().up ) {\n\t\t\t\tnavigateUp();\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// Fetch the previous horizontal slide, if there is one\n\t\t\t\tvar previousSlide;\n\n\t\t\t\tif( config.rtl ) {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.future' ) ).pop();\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tpreviousSlide = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR + '.past' ) ).pop();\n\t\t\t\t}\n\n\t\t\t\tif( previousSlide ) {\n\t\t\t\t\tvar v = ( previousSlide.querySelectorAll( 'section' ).length - 1 ) || undefined;\n\t\t\t\t\tvar h = indexh - 1;\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * The reverse of #navigatePrev().\n\t */\n\tfunction navigateNext() {\n\n\t\t// Prioritize revealing fragments\n\t\tif( nextFragment() === false ) {\n\t\t\tif( availableRoutes().down ) {\n\t\t\t\tnavigateDown();\n\t\t\t}\n\t\t\telse if( config.rtl ) {\n\t\t\t\tnavigateLeft();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigateRight();\n\t\t\t}\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Checks if the target element prevents the triggering of\n\t * swipe navigation.\n\t */\n\tfunction isSwipePrevented( target ) {\n\n\t\twhile( target && typeof target.hasAttribute === 'function' ) {\n\t\t\tif( target.hasAttribute( 'data-prevent-swipe' ) ) return true;\n\t\t\ttarget = target.parentNode;\n\t\t}\n\n\t\treturn false;\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ----------------------------- EVENTS -------------------------------//\n\t// --------------------------------------------------------------------//\n\n\t/**\n\t * Called by all event handlers that are based on user\n\t * input.\n\t */\n\tfunction onUserInput( event ) {\n\n\t\tif( config.autoSlideStoppable ) {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keypress' event.\n\t */\n\tfunction onDocumentKeyPress( event ) {\n\n\t\t// Check if the pressed key is question mark\n\t\tif( event.shiftKey && event.charCode === 63 ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tshowHelp( true );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the document level 'keydown' event.\n\t */\n\tfunction onDocumentKeyDown( event ) {\n\n\t\t// If there's a condition specified and it returns false,\n\t\t// ignore this event\n\t\tif( typeof config.keyboardCondition === 'function' && config.keyboardCondition() === false ) {\n\t\t\treturn true;\n\t\t}\n\n\t\t// Remember if auto-sliding was paused so we can toggle it\n\t\tvar autoSlideWasPaused = autoSlidePaused;\n\n\t\tonUserInput( event );\n\n\t\t// Check if there's a focused element that could be using\n\t\t// the keyboard\n\t\tvar activeElementIsCE = document.activeElement && document.activeElement.contentEditable !== 'inherit';\n\t\tvar activeElementIsInput = document.activeElement && document.activeElement.tagName && /input|textarea/i.test( document.activeElement.tagName );\n\n\t\t// Disregard the event if there's a focused element or a\n\t\t// keyboard modifier key is present\n\t\tif( activeElementIsCE || activeElementIsInput || (event.shiftKey && event.keyCode !== 32) || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t// While paused only allow resume keyboard events; 'b', '.''\n\t\tvar resumeKeyCodes = [66,190,191];\n\t\tvar key;\n\n\t\t// Custom key bindings for togglePause should be able to resume\n\t\tif( typeof config.keyboard === 'object' ) {\n\t\t\tfor( key in config.keyboard ) {\n\t\t\t\tif( config.keyboard[key] === 'togglePause' ) {\n\t\t\t\t\tresumeKeyCodes.push( parseInt( key, 10 ) );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif( isPaused() && resumeKeyCodes.indexOf( event.keyCode ) === -1 ) {\n\t\t\treturn false;\n\t\t}\n\n\t\tvar triggered = false;\n\n\t\t// 1. User defined key bindings\n\t\tif( typeof config.keyboard === 'object' ) {\n\n\t\t\tfor( key in config.keyboard ) {\n\n\t\t\t\t// Check if this binding matches the pressed key\n\t\t\t\tif( parseInt( key, 10 ) === event.keyCode ) {\n\n\t\t\t\t\tvar value = config.keyboard[ key ];\n\n\t\t\t\t\t// Callback function\n\t\t\t\t\tif( typeof value === 'function' ) {\n\t\t\t\t\t\tvalue.apply( null, [ event ] );\n\t\t\t\t\t}\n\t\t\t\t\t// String shortcuts to reveal.js API\n\t\t\t\t\telse if( typeof value === 'string' && typeof Reveal[ value ] === 'function' ) {\n\t\t\t\t\t\tReveal[ value ].call();\n\t\t\t\t\t}\n\n\t\t\t\t\ttriggered = true;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t\t// 2. System defined key bindings\n\t\tif( triggered === false ) {\n\n\t\t\t// Assume true and try to prove false\n\t\t\ttriggered = true;\n\n\t\t\tswitch( event.keyCode ) {\n\t\t\t\t// p, page up\n\t\t\t\tcase 80: case 33: navigatePrev(); break;\n\t\t\t\t// n, page down\n\t\t\t\tcase 78: case 34: navigateNext(); break;\n\t\t\t\t// h, left\n\t\t\t\tcase 72: case 37: navigateLeft(); break;\n\t\t\t\t// l, right\n\t\t\t\tcase 76: case 39: navigateRight(); break;\n\t\t\t\t// k, up\n\t\t\t\tcase 75: case 38: navigateUp(); break;\n\t\t\t\t// j, down\n\t\t\t\tcase 74: case 40: navigateDown(); break;\n\t\t\t\t// home\n\t\t\t\tcase 36: slide( 0 ); break;\n\t\t\t\t// end\n\t\t\t\tcase 35: slide( Number.MAX_VALUE ); break;\n\t\t\t\t// space\n\t\t\t\tcase 32: isOverview() ? deactivateOverview() : event.shiftKey ? navigatePrev() : navigateNext(); break;\n\t\t\t\t// return\n\t\t\t\tcase 13: isOverview() ? deactivateOverview() : triggered = false; break;\n\t\t\t\t// two-spot, semicolon, b, period, Logitech presenter tools \"black screen\" button\n\t\t\t\tcase 58: case 59: case 66: case 190: case 191: togglePause(); break;\n\t\t\t\t// f\n\t\t\t\tcase 70: enterFullscreen(); break;\n\t\t\t\t// a\n\t\t\t\tcase 65: if ( config.autoSlideStoppable ) toggleAutoSlide( autoSlideWasPaused ); break;\n\t\t\t\tdefault:\n\t\t\t\t\ttriggered = false;\n\t\t\t}\n\n\t\t}\n\n\t\t// If the input resulted in a triggered action we should prevent\n\t\t// the browsers default behavior\n\t\tif( triggered ) {\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\t\t// ESC or O key\n\t\telse if ( ( event.keyCode === 27 || event.keyCode === 79 ) && features.transforms3d ) {\n\t\t\tif( dom.overlay ) {\n\t\t\t\tcloseOverlay();\n\t\t\t}\n\t\t\telse {\n\t\t\t\ttoggleOverview();\n\t\t\t}\n\n\t\t\tevent.preventDefault && event.preventDefault();\n\t\t}\n\n\t\t// If auto-sliding is enabled we need to cue up\n\t\t// another timeout\n\t\tcueAutoSlide();\n\n\t}\n\n\t/**\n\t * Handler for the 'touchstart' event, enables support for\n\t * swipe and pinch gestures.\n\t */\n\tfunction onTouchStart( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\ttouch.startX = event.touches[0].clientX;\n\t\ttouch.startY = event.touches[0].clientY;\n\t\ttouch.startCount = event.touches.length;\n\n\t\t// If there's two touches we need to memorize the distance\n\t\t// between those two points to detect pinching\n\t\tif( event.touches.length === 2 && config.overview ) {\n\t\t\ttouch.startSpan = distanceBetween( {\n\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\ty: event.touches[1].clientY\n\t\t\t}, {\n\t\t\t\tx: touch.startX,\n\t\t\t\ty: touch.startY\n\t\t\t} );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchmove' event.\n\t */\n\tfunction onTouchMove( event ) {\n\n\t\tif( isSwipePrevented( event.target ) ) return true;\n\n\t\t// Each touch should only trigger one action\n\t\tif( !touch.captured ) {\n\t\t\tonUserInput( event );\n\n\t\t\tvar currentX = event.touches[0].clientX;\n\t\t\tvar currentY = event.touches[0].clientY;\n\n\t\t\t// If the touch started with two points and still has\n\t\t\t// two active touches; test for the pinch gesture\n\t\t\tif( event.touches.length === 2 && touch.startCount === 2 && config.overview ) {\n\n\t\t\t\t// The current distance in pixels between the two touch points\n\t\t\t\tvar currentSpan = distanceBetween( {\n\t\t\t\t\tx: event.touches[1].clientX,\n\t\t\t\t\ty: event.touches[1].clientY\n\t\t\t\t}, {\n\t\t\t\t\tx: touch.startX,\n\t\t\t\t\ty: touch.startY\n\t\t\t\t} );\n\n\t\t\t\t// If the span is larger than the desire amount we've got\n\t\t\t\t// ourselves a pinch\n\t\t\t\tif( Math.abs( touch.startSpan - currentSpan ) > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\n\t\t\t\t\tif( currentSpan < touch.startSpan ) {\n\t\t\t\t\t\tactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tdeactivateOverview();\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tevent.preventDefault();\n\n\t\t\t}\n\t\t\t// There was only one touch point, look for a swipe\n\t\t\telse if( event.touches.length === 1 && touch.startCount !== 2 ) {\n\n\t\t\t\tvar deltaX = currentX - touch.startX,\n\t\t\t\t\tdeltaY = currentY - touch.startY;\n\n\t\t\t\tif( deltaX > touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateLeft();\n\t\t\t\t}\n\t\t\t\telse if( deltaX < -touch.threshold && Math.abs( deltaX ) > Math.abs( deltaY ) ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateRight();\n\t\t\t\t}\n\t\t\t\telse if( deltaY > touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateUp();\n\t\t\t\t}\n\t\t\t\telse if( deltaY < -touch.threshold ) {\n\t\t\t\t\ttouch.captured = true;\n\t\t\t\t\tnavigateDown();\n\t\t\t\t}\n\n\t\t\t\t// If we're embedded, only block touch events if they have\n\t\t\t\t// triggered an action\n\t\t\t\tif( config.embedded ) {\n\t\t\t\t\tif( touch.captured || isVerticalSlide( currentSlide ) ) {\n\t\t\t\t\t\tevent.preventDefault();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t// Not embedded? Block them all to avoid needless tossing\n\t\t\t\t// around of the viewport in iOS\n\t\t\t\telse {\n\t\t\t\t\tevent.preventDefault();\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\t\t// There's a bug with swiping on some Android devices unless\n\t\t// the default action is always prevented\n\t\telse if( navigator.userAgent.match( /android/gi ) ) {\n\t\t\tevent.preventDefault();\n\t\t}\n\n\t}\n\n\t/**\n\t * Handler for the 'touchend' event.\n\t */\n\tfunction onTouchEnd( event ) {\n\n\t\ttouch.captured = false;\n\n\t}\n\n\t/**\n\t * Convert pointer down to touch start.\n\t */\n\tfunction onPointerDown( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" ) {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchStart( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer move to touch move.\n\t */\n\tfunction onPointerMove( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchMove( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Convert pointer up to touch end.\n\t */\n\tfunction onPointerUp( event ) {\n\n\t\tif( event.pointerType === event.MSPOINTER_TYPE_TOUCH || event.pointerType === \"touch\" )  {\n\t\t\tevent.touches = [{ clientX: event.clientX, clientY: event.clientY }];\n\t\t\tonTouchEnd( event );\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles mouse wheel scrolling, throttled to avoid skipping\n\t * multiple slides.\n\t */\n\tfunction onDocumentMouseScroll( event ) {\n\n\t\tif( Date.now() - lastMouseWheelStep > 600 ) {\n\n\t\t\tlastMouseWheelStep = Date.now();\n\n\t\t\tvar delta = event.detail || -event.wheelDelta;\n\t\t\tif( delta > 0 ) {\n\t\t\t\tnavigateNext();\n\t\t\t}\n\t\t\telse {\n\t\t\t\tnavigatePrev();\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t/**\n\t * Clicking on the progress bar results in a navigation to the\n\t * closest approximate horizontal slide using this equation:\n\t *\n\t * ( clickX / presentationWidth ) * numberOfSlides\n\t */\n\tfunction onProgressClicked( event ) {\n\n\t\tonUserInput( event );\n\n\t\tevent.preventDefault();\n\n\t\tvar slidesTotal = toArray( dom.wrapper.querySelectorAll( HORIZONTAL_SLIDES_SELECTOR ) ).length;\n\t\tvar slideIndex = Math.floor( ( event.clientX / dom.wrapper.offsetWidth ) * slidesTotal );\n\n\t\tif( config.rtl ) {\n\t\t\tslideIndex = slidesTotal - slideIndex;\n\t\t}\n\n\t\tslide( slideIndex );\n\n\t}\n\n\t/**\n\t * Event handler for navigation control buttons.\n\t */\n\tfunction onNavigateLeftClicked( event ) { event.preventDefault(); onUserInput(); navigateLeft(); }\n\tfunction onNavigateRightClicked( event ) { event.preventDefault(); onUserInput(); navigateRight(); }\n\tfunction onNavigateUpClicked( event ) { event.preventDefault(); onUserInput(); navigateUp(); }\n\tfunction onNavigateDownClicked( event ) { event.preventDefault(); onUserInput(); navigateDown(); }\n\tfunction onNavigatePrevClicked( event ) { event.preventDefault(); onUserInput(); navigatePrev(); }\n\tfunction onNavigateNextClicked( event ) { event.preventDefault(); onUserInput(); navigateNext(); }\n\n\t/**\n\t * Handler for the window level 'hashchange' event.\n\t */\n\tfunction onWindowHashChange( event ) {\n\n\t\treadURL();\n\n\t}\n\n\t/**\n\t * Handler for the window level 'resize' event.\n\t */\n\tfunction onWindowResize( event ) {\n\n\t\tlayout();\n\n\t}\n\n\t/**\n\t * Handle for the window level 'visibilitychange' event.\n\t */\n\tfunction onPageVisibilityChange( event ) {\n\n\t\tvar isHidden =  document.webkitHidden ||\n\t\t\t\t\t\tdocument.msHidden ||\n\t\t\t\t\t\tdocument.hidden;\n\n\t\t// If, after clicking a link or similar and we're coming back,\n\t\t// focus the document.body to ensure we can use keyboard shortcuts\n\t\tif( isHidden === false && document.activeElement !== document.body ) {\n\t\t\t// Not all elements support .blur() - SVGs among them.\n\t\t\tif( typeof document.activeElement.blur === 'function' ) {\n\t\t\t\tdocument.activeElement.blur();\n\t\t\t}\n\t\t\tdocument.body.focus();\n\t\t}\n\n\t}\n\n\t/**\n\t * Invoked when a slide is and we're in the overview.\n\t */\n\tfunction onOverviewSlideClicked( event ) {\n\n\t\t// TODO There's a bug here where the event listeners are not\n\t\t// removed after deactivating the overview.\n\t\tif( eventsAreBound && isOverview() ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar element = event.target;\n\n\t\t\twhile( element && !element.nodeName.match( /section/gi ) ) {\n\t\t\t\telement = element.parentNode;\n\t\t\t}\n\n\t\t\tif( element && !element.classList.contains( 'disabled' ) ) {\n\n\t\t\t\tdeactivateOverview();\n\n\t\t\t\tif( element.nodeName.match( /section/gi ) ) {\n\t\t\t\t\tvar h = parseInt( element.getAttribute( 'data-index-h' ), 10 ),\n\t\t\t\t\t\tv = parseInt( element.getAttribute( 'data-index-v' ), 10 );\n\n\t\t\t\t\tslide( h, v );\n\t\t\t\t}\n\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles clicks on links that are set to preview in the\n\t * iframe overlay.\n\t */\n\tfunction onPreviewLinkClicked( event ) {\n\n\t\tif( event.currentTarget && event.currentTarget.hasAttribute( 'href' ) ) {\n\t\t\tvar url = event.currentTarget.getAttribute( 'href' );\n\t\t\tif( url ) {\n\t\t\t\tshowPreview( url );\n\t\t\t\tevent.preventDefault();\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Handles click on the auto-sliding controls element.\n\t */\n\tfunction onAutoSlidePlayerClick( event ) {\n\n\t\t// Replay\n\t\tif( Reveal.isLastSlide() && config.loop === false ) {\n\t\t\tslide( 0, 0 );\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Resume\n\t\telse if( autoSlidePaused ) {\n\t\t\tresumeAutoSlide();\n\t\t}\n\t\t// Pause\n\t\telse {\n\t\t\tpauseAutoSlide();\n\t\t}\n\n\t}\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------ PLAYBACK COMPONENT ------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\t/**\n\t * Constructor for the playback component, which displays\n\t * play/pause/progress controls.\n\t *\n\t * @param {HTMLElement} container The component will append\n\t * itself to this\n\t * @param {Function} progressCheck A method which will be\n\t * called frequently to get the current progress on a range\n\t * of 0-1\n\t */\n\tfunction Playback( container, progressCheck ) {\n\n\t\t// Cosmetics\n\t\tthis.diameter = 50;\n\t\tthis.thickness = 3;\n\n\t\t// Flags if we are currently playing\n\t\tthis.playing = false;\n\n\t\t// Current progress on a 0-1 range\n\t\tthis.progress = 0;\n\n\t\t// Used to loop the animation smoothly\n\t\tthis.progressOffset = 1;\n\n\t\tthis.container = container;\n\t\tthis.progressCheck = progressCheck;\n\n\t\tthis.canvas = document.createElement( 'canvas' );\n\t\tthis.canvas.className = 'playback';\n\t\tthis.canvas.width = this.diameter;\n\t\tthis.canvas.height = this.diameter;\n\t\tthis.context = this.canvas.getContext( '2d' );\n\n\t\tthis.container.appendChild( this.canvas );\n\n\t\tthis.render();\n\n\t}\n\n\tPlayback.prototype.setPlaying = function( value ) {\n\n\t\tvar wasPlaying = this.playing;\n\n\t\tthis.playing = value;\n\n\t\t// Start repainting if we weren't already\n\t\tif( !wasPlaying && this.playing ) {\n\t\t\tthis.animate();\n\t\t}\n\t\telse {\n\t\t\tthis.render();\n\t\t}\n\n\t};\n\n\tPlayback.prototype.animate = function() {\n\n\t\tvar progressBefore = this.progress;\n\n\t\tthis.progress = this.progressCheck();\n\n\t\t// When we loop, offset the progress so that it eases\n\t\t// smoothly rather than immediately resetting\n\t\tif( progressBefore > 0.8 && this.progress < 0.2 ) {\n\t\t\tthis.progressOffset = this.progress;\n\t\t}\n\n\t\tthis.render();\n\n\t\tif( this.playing ) {\n\t\t\tfeatures.requestAnimationFrameMethod.call( window, this.animate.bind( this ) );\n\t\t}\n\n\t};\n\n\t/**\n\t * Renders the current progress and playback state.\n\t */\n\tPlayback.prototype.render = function() {\n\n\t\tvar progress = this.playing ? this.progress : 0,\n\t\t\tradius = ( this.diameter / 2 ) - this.thickness,\n\t\t\tx = this.diameter / 2,\n\t\t\ty = this.diameter / 2,\n\t\t\ticonSize = 14;\n\n\t\t// Ease towards 1\n\t\tthis.progressOffset += ( 1 - this.progressOffset ) * 0.1;\n\n\t\tvar endAngle = ( - Math.PI / 2 ) + ( progress * ( Math.PI * 2 ) );\n\t\tvar startAngle = ( - Math.PI / 2 ) + ( this.progressOffset * ( Math.PI * 2 ) );\n\n\t\tthis.context.save();\n\t\tthis.context.clearRect( 0, 0, this.diameter, this.diameter );\n\n\t\t// Solid background color\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius + 2, 0, Math.PI * 2, false );\n\t\tthis.context.fillStyle = 'rgba( 0, 0, 0, 0.4 )';\n\t\tthis.context.fill();\n\n\t\t// Draw progress track\n\t\tthis.context.beginPath();\n\t\tthis.context.arc( x, y, radius, 0, Math.PI * 2, false );\n\t\tthis.context.lineWidth = this.thickness;\n\t\tthis.context.strokeStyle = '#666';\n\t\tthis.context.stroke();\n\n\t\tif( this.playing ) {\n\t\t\t// Draw progress on top of track\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.arc( x, y, radius, startAngle, endAngle, false );\n\t\t\tthis.context.lineWidth = this.thickness;\n\t\t\tthis.context.strokeStyle = '#fff';\n\t\t\tthis.context.stroke();\n\t\t}\n\n\t\tthis.context.translate( x - ( iconSize / 2 ), y - ( iconSize / 2 ) );\n\n\t\t// Draw play/pause icons\n\t\tif( this.playing ) {\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fillRect( 0, 0, iconSize / 2 - 2, iconSize );\n\t\t\tthis.context.fillRect( iconSize / 2 + 2, 0, iconSize / 2 - 2, iconSize );\n\t\t}\n\t\telse {\n\t\t\tthis.context.beginPath();\n\t\t\tthis.context.translate( 2, 0 );\n\t\t\tthis.context.moveTo( 0, 0 );\n\t\t\tthis.context.lineTo( iconSize - 2, iconSize / 2 );\n\t\t\tthis.context.lineTo( 0, iconSize );\n\t\t\tthis.context.fillStyle = '#fff';\n\t\t\tthis.context.fill();\n\t\t}\n\n\t\tthis.context.restore();\n\n\t};\n\n\tPlayback.prototype.on = function( type, listener ) {\n\t\tthis.canvas.addEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.off = function( type, listener ) {\n\t\tthis.canvas.removeEventListener( type, listener, false );\n\t};\n\n\tPlayback.prototype.destroy = function() {\n\n\t\tthis.playing = false;\n\n\t\tif( this.canvas.parentNode ) {\n\t\t\tthis.container.removeChild( this.canvas );\n\t\t}\n\n\t};\n\n\n\t// --------------------------------------------------------------------//\n\t// ------------------------------- API --------------------------------//\n\t// --------------------------------------------------------------------//\n\n\n\tReveal = {\n\t\tinitialize: initialize,\n\t\tconfigure: configure,\n\t\tsync: sync,\n\n\t\t// Navigation methods\n\t\tslide: slide,\n\t\tleft: navigateLeft,\n\t\tright: navigateRight,\n\t\tup: navigateUp,\n\t\tdown: navigateDown,\n\t\tprev: navigatePrev,\n\t\tnext: navigateNext,\n\n\t\t// Fragment methods\n\t\tnavigateFragment: navigateFragment,\n\t\tprevFragment: previousFragment,\n\t\tnextFragment: nextFragment,\n\n\t\t// Deprecated aliases\n\t\tnavigateTo: slide,\n\t\tnavigateLeft: navigateLeft,\n\t\tnavigateRight: navigateRight,\n\t\tnavigateUp: navigateUp,\n\t\tnavigateDown: navigateDown,\n\t\tnavigatePrev: navigatePrev,\n\t\tnavigateNext: navigateNext,\n\n\t\t// Forces an update in slide layout\n\t\tlayout: layout,\n\n\t\t// Returns an object with the available routes as booleans (left/right/top/bottom)\n\t\tavailableRoutes: availableRoutes,\n\n\t\t// Returns an object with the available fragments as booleans (prev/next)\n\t\tavailableFragments: availableFragments,\n\n\t\t// Toggles the overview mode on/off\n\t\ttoggleOverview: toggleOverview,\n\n\t\t// Toggles the \"black screen\" mode on/off\n\t\ttogglePause: togglePause,\n\n\t\t// Toggles the auto slide mode on/off\n\t\ttoggleAutoSlide: toggleAutoSlide,\n\n\t\t// State checks\n\t\tisOverview: isOverview,\n\t\tisPaused: isPaused,\n\t\tisAutoSliding: isAutoSliding,\n\n\t\t// Adds or removes all internal event listeners (such as keyboard)\n\t\taddEventListeners: addEventListeners,\n\t\tremoveEventListeners: removeEventListeners,\n\n\t\t// Facility for persisting and restoring the presentation state\n\t\tgetState: getState,\n\t\tsetState: setState,\n\n\t\t// Presentation progress on range of 0-1\n\t\tgetProgress: getProgress,\n\n\t\t// Returns the indices of the current, or specified, slide\n\t\tgetIndices: getIndices,\n\n\t\tgetTotalSlides: getTotalSlides,\n\n\t\t// Returns the slide element at the specified index\n\t\tgetSlide: getSlide,\n\n\t\t// Returns the slide background element at the specified index\n\t\tgetSlideBackground: getSlideBackground,\n\n\t\t// Returns the speaker notes string for a slide, or null\n\t\tgetSlideNotes: getSlideNotes,\n\n\t\t// Returns the previous slide element, may be null\n\t\tgetPreviousSlide: function() {\n\t\t\treturn previousSlide;\n\t\t},\n\n\t\t// Returns the current slide element\n\t\tgetCurrentSlide: function() {\n\t\t\treturn currentSlide;\n\t\t},\n\n\t\t// Returns the current scale of the presentation content\n\t\tgetScale: function() {\n\t\t\treturn scale;\n\t\t},\n\n\t\t// Returns the current configuration object\n\t\tgetConfig: function() {\n\t\t\treturn config;\n\t\t},\n\n\t\t// Helper method, retrieves query string as a key/value hash\n\t\tgetQueryHash: function() {\n\t\t\tvar query = {};\n\n\t\t\tlocation.search.replace( /[A-Z0-9]+?=([\\w\\.%-]*)/gi, function(a) {\n\t\t\t\tquery[ a.split( '=' ).shift() ] = a.split( '=' ).pop();\n\t\t\t} );\n\n\t\t\t// Basic deserialization\n\t\t\tfor( var i in query ) {\n\t\t\t\tvar value = query[ i ];\n\n\t\t\t\tquery[ i ] = deserialize( unescape( value ) );\n\t\t\t}\n\n\t\t\treturn query;\n\t\t},\n\n\t\t// Returns true if we're currently on the first slide\n\t\tisFirstSlide: function() {\n\t\t\treturn ( indexh === 0 && indexv === 0 );\n\t\t},\n\n\t\t// Returns true if we're currently on the last slide\n\t\tisLastSlide: function() {\n\t\t\tif( currentSlide ) {\n\t\t\t\t// Does this slide has next a sibling?\n\t\t\t\tif( currentSlide.nextElementSibling ) return false;\n\n\t\t\t\t// If it's vertical, does its parent have a next sibling?\n\t\t\t\tif( isVerticalSlide( currentSlide ) && currentSlide.parentNode.nextElementSibling ) return false;\n\n\t\t\t\treturn true;\n\t\t\t}\n\n\t\t\treturn false;\n\t\t},\n\n\t\t// Checks if reveal.js has been loaded and is ready for use\n\t\tisReady: function() {\n\t\t\treturn loaded;\n\t\t},\n\n\t\t// Forward event binding to the reveal DOM element\n\t\taddEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).addEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\t\tremoveEventListener: function( type, listener, useCapture ) {\n\t\t\tif( 'addEventListener' in window ) {\n\t\t\t\t( dom.wrapper || document.querySelector( '.reveal' ) ).removeEventListener( type, listener, useCapture );\n\t\t\t}\n\t\t},\n\n\t\t// Programatically triggers a keyboard event\n\t\ttriggerKey: function( keyCode ) {\n\t\t\tonDocumentKeyDown( { keyCode: keyCode } );\n\t\t}\n\t};\n\n\treturn Reveal;\n\n}));\n"
  },
  {
    "path": "talk/reveal.js/lib/css/zenburn.css",
    "content": "/*\nZenburn style from voldmar.ru (c) Vladimir Epifanov <voldmar@voldmar.ru>\nbased on dark.css by Ivan Sagalaev\n*/\n\n.hljs {\n  display: block;\n  overflow-x: auto;\n  padding: 0.5em;\n  background: #3f3f3f;\n  color: #dcdcdc;\n  -webkit-text-size-adjust: none;\n}\n\n.hljs-keyword,\n.hljs-tag,\n.css .hljs-class,\n.css .hljs-id,\n.lisp .hljs-title,\n.nginx .hljs-title,\n.hljs-request,\n.hljs-status,\n.clojure .hljs-attribute {\n  color: #e3ceab;\n}\n\n.django .hljs-template_tag,\n.django .hljs-variable,\n.django .hljs-filter .hljs-argument {\n  color: #dcdcdc;\n}\n\n.hljs-number,\n.hljs-date {\n  color: #8cd0d3;\n}\n\n.dos .hljs-envvar,\n.dos .hljs-stream,\n.hljs-variable,\n.apache .hljs-sqbracket,\n.hljs-name {\n  color: #efdcbc;\n}\n\n.dos .hljs-flow,\n.diff .hljs-change,\n.python .exception,\n.python .hljs-built_in,\n.hljs-literal,\n.tex .hljs-special {\n  color: #efefaf;\n}\n\n.diff .hljs-chunk,\n.hljs-subst {\n  color: #8f8f8f;\n}\n\n.dos .hljs-keyword,\n.hljs-decorator,\n.hljs-title,\n.hljs-type,\n.diff .hljs-header,\n.ruby .hljs-class .hljs-parent,\n.apache .hljs-tag,\n.nginx .hljs-built_in,\n.tex .hljs-command,\n.hljs-prompt {\n  color: #efef8f;\n}\n\n.dos .hljs-winutils,\n.ruby .hljs-symbol,\n.ruby .hljs-symbol .hljs-string,\n.ruby .hljs-string {\n  color: #dca3a3;\n}\n\n.diff .hljs-deletion,\n.hljs-string,\n.hljs-tag .hljs-value,\n.hljs-preprocessor,\n.hljs-pragma,\n.hljs-built_in,\n.smalltalk .hljs-class,\n.smalltalk .hljs-localvars,\n.smalltalk .hljs-array,\n.css .hljs-rule .hljs-value,\n.hljs-attr_selector,\n.hljs-pseudo,\n.apache .hljs-cbracket,\n.tex .hljs-formula,\n.coffeescript .hljs-attribute {\n  color: #cc9393;\n}\n\n.hljs-shebang,\n.diff .hljs-addition,\n.hljs-comment,\n.hljs-annotation,\n.hljs-pi,\n.hljs-doctype {\n  color: #7f9f7f;\n}\n\n.coffeescript .javascript,\n.javascript .xml,\n.tex .hljs-formula,\n.xml .javascript,\n.xml .vbscript,\n.xml .css,\n.xml .hljs-cdata {\n  opacity: 0.5;\n}"
  },
  {
    "path": "talk/reveal.js/lib/font/league-gothic/LICENSE",
    "content": "SIL Open Font License (OFL)\nhttp://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL\n"
  },
  {
    "path": "talk/reveal.js/lib/font/league-gothic/league-gothic.css",
    "content": "@font-face {\n    font-family: 'League Gothic';\n    src: url('league-gothic.eot');\n    src: url('league-gothic.eot?#iefix') format('embedded-opentype'),\n         url('league-gothic.woff') format('woff'),\n         url('league-gothic.ttf') format('truetype');\n\n    font-weight: normal;\n    font-style: normal;\n}"
  },
  {
    "path": "talk/reveal.js/lib/font/source-sans-pro/LICENSE",
    "content": "SIL Open Font License\n\nCopyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name ‘Source’. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries.\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\n—————————————————————————————-\nSIL OPEN FONT LICENSE Version 1.1 - 26 February 2007\n—————————————————————————————-\n\nPREAMBLE\nThe 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.\n\nThe 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.\n\nDEFINITIONS\n“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.\n\n“Reserved Font Name” refers to any names specified as such after the copyright statement(s).\n\n“Original Version” refers to the collection of Font Software components as distributed by the Copyright Holder(s).\n\n“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.\n\n“Author” refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission 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:\n\n1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself.\n\n2) 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.\n\n3) 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.\n\n4) 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.\n\n5) 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.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are not met.\n\nDISCLAIMER\nTHE 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."
  },
  {
    "path": "talk/reveal.js/lib/font/source-sans-pro/source-sans-pro.css",
    "content": "@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-regular.eot');\n    src: url('source-sans-pro-regular.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-regular.woff') format('woff'),\n         url('source-sans-pro-regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-italic.eot');\n    src: url('source-sans-pro-italic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-italic.woff') format('woff'),\n         url('source-sans-pro-italic.ttf') format('truetype');\n    font-weight: normal;\n    font-style: italic;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibold.eot');\n    src: url('source-sans-pro-semibold.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibold.woff') format('woff'),\n         url('source-sans-pro-semibold.ttf') format('truetype');\n    font-weight: 600;\n    font-style: normal;\n}\n\n@font-face {\n    font-family: 'Source Sans Pro';\n    src: url('source-sans-pro-semibolditalic.eot');\n    src: url('source-sans-pro-semibolditalic.eot?#iefix') format('embedded-opentype'),\n         url('source-sans-pro-semibolditalic.woff') format('woff'),\n         url('source-sans-pro-semibolditalic.ttf') format('truetype');\n    font-weight: 600;\n    font-style: italic;\n}"
  },
  {
    "path": "talk/reveal.js/lib/js/classList.js",
    "content": "/*! @source http://purl.eligrey.com/github/classList.js/blob/master/classList.js*/\nif(typeof document!==\"undefined\"&&!(\"classList\" in document.createElement(\"a\"))){(function(j){var a=\"classList\",f=\"prototype\",m=(j.HTMLElement||j.Element)[f],b=Object,k=String[f].trim||function(){return this.replace(/^\\s+|\\s+$/g,\"\")},c=Array[f].indexOf||function(q){var p=0,o=this.length;for(;p<o;p++){if(p in this&&this[p]===q){return p}}return -1},n=function(o,p){this.name=o;this.code=DOMException[o];this.message=p},g=function(p,o){if(o===\"\"){throw new n(\"SYNTAX_ERR\",\"An invalid or illegal string was specified\")}if(/\\s/.test(o)){throw new n(\"INVALID_CHARACTER_ERR\",\"String contains an invalid character\")}return c.call(p,o)},d=function(s){var r=k.call(s.className),q=r?r.split(/\\s+/):[],p=0,o=q.length;for(;p<o;p++){this.push(q[p])}this._updateClassName=function(){s.className=this.toString()}},e=d[f]=[],i=function(){return new d(this)};n[f]=Error[f];e.item=function(o){return this[o]||null};e.contains=function(o){o+=\"\";return g(this,o)!==-1};e.add=function(o){o+=\"\";if(g(this,o)===-1){this.push(o);this._updateClassName()}};e.remove=function(p){p+=\"\";var o=g(this,p);if(o!==-1){this.splice(o,1);this._updateClassName()}};e.toggle=function(o){o+=\"\";if(g(this,o)===-1){this.add(o)}else{this.remove(o)}};e.toString=function(){return this.join(\" \")};if(b.defineProperty){var l={get:i,enumerable:true,configurable:true};try{b.defineProperty(m,a,l)}catch(h){if(h.number===-2146823252){l.enumerable=false;b.defineProperty(m,a,l)}}}else{if(b[f].__defineGetter__){m.__defineGetter__(a,i)}}}(self))};"
  },
  {
    "path": "talk/reveal.js/lib/js/html5shiv.js",
    "content": "document.createElement('header');\ndocument.createElement('nav');\ndocument.createElement('section');\ndocument.createElement('article');\ndocument.createElement('aside');\ndocument.createElement('footer');\ndocument.createElement('hgroup');"
  },
  {
    "path": "talk/reveal.js/package.json",
    "content": "{\n  \"name\": \"reveal.js\",\n  \"version\": \"3.2.0\",\n  \"description\": \"The HTML Presentation Framework\",\n  \"homepage\": \"http://lab.hakim.se/reveal-js\",\n  \"subdomain\": \"revealjs\",\n  \"main\": \"js/reveal.js\",\n  \"scripts\": {\n    \"test\": \"grunt test\",\n    \"start\": \"grunt serve\"\n  },\n  \"author\": {\n    \"name\": \"Hakim El Hattab\",\n    \"email\": \"hakim.elhattab@gmail.com\",\n    \"web\": \"http://hakim.se\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/hakimel/reveal.js.git\"\n  },\n  \"engines\": {\n    \"node\": \"~4.1.1\"\n  },\n  \"dependencies\": {\n    \"express\": \"~4.13.3\",\n    \"mustache\": \"^2.1.3\",\n    \"socket.io\": \"~1.3.7\",\n    \"underscore\": \"~1.8.3\"\n  },\n  \"devDependencies\": {\n    \"grunt-contrib-qunit\": \"~0.7.0\",\n    \"grunt-contrib-jshint\": \"~0.11.3\",\n    \"grunt-contrib-cssmin\": \"~0.14.0\",\n    \"grunt-contrib-uglify\": \"~0.9.2\",\n    \"grunt-contrib-watch\": \"~0.6.1\",\n    \"grunt-sass\": \"~1.1.0-beta\",\n    \"grunt-contrib-connect\": \"~0.11.2\",\n    \"grunt-autoprefixer\": \"~3.0.3\",\n    \"grunt-zip\": \"~0.17.1\",\n    \"grunt\": \"~0.4.5\",\n    \"node-sass\": \"~3.3.3\"\n  },\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "talk/reveal.js/plugin/highlight/highlight.js",
    "content": "// START CUSTOM REVEAL.JS INTEGRATION\n(function() {\n\tif( typeof window.addEventListener === 'function' ) {\n\t\tvar hljs_nodes = document.querySelectorAll( 'pre code' );\n\n\t\tfor( var i = 0, len = hljs_nodes.length; i < len; i++ ) {\n\t\t\tvar element = hljs_nodes[i];\n\n\t\t\t// trim whitespace if data-trim attribute is present\n\t\t\tif( element.hasAttribute( 'data-trim' ) && typeof element.innerHTML.trim === 'function' ) {\n\t\t\t\telement.innerHTML = element.innerHTML.trim();\n\t\t\t}\n\n\t\t\t// Now escape html unless prevented by author\n\t\t\tif( ! element.hasAttribute( 'data-noescape' )) {\n\t\t\t\telement.innerHTML = element.innerHTML.replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\");\n\t\t\t}\n\n\t\t\t// re-highlight when focus is lost (for edited code)\n\t\t\telement.addEventListener( 'focusout', function( event ) {\n\t\t\t\thljs.highlightBlock( event.currentTarget );\n\t\t\t}, false );\n\t\t}\n\t}\n})();\n// END CUSTOM REVEAL.JS INTEGRATION\n\n// highlight.js v8.9.1 with support for all available languages\n\n!function(e){\"undefined\"!=typeof exports?e(exports):(window.hljs=e({}),\"function\"==typeof define&&define.amd&&define(\"hljs\",[],function(){return window.hljs}))}(function(e){function n(e){return e.replace(/&/gm,\"&amp;\").replace(/</gm,\"&lt;\").replace(/>/gm,\"&gt;\")}function t(e){return e.nodeName.toLowerCase()}function r(e,n){var t=e&&e.exec(n);return t&&0==t.index}function a(e){return/^(no-?highlight|plain|text)$/i.test(e)}function i(e){var n,t,r,i=e.className+\" \";if(i+=e.parentNode?e.parentNode.className:\"\",t=/\\blang(?:uage)?-([\\w-]+)\\b/i.exec(i))return w(t[1])?t[1]:\"no-highlight\";for(i=i.split(/\\s+/),n=0,r=i.length;r>n;n++)if(w(i[n])||a(i[n]))return i[n]}function o(e,n){var t,r={};for(t in e)r[t]=e[t];if(n)for(t in n)r[t]=n[t];return r}function u(e){var n=[];return function r(e,a){for(var i=e.firstChild;i;i=i.nextSibling)3==i.nodeType?a+=i.nodeValue.length:1==i.nodeType&&(n.push({event:\"start\",offset:a,node:i}),a=r(i,a),t(i).match(/br|hr|img|input/)||n.push({event:\"stop\",offset:a,node:i}));return a}(e,0),n}function c(e,r,a){function i(){return e.length&&r.length?e[0].offset!=r[0].offset?e[0].offset<r[0].offset?e:r:\"start\"==r[0].event?e:r:e.length?e:r}function o(e){function r(e){return\" \"+e.nodeName+'=\"'+n(e.value)+'\"'}l+=\"<\"+t(e)+Array.prototype.map.call(e.attributes,r).join(\"\")+\">\"}function u(e){l+=\"</\"+t(e)+\">\"}function c(e){(\"start\"==e.event?o:u)(e.node)}for(var s=0,l=\"\",f=[];e.length||r.length;){var g=i();if(l+=n(a.substr(s,g[0].offset-s)),s=g[0].offset,g==e){f.reverse().forEach(u);do c(g.splice(0,1)[0]),g=i();while(g==e&&g.length&&g[0].offset==s);f.reverse().forEach(o)}else\"start\"==g[0].event?f.push(g[0].node):f.pop(),c(g.splice(0,1)[0])}return l+n(a.substr(s))}function s(e){function n(e){return e&&e.source||e}function t(t,r){return new RegExp(n(t),\"m\"+(e.cI?\"i\":\"\")+(r?\"g\":\"\"))}function r(a,i){if(!a.compiled){if(a.compiled=!0,a.k=a.k||a.bK,a.k){var u={},c=function(n,t){e.cI&&(t=t.toLowerCase()),t.split(\" \").forEach(function(e){var t=e.split(\"|\");u[t[0]]=[n,t[1]?Number(t[1]):1]})};\"string\"==typeof a.k?c(\"keyword\",a.k):Object.keys(a.k).forEach(function(e){c(e,a.k[e])}),a.k=u}a.lR=t(a.l||/\\b\\w+\\b/,!0),i&&(a.bK&&(a.b=\"\\\\b(\"+a.bK.split(\" \").join(\"|\")+\")\\\\b\"),a.b||(a.b=/\\B|\\b/),a.bR=t(a.b),a.e||a.eW||(a.e=/\\B|\\b/),a.e&&(a.eR=t(a.e)),a.tE=n(a.e)||\"\",a.eW&&i.tE&&(a.tE+=(a.e?\"|\":\"\")+i.tE)),a.i&&(a.iR=t(a.i)),void 0===a.r&&(a.r=1),a.c||(a.c=[]);var s=[];a.c.forEach(function(e){e.v?e.v.forEach(function(n){s.push(o(e,n))}):s.push(\"self\"==e?a:e)}),a.c=s,a.c.forEach(function(e){r(e,a)}),a.starts&&r(a.starts,i);var l=a.c.map(function(e){return e.bK?\"\\\\.?(\"+e.b+\")\\\\.?\":e.b}).concat([a.tE,a.i]).map(n).filter(Boolean);a.t=l.length?t(l.join(\"|\"),!0):{exec:function(){return null}}}}r(e)}function l(e,t,a,i){function o(e,n){for(var t=0;t<n.c.length;t++)if(r(n.c[t].bR,e))return n.c[t]}function u(e,n){if(r(e.eR,n)){for(;e.endsParent&&e.parent;)e=e.parent;return e}return e.eW?u(e.parent,n):void 0}function c(e,n){return!a&&r(n.iR,e)}function g(e,n){var t=N.cI?n[0].toLowerCase():n[0];return e.k.hasOwnProperty(t)&&e.k[t]}function h(e,n,t,r){var a=r?\"\":E.classPrefix,i='<span class=\"'+a,o=t?\"\":\"</span>\";return i+=e+'\">',i+n+o}function p(){if(!L.k)return n(M);var e=\"\",t=0;L.lR.lastIndex=0;for(var r=L.lR.exec(M);r;){e+=n(M.substr(t,r.index-t));var a=g(L,r);a?(B+=a[1],e+=h(a[0],n(r[0]))):e+=n(r[0]),t=L.lR.lastIndex,r=L.lR.exec(M)}return e+n(M.substr(t))}function d(){var e=\"string\"==typeof L.sL;if(e&&!x[L.sL])return n(M);var t=e?l(L.sL,M,!0,y[L.sL]):f(M,L.sL.length?L.sL:void 0);return L.r>0&&(B+=t.r),e&&(y[L.sL]=t.top),h(t.language,t.value,!1,!0)}function b(){return void 0!==L.sL?d():p()}function v(e,t){var r=e.cN?h(e.cN,\"\",!0):\"\";e.rB?(k+=r,M=\"\"):e.eB?(k+=n(t)+r,M=\"\"):(k+=r,M=t),L=Object.create(e,{parent:{value:L}})}function m(e,t){if(M+=e,void 0===t)return k+=b(),0;var r=o(t,L);if(r)return k+=b(),v(r,t),r.rB?0:t.length;var a=u(L,t);if(a){var i=L;i.rE||i.eE||(M+=t),k+=b();do L.cN&&(k+=\"</span>\"),B+=L.r,L=L.parent;while(L!=a.parent);return i.eE&&(k+=n(t)),M=\"\",a.starts&&v(a.starts,\"\"),i.rE?0:t.length}if(c(t,L))throw new Error('Illegal lexeme \"'+t+'\" for mode \"'+(L.cN||\"<unnamed>\")+'\"');return M+=t,t.length||1}var N=w(e);if(!N)throw new Error('Unknown language: \"'+e+'\"');s(N);var R,L=i||N,y={},k=\"\";for(R=L;R!=N;R=R.parent)R.cN&&(k=h(R.cN,\"\",!0)+k);var M=\"\",B=0;try{for(var C,j,I=0;;){if(L.t.lastIndex=I,C=L.t.exec(t),!C)break;j=m(t.substr(I,C.index-I),C[0]),I=C.index+j}for(m(t.substr(I)),R=L;R.parent;R=R.parent)R.cN&&(k+=\"</span>\");return{r:B,value:k,language:e,top:L}}catch(O){if(-1!=O.message.indexOf(\"Illegal\"))return{r:0,value:n(t)};throw O}}function f(e,t){t=t||E.languages||Object.keys(x);var r={r:0,value:n(e)},a=r;return t.forEach(function(n){if(w(n)){var t=l(n,e,!1);t.language=n,t.r>a.r&&(a=t),t.r>r.r&&(a=r,r=t)}}),a.language&&(r.second_best=a),r}function g(e){return E.tabReplace&&(e=e.replace(/^((<[^>]+>|\\t)+)/gm,function(e,n){return n.replace(/\\t/g,E.tabReplace)})),E.useBR&&(e=e.replace(/\\n/g,\"<br>\")),e}function h(e,n,t){var r=n?R[n]:t,a=[e.trim()];return e.match(/\\bhljs\\b/)||a.push(\"hljs\"),-1===e.indexOf(r)&&a.push(r),a.join(\" \").trim()}function p(e){var n=i(e);if(!a(n)){var t;E.useBR?(t=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\"),t.innerHTML=e.innerHTML.replace(/\\n/g,\"\").replace(/<br[ \\/]*>/g,\"\\n\")):t=e;var r=t.textContent,o=n?l(n,r,!0):f(r),s=u(t);if(s.length){var p=document.createElementNS(\"http://www.w3.org/1999/xhtml\",\"div\");p.innerHTML=o.value,o.value=c(s,u(p),r)}o.value=g(o.value),e.innerHTML=o.value,e.className=h(e.className,n,o.language),e.result={language:o.language,re:o.r},o.second_best&&(e.second_best={language:o.second_best.language,re:o.second_best.r})}}function d(e){E=o(E,e)}function b(){if(!b.called){b.called=!0;var e=document.querySelectorAll(\"pre code\");Array.prototype.forEach.call(e,p)}}function v(){addEventListener(\"DOMContentLoaded\",b,!1),addEventListener(\"load\",b,!1)}function m(n,t){var r=x[n]=t(e);r.aliases&&r.aliases.forEach(function(e){R[e]=n})}function N(){return Object.keys(x)}function w(e){return e=(e||\"\").toLowerCase(),x[e]||x[R[e]]}var E={classPrefix:\"hljs-\",tabReplace:null,useBR:!1,languages:void 0},x={},R={};return e.highlight=l,e.highlightAuto=f,e.fixMarkup=g,e.highlightBlock=p,e.configure=d,e.initHighlighting=b,e.initHighlightingOnLoad=v,e.registerLanguage=m,e.listLanguages=N,e.getLanguage=w,e.inherit=o,e.IR=\"[a-zA-Z]\\\\w*\",e.UIR=\"[a-zA-Z_]\\\\w*\",e.NR=\"\\\\b\\\\d+(\\\\.\\\\d+)?\",e.CNR=\"(\\\\b0[xX][a-fA-F0-9]+|(\\\\b\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)([eE][-+]?\\\\d+)?)\",e.BNR=\"\\\\b(0b[01]+)\",e.RSR=\"!|!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\?|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",e.BE={b:\"\\\\\\\\[\\\\s\\\\S]\",r:0},e.ASM={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE]},e.QSM={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE]},e.PWM={b:/\\b(a|an|the|are|I|I'm|isn't|don't|doesn't|won't|but|just|should|pretty|simply|enough|gonna|going|wtf|so|such|will|you|your|like)\\b/},e.C=function(n,t,r){var a=e.inherit({cN:\"comment\",b:n,e:t,c:[]},r||{});return a.c.push(e.PWM),a.c.push({cN:\"doctag\",b:\"(?:TODO|FIXME|NOTE|BUG|XXX):\",r:0}),a},e.CLCM=e.C(\"//\",\"$\"),e.CBCM=e.C(\"/\\\\*\",\"\\\\*/\"),e.HCM=e.C(\"#\",\"$\"),e.NM={cN:\"number\",b:e.NR,r:0},e.CNM={cN:\"number\",b:e.CNR,r:0},e.BNM={cN:\"number\",b:e.BNR,r:0},e.CSSNM={cN:\"number\",b:e.NR+\"(%|em|ex|ch|rem|vw|vh|vmin|vmax|cm|mm|in|pt|pc|px|deg|grad|rad|turn|s|ms|Hz|kHz|dpi|dpcm|dppx)?\",r:0},e.RM={cN:\"regexp\",b:/\\//,e:/\\/[gimuy]*/,i:/\\n/,c:[e.BE,{b:/\\[/,e:/\\]/,r:0,c:[e.BE]}]},e.TM={cN:\"title\",b:e.IR,r:0},e.UTM={cN:\"title\",b:e.UIR,r:0},e});hljs.registerLanguage(\"cs\",function(e){var r=\"abstract as base bool break byte case catch char checked const continue decimal dynamic default delegate do double else enum event explicit extern false finally fixed float for foreach goto if implicit in int interface internal is lock long null when object operator out override params private protected public readonly ref sbyte sealed short sizeof stackalloc static string struct switch this true try typeof uint ulong unchecked unsafe ushort using virtual volatile void while async protected public private internal ascending descending from get group into join let orderby partial select set value var where yield\",t=e.IR+\"(<\"+e.IR+\">)?\";return{aliases:[\"csharp\"],k:r,i:/::/,c:[e.C(\"///\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",v:[{b:\"///\",r:0},{b:\"<!--|-->\"},{b:\"</?\",e:\">\"}]}]}),e.CLCM,e.CBCM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line region endregion pragma checksum\"},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},e.ASM,e.QSM,e.CNM,{bK:\"class interface\",e:/[{;=]/,i:/[^\\s:]/,c:[e.TM,e.CLCM,e.CBCM]},{bK:\"namespace\",e:/[{;=]/,i:/[^\\s:]/,c:[{cN:\"title\",b:\"[a-zA-Z](\\\\.?\\\\w)*\",r:0},e.CLCM,e.CBCM]},{bK:\"new return throw await\",r:0},{cN:\"function\",b:\"(\"+t+\"\\\\s+)+\"+e.IR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:r,c:[{b:e.IR+\"\\\\s*\\\\(\",rB:!0,c:[e.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]}]}});hljs.registerLanguage(\"tp\",function(O){var R={cN:\"number\",b:\"[1-9][0-9]*\",r:0},E={cN:\"comment\",b:\":[^\\\\]]+\"},T={cN:\"built_in\",b:\"(AR|P|PAYLOAD|PR|R|SR|RSR|LBL|VR|UALM|MESSAGE|UTOOL|UFRAME|TIMER|    TIMER_OVERFLOW|JOINT_MAX_SPEED|RESUME_PROG|DIAG_REC)\\\\[\",e:\"\\\\]\",c:[\"self\",R,E]},N={cN:\"built_in\",b:\"(AI|AO|DI|DO|F|RI|RO|UI|UO|GI|GO|SI|SO)\\\\[\",e:\"\\\\]\",c:[\"self\",R,O.QSM,E]};return{k:{keyword:\"ABORT ACC ADJUST AND AP_LD BREAK CALL CNT COL CONDITION CONFIG DA DB DIV DETECT ELSE END ENDFOR ERR_NUM ERROR_PROG FINE FOR GP GUARD INC IF JMP LINEAR_MAX_SPEED LOCK MOD MONITOR OFFSET Offset OR OVERRIDE PAUSE PREG PTH RT_LD RUN SELECT SKIP Skip TA TB TO TOOL_OFFSET Tool_Offset UF UT UFRAME_NUM UTOOL_NUM UNLOCK WAIT X Y Z W P R STRLEN SUBSTR FINDSTR VOFFSET\",constant:\"ON OFF max_speed LPOS JPOS ENABLE DISABLE START STOP RESET\"},c:[T,N,{cN:\"keyword\",b:\"/(PROG|ATTR|MN|POS|END)\\\\b\"},{cN:\"keyword\",b:\"(CALL|RUN|POINT_LOGIC|LBL)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(ACC|CNT|Skip|Offset|PSPD|RT_LD|AP_LD|Tool_Offset)\"},{cN:\"number\",b:\"\\\\d+(sec|msec|mm/sec|cm/min|inch/min|deg/sec|mm|in|cm)?\\\\b\",r:0},O.C(\"//\",\"[;$]\"),O.C(\"!\",\"[;$]\"),O.C(\"--eg:\",\"$\"),O.QSM,{cN:\"string\",b:\"'\",e:\"'\"},O.CNM,{cN:\"variable\",b:\"\\\\$[A-Za-z0-9_]+\"}]}});hljs.registerLanguage(\"irpf90\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure begin_provider &begin_provider end_provider begin_shell end_shell begin_template end_template subst assert touch soft_touch provide no_dep free irp_if irp_else irp_endif irp_write irp_read\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image IRP_ALIGN irp_here\"};return{cI:!0,k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),e.C(\"begin_doc\",\"end_doc\",{r:10}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"groovy\",function(e){return{k:{typename:\"byte short char int long boolean float double void\",literal:\"true false null\",keyword:\"def as in assert trait super this abstract static volatile transient public private protected synchronized final class interface enum if else for while switch case break default continue throw throws try catch finally implements extends new import package return instanceof\"},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},{cN:\"string\",b:\"'''\",e:\"'''\"},{cN:\"string\",b:\"\\\\$/\",e:\"/\\\\$\",r:10},e.ASM,{cN:\"regexp\",b:/~?\\/[^\\/\\n]+\\//,c:[e.BE]},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.BNM,{cN:\"class\",bK:\"class interface trait enum\",e:\"{\",i:\":\",c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{cN:\"string\",b:/[^\\?]{0}[A-Za-z0-9_$]+ *:/},{b:/\\?/,e:/\\:/},{cN:\"label\",b:\"^\\\\s*[A-Za-z0-9_$]+:\",r:0}],i:/#/}});hljs.registerLanguage(\"stata\",function(e){return{aliases:[\"do\",\"ado\"],cI:!0,k:\"if else in foreach for forv forva forval forvalu forvalue forvalues by bys bysort xi quietly qui capture about ac ac_7 acprplot acprplot_7 adjust ado adopath adoupdate alpha ameans an ano anov anova anova_estat anova_terms anovadef aorder ap app appe appen append arch arch_dr arch_estat arch_p archlm areg areg_p args arima arima_dr arima_estat arima_p as asmprobit asmprobit_estat asmprobit_lf asmprobit_mfx__dlg asmprobit_p ass asse asser assert avplot avplot_7 avplots avplots_7 bcskew0 bgodfrey binreg bip0_lf biplot bipp_lf bipr_lf bipr_p biprobit bitest bitesti bitowt blogit bmemsize boot bootsamp bootstrap bootstrap_8 boxco_l boxco_p boxcox boxcox_6 boxcox_p bprobit br break brier bro brow brows browse brr brrstat bs bs_7 bsampl_w bsample bsample_7 bsqreg bstat bstat_7 bstat_8 bstrap bstrap_7 ca ca_estat ca_p cabiplot camat canon canon_8 canon_8_p canon_estat canon_p cap caprojection capt captu captur capture cat cc cchart cchart_7 cci cd censobs_table centile cf char chdir checkdlgfiles checkestimationsample checkhlpfiles checksum chelp ci cii cl class classutil clear cli clis clist clo clog clog_lf clog_p clogi clogi_sw clogit clogit_lf clogit_p clogitp clogl_sw cloglog clonevar clslistarray cluster cluster_measures cluster_stop cluster_tree cluster_tree_8 clustermat cmdlog cnr cnre cnreg cnreg_p cnreg_sw cnsreg codebook collaps4 collapse colormult_nb colormult_nw compare compress conf confi confir confirm conren cons const constr constra constrai constrain constraint continue contract copy copyright copysource cor corc corr corr2data corr_anti corr_kmo corr_smc corre correl correla correlat correlate corrgram cou coun count cox cox_p cox_sw coxbase coxhaz coxvar cprplot cprplot_7 crc cret cretu cretur creturn cross cs cscript cscript_log csi ct ct_is ctset ctst_5 ctst_st cttost cumsp cumsp_7 cumul cusum cusum_7 cutil d datasig datasign datasigna datasignat datasignatu datasignatur datasignature datetof db dbeta de dec deco decod decode deff des desc descr descri describ describe destring dfbeta dfgls dfuller di di_g dir dirstats dis discard disp disp_res disp_s displ displa display distinct do doe doed doedi doedit dotplot dotplot_7 dprobit drawnorm drop ds ds_util dstdize duplicates durbina dwstat dydx e ed edi edit egen eivreg emdef en enc enco encod encode eq erase ereg ereg_lf ereg_p ereg_sw ereghet ereghet_glf ereghet_glf_sh ereghet_gp ereghet_ilf ereghet_ilf_sh ereghet_ip eret eretu eretur ereturn err erro error est est_cfexist est_cfname est_clickable est_expand est_hold est_table est_unhold est_unholdok estat estat_default estat_summ estat_vce_only esti estimates etodow etof etomdy ex exi exit expand expandcl fac fact facto factor factor_estat factor_p factor_pca_rotated factor_rotate factormat fcast fcast_compute fcast_graph fdades fdadesc fdadescr fdadescri fdadescrib fdadescribe fdasav fdasave fdause fh_st file open file read file close file filefilter fillin find_hlp_file findfile findit findit_7 fit fl fli flis flist for5_0 form forma format fpredict frac_154 frac_adj frac_chk frac_cox frac_ddp frac_dis frac_dv frac_in frac_mun frac_pp frac_pq frac_pv frac_wgt frac_xo fracgen fracplot fracplot_7 fracpoly fracpred fron_ex fron_hn fron_p fron_tn fron_tn2 frontier ftodate ftoe ftomdy ftowdate g gamhet_glf gamhet_gp gamhet_ilf gamhet_ip gamma gamma_d2 gamma_p gamma_sw gammahet gdi_hexagon gdi_spokes ge gen gene gener genera generat generate genrank genstd genvmean gettoken gl gladder gladder_7 glim_l01 glim_l02 glim_l03 glim_l04 glim_l05 glim_l06 glim_l07 glim_l08 glim_l09 glim_l10 glim_l11 glim_l12 glim_lf glim_mu glim_nw1 glim_nw2 glim_nw3 glim_p glim_v1 glim_v2 glim_v3 glim_v4 glim_v5 glim_v6 glim_v7 glm glm_6 glm_p glm_sw glmpred glo glob globa global glogit glogit_8 glogit_p gmeans gnbre_lf gnbreg gnbreg_5 gnbreg_p gomp_lf gompe_sw gomper_p gompertz gompertzhet gomphet_glf gomphet_glf_sh gomphet_gp gomphet_ilf gomphet_ilf_sh gomphet_ip gphdot gphpen gphprint gprefs gprobi_p gprobit gprobit_8 gr gr7 gr_copy gr_current gr_db gr_describe gr_dir gr_draw gr_draw_replay gr_drop gr_edit gr_editviewopts gr_example gr_example2 gr_export gr_print gr_qscheme gr_query gr_read gr_rename gr_replay gr_save gr_set gr_setscheme gr_table gr_undo gr_use graph graph7 grebar greigen greigen_7 greigen_8 grmeanby grmeanby_7 gs_fileinfo gs_filetype gs_graphinfo gs_stat gsort gwood h hadimvo hareg hausman haver he heck_d2 heckma_p heckman heckp_lf heckpr_p heckprob hel help hereg hetpr_lf hetpr_p hetprob hettest hexdump hilite hist hist_7 histogram hlogit hlu hmeans hotel hotelling hprobit hreg hsearch icd9 icd9_ff icd9p iis impute imtest inbase include inf infi infil infile infix inp inpu input ins insheet insp inspe inspec inspect integ inten intreg intreg_7 intreg_p intrg2_ll intrg_ll intrg_ll2 ipolate iqreg ir irf irf_create irfm iri is_svy is_svysum isid istdize ivprob_1_lf ivprob_lf ivprobit ivprobit_p ivreg ivreg_footnote ivtob_1_lf ivtob_lf ivtobit ivtobit_p jackknife jacknife jknife jknife_6 jknife_8 jkstat joinby kalarma1 kap kap_3 kapmeier kappa kapwgt kdensity kdensity_7 keep ksm ksmirnov ktau kwallis l la lab labe label labelbook ladder levels levelsof leverage lfit lfit_p li lincom line linktest lis list lloghet_glf lloghet_glf_sh lloghet_gp lloghet_ilf lloghet_ilf_sh lloghet_ip llogi_sw llogis_p llogist llogistic llogistichet lnorm_lf lnorm_sw lnorma_p lnormal lnormalhet lnormhet_glf lnormhet_glf_sh lnormhet_gp lnormhet_ilf lnormhet_ilf_sh lnormhet_ip lnskew0 loadingplot loc loca local log logi logis_lf logistic logistic_p logit logit_estat logit_p loglogs logrank loneway lookfor lookup lowess lowess_7 lpredict lrecomp lroc lroc_7 lrtest ls lsens lsens_7 lsens_x lstat ltable ltable_7 ltriang lv lvr2plot lvr2plot_7 m ma mac macr macro makecns man manova manova_estat manova_p manovatest mantel mark markin markout marksample mat mat_capp mat_order mat_put_rr mat_rapp mata mata_clear mata_describe mata_drop mata_matdescribe mata_matsave mata_matuse mata_memory mata_mlib mata_mosave mata_rename mata_which matalabel matcproc matlist matname matr matri matrix matrix_input__dlg matstrik mcc mcci md0_ md1_ md1debug_ md2_ md2debug_ mds mds_estat mds_p mdsconfig mdslong mdsmat mdsshepard mdytoe mdytof me_derd mean means median memory memsize meqparse mer merg merge mfp mfx mhelp mhodds minbound mixed_ll mixed_ll_reparm mkassert mkdir mkmat mkspline ml ml_5 ml_adjs ml_bhhhs ml_c_d ml_check ml_clear ml_cnt ml_debug ml_defd ml_e0 ml_e0_bfgs ml_e0_cycle ml_e0_dfp ml_e0i ml_e1 ml_e1_bfgs ml_e1_bhhh ml_e1_cycle ml_e1_dfp ml_e2 ml_e2_cycle ml_ebfg0 ml_ebfr0 ml_ebfr1 ml_ebh0q ml_ebhh0 ml_ebhr0 ml_ebr0i ml_ecr0i ml_edfp0 ml_edfr0 ml_edfr1 ml_edr0i ml_eds ml_eer0i ml_egr0i ml_elf ml_elf_bfgs ml_elf_bhhh ml_elf_cycle ml_elf_dfp ml_elfi ml_elfs ml_enr0i ml_enrr0 ml_erdu0 ml_erdu0_bfgs ml_erdu0_bhhh ml_erdu0_bhhhq ml_erdu0_cycle ml_erdu0_dfp ml_erdu0_nrbfgs ml_exde ml_footnote ml_geqnr ml_grad0 ml_graph ml_hbhhh ml_hd0 ml_hold ml_init ml_inv ml_log ml_max ml_mlout ml_mlout_8 ml_model ml_nb0 ml_opt ml_p ml_plot ml_query ml_rdgrd ml_repor ml_s_e ml_score ml_searc ml_technique ml_unhold mleval mlf_ mlmatbysum mlmatsum mlog mlogi mlogit mlogit_footnote mlogit_p mlopts mlsum mlvecsum mnl0_ mor more mov move mprobit mprobit_lf mprobit_p mrdu0_ mrdu1_ mvdecode mvencode mvreg mvreg_estat n nbreg nbreg_al nbreg_lf nbreg_p nbreg_sw nestreg net newey newey_7 newey_p news nl nl_7 nl_9 nl_9_p nl_p nl_p_7 nlcom nlcom_p nlexp2 nlexp2_7 nlexp2a nlexp2a_7 nlexp3 nlexp3_7 nlgom3 nlgom3_7 nlgom4 nlgom4_7 nlinit nllog3 nllog3_7 nllog4 nllog4_7 nlog_rd nlogit nlogit_p nlogitgen nlogittree nlpred no nobreak noi nois noisi noisil noisily note notes notes_dlg nptrend numlabel numlist odbc old_ver olo olog ologi ologi_sw ologit ologit_p ologitp on one onew onewa oneway op_colnm op_comp op_diff op_inv op_str opr opro oprob oprob_sw oprobi oprobi_p oprobit oprobitp opts_exclusive order orthog orthpoly ou out outf outfi outfil outfile outs outsh outshe outshee outsheet ovtest pac pac_7 palette parse parse_dissim pause pca pca_8 pca_display pca_estat pca_p pca_rotate pcamat pchart pchart_7 pchi pchi_7 pcorr pctile pentium pergram pergram_7 permute permute_8 personal peto_st pkcollapse pkcross pkequiv pkexamine pkexamine_7 pkshape pksumm pksumm_7 pl plo plot plugin pnorm pnorm_7 poisgof poiss_lf poiss_sw poisso_p poisson poisson_estat post postclose postfile postutil pperron pr prais prais_e prais_e2 prais_p predict predictnl preserve print pro prob probi probit probit_estat probit_p proc_time procoverlay procrustes procrustes_estat procrustes_p profiler prog progr progra program prop proportion prtest prtesti pwcorr pwd q\\\\s qby qbys qchi qchi_7 qladder qladder_7 qnorm qnorm_7 qqplot qqplot_7 qreg qreg_c qreg_p qreg_sw qu quadchk quantile quantile_7 que quer query range ranksum ratio rchart rchart_7 rcof recast reclink recode reg reg3 reg3_p regdw regr regre regre_p2 regres regres_p regress regress_estat regriv_p remap ren rena renam rename renpfix repeat replace report reshape restore ret retu retur return rm rmdir robvar roccomp roccomp_7 roccomp_8 rocf_lf rocfit rocfit_8 rocgold rocplot rocplot_7 roctab roctab_7 rolling rologit rologit_p rot rota rotat rotate rotatemat rreg rreg_p ru run runtest rvfplot rvfplot_7 rvpplot rvpplot_7 sa safesum sample sampsi sav save savedresults saveold sc sca scal scala scalar scatter scm_mine sco scob_lf scob_p scobi_sw scobit scor score scoreplot scoreplot_help scree screeplot screeplot_help sdtest sdtesti se search separate seperate serrbar serrbar_7 serset set set_defaults sfrancia sh she shel shell shewhart shewhart_7 signestimationsample signrank signtest simul simul_7 simulate simulate_8 sktest sleep slogit slogit_d2 slogit_p smooth snapspan so sor sort spearman spikeplot spikeplot_7 spikeplt spline_x split sqreg sqreg_p sret sretu sretur sreturn ssc st st_ct st_hc st_hcd st_hcd_sh st_is st_issys st_note st_promo st_set st_show st_smpl st_subid stack statsby statsby_8 stbase stci stci_7 stcox stcox_estat stcox_fr stcox_fr_ll stcox_p stcox_sw stcoxkm stcoxkm_7 stcstat stcurv stcurve stcurve_7 stdes stem stepwise stereg stfill stgen stir stjoin stmc stmh stphplot stphplot_7 stphtest stphtest_7 stptime strate strate_7 streg streg_sw streset sts sts_7 stset stsplit stsum sttocc sttoct stvary stweib su suest suest_8 sum summ summa summar summari summariz summarize sunflower sureg survcurv survsum svar svar_p svmat svy svy_disp svy_dreg svy_est svy_est_7 svy_estat svy_get svy_gnbreg_p svy_head svy_header svy_heckman_p svy_heckprob_p svy_intreg_p svy_ivreg_p svy_logistic_p svy_logit_p svy_mlogit_p svy_nbreg_p svy_ologit_p svy_oprobit_p svy_poisson_p svy_probit_p svy_regress_p svy_sub svy_sub_7 svy_x svy_x_7 svy_x_p svydes svydes_8 svygen svygnbreg svyheckman svyheckprob svyintreg svyintreg_7 svyintrg svyivreg svylc svylog_p svylogit svymarkout svymarkout_8 svymean svymlog svymlogit svynbreg svyolog svyologit svyoprob svyoprobit svyopts svypois svypois_7 svypoisson svyprobit svyprobt svyprop svyprop_7 svyratio svyreg svyreg_p svyregress svyset svyset_7 svyset_8 svytab svytab_7 svytest svytotal sw sw_8 swcnreg swcox swereg swilk swlogis swlogit swologit swoprbt swpois swprobit swqreg swtobit swweib symmetry symmi symplot symplot_7 syntax sysdescribe sysdir sysuse szroeter ta tab tab1 tab2 tab_or tabd tabdi tabdis tabdisp tabi table tabodds tabodds_7 tabstat tabu tabul tabula tabulat tabulate te tempfile tempname tempvar tes test testnl testparm teststd tetrachoric time_it timer tis tob tobi tobit tobit_p tobit_sw token tokeni tokeniz tokenize tostring total translate translator transmap treat_ll treatr_p treatreg trim trnb_cons trnb_mean trpoiss_d2 trunc_ll truncr_p truncreg tsappend tset tsfill tsline tsline_ex tsreport tsrevar tsrline tsset tssmooth tsunab ttest ttesti tut_chk tut_wait tutorial tw tware_st two twoway twoway__fpfit_serset twoway__function_gen twoway__histogram_gen twoway__ipoint_serset twoway__ipoints_serset twoway__kdensity_gen twoway__lfit_serset twoway__normgen_gen twoway__pci_serset twoway__qfit_serset twoway__scatteri_serset twoway__sunflower_gen twoway_ksm_serset ty typ type typeof u unab unabbrev unabcmd update us use uselabel var var_mkcompanion var_p varbasic varfcast vargranger varirf varirf_add varirf_cgraph varirf_create varirf_ctable varirf_describe varirf_dir varirf_drop varirf_erase varirf_graph varirf_ograph varirf_rename varirf_set varirf_table varlist varlmar varnorm varsoc varstable varstable_w varstable_w2 varwle vce vec vec_fevd vec_mkphi vec_p vec_p_w vecirf_create veclmar veclmar_w vecnorm vecnorm_w vecrank vecstable verinst vers versi versio version view viewsource vif vwls wdatetof webdescribe webseek webuse weib1_lf weib2_lf weib_lf weib_lf0 weibhet_glf weibhet_glf_sh weibhet_glfa weibhet_glfa_sh weibhet_gp weibhet_ilf weibhet_ilf_sh weibhet_ilfa weibhet_ilfa_sh weibhet_ip weibu_sw weibul_p weibull weibull_c weibull_s weibullhet wh whelp whi which whil while wilc_st wilcoxon win wind windo window winexec wntestb wntestb_7 wntestq xchart xchart_7 xcorr xcorr_7 xi xi_6 xmlsav xmlsave xmluse xpose xsh xshe xshel xshell xt_iis xt_tis xtab_p xtabond xtbin_p xtclog xtcloglog xtcloglog_8 xtcloglog_d2 xtcloglog_pa_p xtcloglog_re_p xtcnt_p xtcorr xtdata xtdes xtfront_p xtfrontier xtgee xtgee_elink xtgee_estat xtgee_makeivar xtgee_p xtgee_plink xtgls xtgls_p xthaus xthausman xtht_p xthtaylor xtile xtint_p xtintreg xtintreg_8 xtintreg_d2 xtintreg_p xtivp_1 xtivp_2 xtivreg xtline xtline_ex xtlogit xtlogit_8 xtlogit_d2 xtlogit_fe_p xtlogit_pa_p xtlogit_re_p xtmixed xtmixed_estat xtmixed_p xtnb_fe xtnb_lf xtnbreg xtnbreg_pa_p xtnbreg_refe_p xtpcse xtpcse_p xtpois xtpoisson xtpoisson_d2 xtpoisson_pa_p xtpoisson_refe_p xtpred xtprobit xtprobit_8 xtprobit_d2 xtprobit_re_p xtps_fe xtps_lf xtps_ren xtps_ren_8 xtrar_p xtrc xtrc_p xtrchh xtrefe_p xtreg xtreg_be xtreg_fe xtreg_ml xtreg_pa_p xtreg_re xtregar xtrere_p xtset xtsf_ll xtsf_llti xtsum xttab xttest0 xttobit xttobit_8 xttobit_p xttrans yx yxview__barlike_draw yxview_area_draw yxview_bar_draw yxview_dot_draw yxview_dropline_draw yxview_function_draw yxview_iarrow_draw yxview_ilabels_draw yxview_normal_draw yxview_pcarrow_draw yxview_pcbarrow_draw yxview_pccapsym_draw yxview_pcscatter_draw yxview_pcspike_draw yxview_rarea_draw yxview_rbar_draw yxview_rbarm_draw yxview_rcap_draw yxview_rcapsym_draw yxview_rconnected_draw yxview_rline_draw yxview_rscatter_draw yxview_rspike_draw yxview_spike_draw yxview_sunflower_draw zap_s zinb zinb_llf zinb_plf zip zip_llf zip_p zip_plf zt_ct_5 zt_hc_5 zt_hcd_5 zt_is_5 zt_iss_5 zt_sho_5 zt_smp_5 ztbase_5 ztcox_5 ztdes_5 ztereg_5 ztfill_5 ztgen_5 ztir_5 ztjoin_5 ztnb ztnb_p ztp ztp_p zts_5 ztset_5 ztspli_5 ztsum_5 zttoct_5 ztvary_5 ztweib_5\",c:[{cN:\"label\",v:[{b:\"\\\\$\\\\{?[a-zA-Z0-9_]+\\\\}?\"},{b:\"`[a-zA-Z0-9_]+'\"}]},{cN:\"string\",v:[{b:'`\"[^\\r\\n]*?\"\\''},{b:'\"[^\\r\\n\"]*\"'}]},{cN:\"literal\",v:[{b:\"\\\\b(abs|acos|asin|atan|atan2|atanh|ceil|cloglog|comb|cos|digamma|exp|floor|invcloglog|invlogit|ln|lnfact|lnfactorial|lngamma|log|log10|max|min|mod|reldif|round|sign|sin|sqrt|sum|tan|tanh|trigamma|trunc|betaden|Binomial|binorm|binormal|chi2|chi2tail|dgammapda|dgammapdada|dgammapdadx|dgammapdx|dgammapdxdx|F|Fden|Ftail|gammaden|gammap|ibeta|invbinomial|invchi2|invchi2tail|invF|invFtail|invgammap|invibeta|invnchi2|invnFtail|invnibeta|invnorm|invnormal|invttail|nbetaden|nchi2|nFden|nFtail|nibeta|norm|normal|normalden|normd|npnchi2|tden|ttail|uniform|abbrev|char|index|indexnot|length|lower|ltrim|match|plural|proper|real|regexm|regexr|regexs|reverse|rtrim|string|strlen|strlower|strltrim|strmatch|strofreal|strpos|strproper|strreverse|strrtrim|strtrim|strupper|subinstr|subinword|substr|trim|upper|word|wordcount|_caller|autocode|byteorder|chop|clip|cond|e|epsdouble|epsfloat|group|inlist|inrange|irecode|matrix|maxbyte|maxdouble|maxfloat|maxint|maxlong|mi|minbyte|mindouble|minfloat|minint|minlong|missing|r|recode|replay|return|s|scalar|d|date|day|dow|doy|halfyear|mdy|month|quarter|week|year|d|daily|dofd|dofh|dofm|dofq|dofw|dofy|h|halfyearly|hofd|m|mofd|monthly|q|qofd|quarterly|tin|twithin|w|weekly|wofd|y|yearly|yh|ym|yofd|yq|yw|cholesky|colnumb|colsof|corr|det|diag|diag0cnt|el|get|hadamard|I|inv|invsym|issym|issymmetric|J|matmissing|matuniform|mreldif|nullmat|rownumb|rowsof|sweep|syminv|trace|vec|vecdiag)(?=\\\\(|$)\"}]},e.C(\"^[ \t]*\\\\*.*$\",!1),e.CLCM,e.CBCM]}});hljs.registerLanguage(\"bash\",function(e){var t={cN:\"variable\",v:[{b:/\\$[\\w\\d#@][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},s={cN:\"string\",b:/\"/,e:/\"/,c:[e.BE,t,{cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"sh\",\"zsh\"],l:/-?[a-z\\.]+/,k:{keyword:\"if then else elif fi for while in do done case esac function\",literal:\"true false\",built_in:\"break cd continue eval exec exit export getopts hash pwd readonly return shift test times trap umask unset alias bind builtin caller command declare echo enable help let local logout mapfile printf read readarray source type typeset ulimit unalias set shopt autoload bg bindkey bye cap chdir clone comparguments compcall compctl compdescribe compfiles compgroups compquote comptags comptry compvalues dirs disable disown echotc echoti emulate fc fg float functions getcap getln history integer jobs kill limit log noglob popd print pushd pushln rehash sched setcap setopt stat suspend ttyctl unfunction unhash unlimit unsetopt vared wait whence where which zcompile zformat zftp zle zmodload zparseopts zprof zpty zregexparse zsocket zstyle ztcp\",operator:\"-ne -eq -lt -gt -f -d -e -s -l -a\"},c:[{cN:\"shebang\",b:/^#![^\\n]+sh\\s*$/,r:10},{cN:\"function\",b:/\\w[\\w\\d_]*\\s*\\(\\s*\\)\\s*\\{/,rB:!0,c:[e.inherit(e.TM,{b:/\\w[\\w\\d_]*/})],r:0},e.HCM,e.NM,s,a,t]}});hljs.registerLanguage(\"handlebars\",function(e){var a=\"each in with if else unless bindattr action collection debugger log outlet template unbound view yield\";return{aliases:[\"hbs\",\"html.hbs\",\"html.handlebars\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{{\",e:\"}}\",c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:a},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:a},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:a}]}]}});hljs.registerLanguage(\"elm\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],i={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"}].concat(c)},t={cN:\"container\",b:\"{\",e:\"}\",c:n.c};return{k:\"let in if then else case of where module import exposing type alias as infix infixl infixr port\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 as exposing\",c:[n].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"typedef\",b:\"\\\\btype\\\\b\",e:\"$\",k:\"type alias\",c:[i,n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bport\\\\b\",e:\"$\",k:\"port\",c:c},e.QSM,e.CNM,i,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"javascript\",function(e){return{aliases:[\"js\"],k:{keyword:\"in of if for while finally var new function do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const export super debugger as async await\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document Symbol Set Map WeakSet WeakMap Proxy Reflect Promise\"},c:[{cN:\"pi\",r:10,b:/^\\s*['\"]use (strict|asm)['\"]/},e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE,{cN:\"subst\",b:\"\\\\$\\\\{\",e:\"\\\\}\"}]},e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM,{b:/</,e:/>\\s*[);\\]]/,r:0,sL:\"xml\"}],r:0},{cN:\"function\",bK:\"function\",e:/\\{/,eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,c:[e.CLCM,e.CBCM]}],i:/\\[|%/},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0},{bK:\"import\",e:\"[;$]\",k:\"import from as\",c:[e.ASM,e.QSM]},{cN:\"class\",bK:\"class\",e:/[{;=]/,eE:!0,i:/[:\"\\[\\]]/,c:[{bK:\"extends\"},e.UTM]}],i:/#/}});hljs.registerLanguage(\"apache\",function(e){var r={cN:\"number\",b:\"[\\\\$%]\\\\d+\"};return{aliases:[\"apacheconf\"],cI:!0,c:[e.HCM,{cN:\"tag\",b:\"</?\",e:\">\"},{cN:\"keyword\",b:/\\w+/,r:0,k:{common:\"order deny allow setenv rewriterule rewriteengine rewritecond documentroot sethandler errordocument loadmodule options header listen serverroot servername\"},starts:{e:/$/,r:0,k:{literal:\"on off all\"},c:[{cN:\"sqbracket\",b:\"\\\\s\\\\[\",e:\"\\\\]$\"},{cN:\"cbracket\",b:\"[\\\\$%]\\\\{\",e:\"\\\\}\",c:[\"self\",r]},r,e.QSM]}}],i:/\\S/}});hljs.registerLanguage(\"vhdl\",function(e){var t=\"\\\\d(_|\\\\d)*\",r=\"[eE][-+]?\"+t,n=t+\"(\\\\.\"+t+\")?(\"+r+\")?\",o=\"\\\\w+\",i=t+\"#\"+o+\"(\\\\.\"+o+\")?#(\"+r+\")?\",a=\"\\\\b(\"+i+\"|\"+n+\")\";return{cI:!0,k:{keyword:\"abs access after alias all and architecture array assert attribute begin block body buffer bus case component configuration constant context cover disconnect downto default else elsif end entity exit fairness file for force function generate generic group guarded if impure in inertial inout is label library linkage literal loop map mod nand new next nor not null of on open or others out package port postponed procedure process property protected pure range record register reject release rem report restrict restrict_guarantee return rol ror select sequence severity shared signal sla sll sra srl strong subtype then to transport type unaffected units until use variable vmode vprop vunit wait when while with xnor xor\",typename:\"boolean bit character severity_level integer time delay_length natural positive string bit_vector file_open_kind file_open_status std_ulogic std_ulogic_vector std_logic std_logic_vector unsigned signed boolean_vector integer_vector real_vector time_vector\"},i:\"{\",c:[e.CBCM,e.C(\"--\",\"$\"),e.QSM,{cN:\"number\",b:a,r:0},{cN:\"literal\",b:\"'(U|X|0|1|Z|W|L|H|-)'\",c:[e.BE]},{cN:\"attribute\",b:\"'[A-Za-z](_?[A-Za-z0-9])*\",c:[e.BE]}]}});hljs.registerLanguage(\"typescript\",function(e){var r={keyword:\"in if for while finally var new function|0 do return void else break catch instanceof with throw case default try this switch continue typeof delete let yield const class public private protected get set super static implements enum export import declare type namespace abstract\",literal:\"true false null undefined NaN Infinity\",built_in:\"eval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Error EvalError InternalError RangeError ReferenceError StopIteration SyntaxError TypeError URIError Number Math Date String RegExp Array Float32Array Float64Array Int16Array Int32Array Int8Array Uint16Array Uint32Array Uint8Array Uint8ClampedArray ArrayBuffer DataView JSON Intl arguments require module console window document any number boolean string void\"};return{aliases:[\"ts\"],k:r,c:[{cN:\"pi\",b:/^\\s*['\"]use strict['\"]/,r:0},e.ASM,e.QSM,e.CLCM,e.CBCM,{cN:\"number\",v:[{b:\"\\\\b(0[bB][01]+)\"},{b:\"\\\\b(0[oO][0-7]+)\"},{b:e.CNR}],r:0},{b:\"(\"+e.RSR+\"|\\\\b(case|return|throw)\\\\b)\\\\s*\",k:\"return throw case\",c:[e.CLCM,e.CBCM,e.RM],r:0},{cN:\"function\",b:\"function\",e:/[\\{;]/,eE:!0,k:r,c:[\"self\",e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/}),{cN:\"params\",b:/\\(/,e:/\\)/,eB:!0,eE:!0,k:r,c:[e.CLCM,e.CBCM],i:/[\"'\\(]/}],i:/\\[|%/,r:0},{cN:\"constructor\",bK:\"constructor\",e:/\\{/,eE:!0,r:10},{cN:\"module\",bK:\"module\",e:/\\{/,eE:!0},{cN:\"interface\",bK:\"interface\",e:/\\{/,eE:!0,k:\"interface extends\"},{b:/\\$[(.]/},{b:\"\\\\.\"+e.IR,r:0}]}});hljs.registerLanguage(\"x86asm\",function(s){return{cI:!0,l:\"\\\\.?\"+s.IR,k:{keyword:\"lock rep repe repz repne repnz xaquire xrelease bnd nobnd aaa aad aam aas adc add and arpl bb0_reset bb1_reset bound bsf bsr bswap bt btc btr bts call cbw cdq cdqe clc cld cli clts cmc cmp cmpsb cmpsd cmpsq cmpsw cmpxchg cmpxchg486 cmpxchg8b cmpxchg16b cpuid cpu_read cpu_write cqo cwd cwde daa das dec div dmint emms enter equ f2xm1 fabs fadd faddp fbld fbstp fchs fclex fcmovb fcmovbe fcmove fcmovnb fcmovnbe fcmovne fcmovnu fcmovu fcom fcomi fcomip fcomp fcompp fcos fdecstp fdisi fdiv fdivp fdivr fdivrp femms feni ffree ffreep fiadd ficom ficomp fidiv fidivr fild fimul fincstp finit fist fistp fisttp fisub fisubr fld fld1 fldcw fldenv fldl2e fldl2t fldlg2 fldln2 fldpi fldz fmul fmulp fnclex fndisi fneni fninit fnop fnsave fnstcw fnstenv fnstsw fpatan fprem fprem1 fptan frndint frstor fsave fscale fsetpm fsin fsincos fsqrt fst fstcw fstenv fstp fstsw fsub fsubp fsubr fsubrp ftst fucom fucomi fucomip fucomp fucompp fxam fxch fxtract fyl2x fyl2xp1 hlt ibts icebp idiv imul in inc incbin insb insd insw int int01 int1 int03 int3 into invd invpcid invlpg invlpga iret iretd iretq iretw jcxz jecxz jrcxz jmp jmpe lahf lar lds lea leave les lfence lfs lgdt lgs lidt lldt lmsw loadall loadall286 lodsb lodsd lodsq lodsw loop loope loopne loopnz loopz lsl lss ltr mfence monitor mov movd movq movsb movsd movsq movsw movsx movsxd movzx mul mwait neg nop not or out outsb outsd outsw packssdw packsswb packuswb paddb paddd paddsb paddsiw paddsw paddusb paddusw paddw pand pandn pause paveb pavgusb pcmpeqb pcmpeqd pcmpeqw pcmpgtb pcmpgtd pcmpgtw pdistib pf2id pfacc pfadd pfcmpeq pfcmpge pfcmpgt pfmax pfmin pfmul pfrcp pfrcpit1 pfrcpit2 pfrsqit1 pfrsqrt pfsub pfsubr pi2fd pmachriw pmaddwd pmagw pmulhriw pmulhrwa pmulhrwc pmulhw pmullw pmvgezb pmvlzb pmvnzb pmvzb pop popa popad popaw popf popfd popfq popfw por prefetch prefetchw pslld psllq psllw psrad psraw psrld psrlq psrlw psubb psubd psubsb psubsiw psubsw psubusb psubusw psubw punpckhbw punpckhdq punpckhwd punpcklbw punpckldq punpcklwd push pusha pushad pushaw pushf pushfd pushfq pushfw pxor rcl rcr rdshr rdmsr rdpmc rdtsc rdtscp ret retf retn rol ror rdm rsdc rsldt rsm rsts sahf sal salc sar sbb scasb scasd scasq scasw sfence sgdt shl shld shr shrd sidt sldt skinit smi smint smintold smsw stc std sti stosb stosd stosq stosw str sub svdc svldt svts swapgs syscall sysenter sysexit sysret test ud0 ud1 ud2b ud2 ud2a umov verr verw fwait wbinvd wrshr wrmsr xadd xbts xchg xlatb xlat xor cmove cmovz cmovne cmovnz cmova cmovnbe cmovae cmovnb cmovb cmovnae cmovbe cmovna cmovg cmovnle cmovge cmovnl cmovl cmovnge cmovle cmovng cmovc cmovnc cmovo cmovno cmovs cmovns cmovp cmovpe cmovnp cmovpo je jz jne jnz ja jnbe jae jnb jb jnae jbe jna jg jnle jge jnl jl jnge jle jng jc jnc jo jno js jns jpo jnp jpe jp sete setz setne setnz seta setnbe setae setnb setnc setb setnae setcset setbe setna setg setnle setge setnl setl setnge setle setng sets setns seto setno setpe setp setpo setnp addps addss andnps andps cmpeqps cmpeqss cmpleps cmpless cmpltps cmpltss cmpneqps cmpneqss cmpnleps cmpnless cmpnltps cmpnltss cmpordps cmpordss cmpunordps cmpunordss cmpps cmpss comiss cvtpi2ps cvtps2pi cvtsi2ss cvtss2si cvttps2pi cvttss2si divps divss ldmxcsr maxps maxss minps minss movaps movhps movlhps movlps movhlps movmskps movntps movss movups mulps mulss orps rcpps rcpss rsqrtps rsqrtss shufps sqrtps sqrtss stmxcsr subps subss ucomiss unpckhps unpcklps xorps fxrstor fxrstor64 fxsave fxsave64 xgetbv xsetbv xsave xsave64 xsaveopt xsaveopt64 xrstor xrstor64 prefetchnta prefetcht0 prefetcht1 prefetcht2 maskmovq movntq pavgb pavgw pextrw pinsrw pmaxsw pmaxub pminsw pminub pmovmskb pmulhuw psadbw pshufw pf2iw pfnacc pfpnacc pi2fw pswapd maskmovdqu clflush movntdq movnti movntpd movdqa movdqu movdq2q movq2dq paddq pmuludq pshufd pshufhw pshuflw pslldq psrldq psubq punpckhqdq punpcklqdq addpd addsd andnpd andpd cmpeqpd cmpeqsd cmplepd cmplesd cmpltpd cmpltsd cmpneqpd cmpneqsd cmpnlepd cmpnlesd cmpnltpd cmpnltsd cmpordpd cmpordsd cmpunordpd cmpunordsd cmppd comisd cvtdq2pd cvtdq2ps cvtpd2dq cvtpd2pi cvtpd2ps cvtpi2pd cvtps2dq cvtps2pd cvtsd2si cvtsd2ss cvtsi2sd cvtss2sd cvttpd2pi cvttpd2dq cvttps2dq cvttsd2si divpd divsd maxpd maxsd minpd minsd movapd movhpd movlpd movmskpd movupd mulpd mulsd orpd shufpd sqrtpd sqrtsd subpd subsd ucomisd unpckhpd unpcklpd xorpd addsubpd addsubps haddpd haddps hsubpd hsubps lddqu movddup movshdup movsldup clgi stgi vmcall vmclear vmfunc vmlaunch vmload vmmcall vmptrld vmptrst vmread vmresume vmrun vmsave vmwrite vmxoff vmxon invept invvpid pabsb pabsw pabsd palignr phaddw phaddd phaddsw phsubw phsubd phsubsw pmaddubsw pmulhrsw pshufb psignb psignw psignd extrq insertq movntsd movntss lzcnt blendpd blendps blendvpd blendvps dppd dpps extractps insertps movntdqa mpsadbw packusdw pblendvb pblendw pcmpeqq pextrb pextrd pextrq phminposuw pinsrb pinsrd pinsrq pmaxsb pmaxsd pmaxud pmaxuw pminsb pminsd pminud pminuw pmovsxbw pmovsxbd pmovsxbq pmovsxwd pmovsxwq pmovsxdq pmovzxbw pmovzxbd pmovzxbq pmovzxwd pmovzxwq pmovzxdq pmuldq pmulld ptest roundpd roundps roundsd roundss crc32 pcmpestri pcmpestrm pcmpistri pcmpistrm pcmpgtq popcnt getsec pfrcpv pfrsqrtv movbe aesenc aesenclast aesdec aesdeclast aesimc aeskeygenassist vaesenc vaesenclast vaesdec vaesdeclast vaesimc vaeskeygenassist vaddpd vaddps vaddsd vaddss vaddsubpd vaddsubps vandpd vandps vandnpd vandnps vblendpd vblendps vblendvpd vblendvps vbroadcastss vbroadcastsd vbroadcastf128 vcmpeq_ospd vcmpeqpd vcmplt_ospd vcmpltpd vcmple_ospd vcmplepd vcmpunord_qpd vcmpunordpd vcmpneq_uqpd vcmpneqpd vcmpnlt_uspd vcmpnltpd vcmpnle_uspd vcmpnlepd vcmpord_qpd vcmpordpd vcmpeq_uqpd vcmpnge_uspd vcmpngepd vcmpngt_uspd vcmpngtpd vcmpfalse_oqpd vcmpfalsepd vcmpneq_oqpd vcmpge_ospd vcmpgepd vcmpgt_ospd vcmpgtpd vcmptrue_uqpd vcmptruepd vcmplt_oqpd vcmple_oqpd vcmpunord_spd vcmpneq_uspd vcmpnlt_uqpd vcmpnle_uqpd vcmpord_spd vcmpeq_uspd vcmpnge_uqpd vcmpngt_uqpd vcmpfalse_ospd vcmpneq_ospd vcmpge_oqpd vcmpgt_oqpd vcmptrue_uspd vcmppd vcmpeq_osps vcmpeqps vcmplt_osps vcmpltps vcmple_osps vcmpleps vcmpunord_qps vcmpunordps vcmpneq_uqps vcmpneqps vcmpnlt_usps vcmpnltps vcmpnle_usps vcmpnleps vcmpord_qps vcmpordps vcmpeq_uqps vcmpnge_usps vcmpngeps vcmpngt_usps vcmpngtps vcmpfalse_oqps vcmpfalseps vcmpneq_oqps vcmpge_osps vcmpgeps vcmpgt_osps vcmpgtps vcmptrue_uqps vcmptrueps vcmplt_oqps vcmple_oqps vcmpunord_sps vcmpneq_usps vcmpnlt_uqps vcmpnle_uqps vcmpord_sps vcmpeq_usps vcmpnge_uqps vcmpngt_uqps vcmpfalse_osps vcmpneq_osps vcmpge_oqps vcmpgt_oqps vcmptrue_usps vcmpps vcmpeq_ossd vcmpeqsd vcmplt_ossd vcmpltsd vcmple_ossd vcmplesd vcmpunord_qsd vcmpunordsd vcmpneq_uqsd vcmpneqsd vcmpnlt_ussd vcmpnltsd vcmpnle_ussd vcmpnlesd vcmpord_qsd vcmpordsd vcmpeq_uqsd vcmpnge_ussd vcmpngesd vcmpngt_ussd vcmpngtsd vcmpfalse_oqsd vcmpfalsesd vcmpneq_oqsd vcmpge_ossd vcmpgesd vcmpgt_ossd vcmpgtsd vcmptrue_uqsd vcmptruesd vcmplt_oqsd vcmple_oqsd vcmpunord_ssd vcmpneq_ussd vcmpnlt_uqsd vcmpnle_uqsd vcmpord_ssd vcmpeq_ussd vcmpnge_uqsd vcmpngt_uqsd vcmpfalse_ossd vcmpneq_ossd vcmpge_oqsd vcmpgt_oqsd vcmptrue_ussd vcmpsd vcmpeq_osss vcmpeqss vcmplt_osss vcmpltss vcmple_osss vcmpless vcmpunord_qss vcmpunordss vcmpneq_uqss vcmpneqss vcmpnlt_usss vcmpnltss vcmpnle_usss vcmpnless vcmpord_qss vcmpordss vcmpeq_uqss vcmpnge_usss vcmpngess vcmpngt_usss vcmpngtss vcmpfalse_oqss vcmpfalsess vcmpneq_oqss vcmpge_osss vcmpgess vcmpgt_osss vcmpgtss vcmptrue_uqss vcmptruess vcmplt_oqss vcmple_oqss vcmpunord_sss vcmpneq_usss vcmpnlt_uqss vcmpnle_uqss vcmpord_sss vcmpeq_usss vcmpnge_uqss vcmpngt_uqss vcmpfalse_osss vcmpneq_osss vcmpge_oqss vcmpgt_oqss vcmptrue_usss vcmpss vcomisd vcomiss vcvtdq2pd vcvtdq2ps vcvtpd2dq vcvtpd2ps vcvtps2dq vcvtps2pd vcvtsd2si vcvtsd2ss vcvtsi2sd vcvtsi2ss vcvtss2sd vcvtss2si vcvttpd2dq vcvttps2dq vcvttsd2si vcvttss2si vdivpd vdivps vdivsd vdivss vdppd vdpps vextractf128 vextractps vhaddpd vhaddps vhsubpd vhsubps vinsertf128 vinsertps vlddqu vldqqu vldmxcsr vmaskmovdqu vmaskmovps vmaskmovpd vmaxpd vmaxps vmaxsd vmaxss vminpd vminps vminsd vminss vmovapd vmovaps vmovd vmovq vmovddup vmovdqa vmovqqa vmovdqu vmovqqu vmovhlps vmovhpd vmovhps vmovlhps vmovlpd vmovlps vmovmskpd vmovmskps vmovntdq vmovntqq vmovntdqa vmovntpd vmovntps vmovsd vmovshdup vmovsldup vmovss vmovupd vmovups vmpsadbw vmulpd vmulps vmulsd vmulss vorpd vorps vpabsb vpabsw vpabsd vpacksswb vpackssdw vpackuswb vpackusdw vpaddb vpaddw vpaddd vpaddq vpaddsb vpaddsw vpaddusb vpaddusw vpalignr vpand vpandn vpavgb vpavgw vpblendvb vpblendw vpcmpestri vpcmpestrm vpcmpistri vpcmpistrm vpcmpeqb vpcmpeqw vpcmpeqd vpcmpeqq vpcmpgtb vpcmpgtw vpcmpgtd vpcmpgtq vpermilpd vpermilps vperm2f128 vpextrb vpextrw vpextrd vpextrq vphaddw vphaddd vphaddsw vphminposuw vphsubw vphsubd vphsubsw vpinsrb vpinsrw vpinsrd vpinsrq vpmaddwd vpmaddubsw vpmaxsb vpmaxsw vpmaxsd vpmaxub vpmaxuw vpmaxud vpminsb vpminsw vpminsd vpminub vpminuw vpminud vpmovmskb vpmovsxbw vpmovsxbd vpmovsxbq vpmovsxwd vpmovsxwq vpmovsxdq vpmovzxbw vpmovzxbd vpmovzxbq vpmovzxwd vpmovzxwq vpmovzxdq vpmulhuw vpmulhrsw vpmulhw vpmullw vpmulld vpmuludq vpmuldq vpor vpsadbw vpshufb vpshufd vpshufhw vpshuflw vpsignb vpsignw vpsignd vpslldq vpsrldq vpsllw vpslld vpsllq vpsraw vpsrad vpsrlw vpsrld vpsrlq vptest vpsubb vpsubw vpsubd vpsubq vpsubsb vpsubsw vpsubusb vpsubusw vpunpckhbw vpunpckhwd vpunpckhdq vpunpckhqdq vpunpcklbw vpunpcklwd vpunpckldq vpunpcklqdq vpxor vrcpps vrcpss vrsqrtps vrsqrtss vroundpd vroundps vroundsd vroundss vshufpd vshufps vsqrtpd vsqrtps vsqrtsd vsqrtss vstmxcsr vsubpd vsubps vsubsd vsubss vtestps vtestpd vucomisd vucomiss vunpckhpd vunpckhps vunpcklpd vunpcklps vxorpd vxorps vzeroall vzeroupper pclmullqlqdq pclmulhqlqdq pclmullqhqdq pclmulhqhqdq pclmulqdq vpclmullqlqdq vpclmulhqlqdq vpclmullqhqdq vpclmulhqhqdq vpclmulqdq vfmadd132ps vfmadd132pd vfmadd312ps vfmadd312pd vfmadd213ps vfmadd213pd vfmadd123ps vfmadd123pd vfmadd231ps vfmadd231pd vfmadd321ps vfmadd321pd vfmaddsub132ps vfmaddsub132pd vfmaddsub312ps vfmaddsub312pd vfmaddsub213ps vfmaddsub213pd vfmaddsub123ps vfmaddsub123pd vfmaddsub231ps vfmaddsub231pd vfmaddsub321ps vfmaddsub321pd vfmsub132ps vfmsub132pd vfmsub312ps vfmsub312pd vfmsub213ps vfmsub213pd vfmsub123ps vfmsub123pd vfmsub231ps vfmsub231pd vfmsub321ps vfmsub321pd vfmsubadd132ps vfmsubadd132pd vfmsubadd312ps vfmsubadd312pd vfmsubadd213ps vfmsubadd213pd vfmsubadd123ps vfmsubadd123pd vfmsubadd231ps vfmsubadd231pd vfmsubadd321ps vfmsubadd321pd vfnmadd132ps vfnmadd132pd vfnmadd312ps vfnmadd312pd vfnmadd213ps vfnmadd213pd vfnmadd123ps vfnmadd123pd vfnmadd231ps vfnmadd231pd vfnmadd321ps vfnmadd321pd vfnmsub132ps vfnmsub132pd vfnmsub312ps vfnmsub312pd vfnmsub213ps vfnmsub213pd vfnmsub123ps vfnmsub123pd vfnmsub231ps vfnmsub231pd vfnmsub321ps vfnmsub321pd vfmadd132ss vfmadd132sd vfmadd312ss vfmadd312sd vfmadd213ss vfmadd213sd vfmadd123ss vfmadd123sd vfmadd231ss vfmadd231sd vfmadd321ss vfmadd321sd vfmsub132ss vfmsub132sd vfmsub312ss vfmsub312sd vfmsub213ss vfmsub213sd vfmsub123ss vfmsub123sd vfmsub231ss vfmsub231sd vfmsub321ss vfmsub321sd vfnmadd132ss vfnmadd132sd vfnmadd312ss vfnmadd312sd vfnmadd213ss vfnmadd213sd vfnmadd123ss vfnmadd123sd vfnmadd231ss vfnmadd231sd vfnmadd321ss vfnmadd321sd vfnmsub132ss vfnmsub132sd vfnmsub312ss vfnmsub312sd vfnmsub213ss vfnmsub213sd vfnmsub123ss vfnmsub123sd vfnmsub231ss vfnmsub231sd vfnmsub321ss vfnmsub321sd rdfsbase rdgsbase rdrand wrfsbase wrgsbase vcvtph2ps vcvtps2ph adcx adox rdseed clac stac xstore xcryptecb xcryptcbc xcryptctr xcryptcfb xcryptofb montmul xsha1 xsha256 llwpcb slwpcb lwpval lwpins vfmaddpd vfmaddps vfmaddsd vfmaddss vfmaddsubpd vfmaddsubps vfmsubaddpd vfmsubaddps vfmsubpd vfmsubps vfmsubsd vfmsubss vfnmaddpd vfnmaddps vfnmaddsd vfnmaddss vfnmsubpd vfnmsubps vfnmsubsd vfnmsubss vfrczpd vfrczps vfrczsd vfrczss vpcmov vpcomb vpcomd vpcomq vpcomub vpcomud vpcomuq vpcomuw vpcomw vphaddbd vphaddbq vphaddbw vphadddq vphaddubd vphaddubq vphaddubw vphaddudq vphadduwd vphadduwq vphaddwd vphaddwq vphsubbw vphsubdq vphsubwd vpmacsdd vpmacsdqh vpmacsdql vpmacssdd vpmacssdqh vpmacssdql vpmacsswd vpmacssww vpmacswd vpmacsww vpmadcsswd vpmadcswd vpperm vprotb vprotd vprotq vprotw vpshab vpshad vpshaq vpshaw vpshlb vpshld vpshlq vpshlw vbroadcasti128 vpblendd vpbroadcastb vpbroadcastw vpbroadcastd vpbroadcastq vpermd vpermpd vpermps vpermq vperm2i128 vextracti128 vinserti128 vpmaskmovd vpmaskmovq vpsllvd vpsllvq vpsravd vpsrlvd vpsrlvq vgatherdpd vgatherqpd vgatherdps vgatherqps vpgatherdd vpgatherqd vpgatherdq vpgatherqq xabort xbegin xend xtest andn bextr blci blcic blsi blsic blcfill blsfill blcmsk blsmsk blsr blcs bzhi mulx pdep pext rorx sarx shlx shrx tzcnt tzmsk t1mskc valignd valignq vblendmpd vblendmps vbroadcastf32x4 vbroadcastf64x4 vbroadcasti32x4 vbroadcasti64x4 vcompresspd vcompressps vcvtpd2udq vcvtps2udq vcvtsd2usi vcvtss2usi vcvttpd2udq vcvttps2udq vcvttsd2usi vcvttss2usi vcvtudq2pd vcvtudq2ps vcvtusi2sd vcvtusi2ss vexpandpd vexpandps vextractf32x4 vextractf64x4 vextracti32x4 vextracti64x4 vfixupimmpd vfixupimmps vfixupimmsd vfixupimmss vgetexppd vgetexpps vgetexpsd vgetexpss vgetmantpd vgetmantps vgetmantsd vgetmantss vinsertf32x4 vinsertf64x4 vinserti32x4 vinserti64x4 vmovdqa32 vmovdqa64 vmovdqu32 vmovdqu64 vpabsq vpandd vpandnd vpandnq vpandq vpblendmd vpblendmq vpcmpltd vpcmpled vpcmpneqd vpcmpnltd vpcmpnled vpcmpd vpcmpltq vpcmpleq vpcmpneqq vpcmpnltq vpcmpnleq vpcmpq vpcmpequd vpcmpltud vpcmpleud vpcmpnequd vpcmpnltud vpcmpnleud vpcmpud vpcmpequq vpcmpltuq vpcmpleuq vpcmpnequq vpcmpnltuq vpcmpnleuq vpcmpuq vpcompressd vpcompressq vpermi2d vpermi2pd vpermi2ps vpermi2q vpermt2d vpermt2pd vpermt2ps vpermt2q vpexpandd vpexpandq vpmaxsq vpmaxuq vpminsq vpminuq vpmovdb vpmovdw vpmovqb vpmovqd vpmovqw vpmovsdb vpmovsdw vpmovsqb vpmovsqd vpmovsqw vpmovusdb vpmovusdw vpmovusqb vpmovusqd vpmovusqw vpord vporq vprold vprolq vprolvd vprolvq vprord vprorq vprorvd vprorvq vpscatterdd vpscatterdq vpscatterqd vpscatterqq vpsraq vpsravq vpternlogd vpternlogq vptestmd vptestmq vptestnmd vptestnmq vpxord vpxorq vrcp14pd vrcp14ps vrcp14sd vrcp14ss vrndscalepd vrndscaleps vrndscalesd vrndscaless vrsqrt14pd vrsqrt14ps vrsqrt14sd vrsqrt14ss vscalefpd vscalefps vscalefsd vscalefss vscatterdpd vscatterdps vscatterqpd vscatterqps vshuff32x4 vshuff64x2 vshufi32x4 vshufi64x2 kandnw kandw kmovw knotw kortestw korw kshiftlw kshiftrw kunpckbw kxnorw kxorw vpbroadcastmb2q vpbroadcastmw2d vpconflictd vpconflictq vplzcntd vplzcntq vexp2pd vexp2ps vrcp28pd vrcp28ps vrcp28sd vrcp28ss vrsqrt28pd vrsqrt28ps vrsqrt28sd vrsqrt28ss vgatherpf0dpd vgatherpf0dps vgatherpf0qpd vgatherpf0qps vgatherpf1dpd vgatherpf1dps vgatherpf1qpd vgatherpf1qps vscatterpf0dpd vscatterpf0dps vscatterpf0qpd vscatterpf0qps vscatterpf1dpd vscatterpf1dps vscatterpf1qpd vscatterpf1qps prefetchwt1 bndmk bndcl bndcu bndcn bndmov bndldx bndstx sha1rnds4 sha1nexte sha1msg1 sha1msg2 sha256rnds2 sha256msg1 sha256msg2 hint_nop0 hint_nop1 hint_nop2 hint_nop3 hint_nop4 hint_nop5 hint_nop6 hint_nop7 hint_nop8 hint_nop9 hint_nop10 hint_nop11 hint_nop12 hint_nop13 hint_nop14 hint_nop15 hint_nop16 hint_nop17 hint_nop18 hint_nop19 hint_nop20 hint_nop21 hint_nop22 hint_nop23 hint_nop24 hint_nop25 hint_nop26 hint_nop27 hint_nop28 hint_nop29 hint_nop30 hint_nop31 hint_nop32 hint_nop33 hint_nop34 hint_nop35 hint_nop36 hint_nop37 hint_nop38 hint_nop39 hint_nop40 hint_nop41 hint_nop42 hint_nop43 hint_nop44 hint_nop45 hint_nop46 hint_nop47 hint_nop48 hint_nop49 hint_nop50 hint_nop51 hint_nop52 hint_nop53 hint_nop54 hint_nop55 hint_nop56 hint_nop57 hint_nop58 hint_nop59 hint_nop60 hint_nop61 hint_nop62 hint_nop63\",literal:\"ip eip rip al ah bl bh cl ch dl dh sil dil bpl spl r8b r9b r10b r11b r12b r13b r14b r15b ax bx cx dx si di bp sp r8w r9w r10w r11w r12w r13w r14w r15w eax ebx ecx edx esi edi ebp esp eip r8d r9d r10d r11d r12d r13d r14d r15d rax rbx rcx rdx rsi rdi rbp rsp r8 r9 r10 r11 r12 r13 r14 r15 cs ds es fs gs ss st st0 st1 st2 st3 st4 st5 st6 st7 mm0 mm1 mm2 mm3 mm4 mm5 mm6 mm7 xmm0  xmm1  xmm2  xmm3  xmm4  xmm5  xmm6  xmm7  xmm8  xmm9 xmm10  xmm11 xmm12 xmm13 xmm14 xmm15 xmm16 xmm17 xmm18 xmm19 xmm20 xmm21 xmm22 xmm23 xmm24 xmm25 xmm26 xmm27 xmm28 xmm29 xmm30 xmm31 ymm0  ymm1  ymm2  ymm3  ymm4  ymm5  ymm6  ymm7  ymm8  ymm9 ymm10  ymm11 ymm12 ymm13 ymm14 ymm15 ymm16 ymm17 ymm18 ymm19 ymm20 ymm21 ymm22 ymm23 ymm24 ymm25 ymm26 ymm27 ymm28 ymm29 ymm30 ymm31 zmm0  zmm1  zmm2  zmm3  zmm4  zmm5  zmm6  zmm7  zmm8  zmm9 zmm10  zmm11 zmm12 zmm13 zmm14 zmm15 zmm16 zmm17 zmm18 zmm19 zmm20 zmm21 zmm22 zmm23 zmm24 zmm25 zmm26 zmm27 zmm28 zmm29 zmm30 zmm31 k0 k1 k2 k3 k4 k5 k6 k7 bnd0 bnd1 bnd2 bnd3 cr0 cr1 cr2 cr3 cr4 cr8 dr0 dr1 dr2 dr3 dr8 tr3 tr4 tr5 tr6 tr7 r0 r1 r2 r3 r4 r5 r6 r7 r0b r1b r2b r3b r4b r5b r6b r7b r0w r1w r2w r3w r4w r5w r6w r7w r0d r1d r2d r3d r4d r5d r6d r7d r0h r1h r2h r3h r0l r1l r2l r3l r4l r5l r6l r7l r8l r9l r10l r11l r12l r13l r14l r15l\",pseudo:\"db dw dd dq dt ddq do dy dz resb resw resd resq rest resdq reso resy resz incbin equ times\",preprocessor:\"%define %xdefine %+ %undef %defstr %deftok %assign %strcat %strlen %substr %rotate %elif %else %endif %ifmacro %ifctx %ifidn %ifidni %ifid %ifnum %ifstr %iftoken %ifempty %ifenv %error %warning %fatal %rep %endrep %include %push %pop %repl %pathsearch %depend %use %arg %stacksize %local %line %comment %endcomment .nolist byte word dword qword nosplit rel abs seg wrt strict near far a32 ptr __FILE__ __LINE__ __SECT__  __BITS__ __OUTPUT_FORMAT__ __DATE__ __TIME__ __DATE_NUM__ __TIME_NUM__ __UTC_DATE__ __UTC_TIME__ __UTC_DATE_NUM__ __UTC_TIME_NUM__  __PASS__ struc endstruc istruc at iend align alignb sectalign daz nodaz up down zero default option assume public \",built_in:\"bits use16 use32 use64 default section segment absolute extern global common cpu float __utf16__ __utf16le__ __utf16be__ __utf32__ __utf32le__ __utf32be__ __float8__ __float16__ __float32__ __float64__ __float80m__ __float80e__ __float128l__ __float128h__ __Infinity__ __QNaN__ __SNaN__ Inf NaN QNaN SNaN float8 float16 float32 float64 float80m float80e float128l float128h __FLOAT_DAZ__ __FLOAT_ROUND__ __FLOAT__\"},c:[s.C(\";\",\"$\",{r:0}),{cN:\"number\",v:[{b:\"\\\\b(?:([0-9][0-9_]*)?\\\\.[0-9_]*(?:[eE][+-]?[0-9_]+)?|(0[Xx])?[0-9][0-9_]*\\\\.?[0-9_]*(?:[pP](?:[+-]?[0-9_]+)?)?)\\\\b\",r:0},{b:\"\\\\$[0-9][0-9A-Fa-f]*\",r:0},{b:\"\\\\b(?:[0-9A-Fa-f][0-9A-Fa-f_]*[Hh]|[0-9][0-9_]*[DdTt]?|[0-7][0-7_]*[QqOo]|[0-1][0-1_]*[BbYy])\\\\b\"},{b:\"\\\\b(?:0[Xx][0-9A-Fa-f_]+|0[DdTt][0-9_]+|0[QqOo][0-7_]+|0[BbYy][0-1_]+)\\\\b\"}]},s.QSM,{cN:\"string\",v:[{b:\"'\",e:\"[^\\\\\\\\]'\"},{b:\"`\",e:\"[^\\\\\\\\]`\"},{b:\"\\\\.[A-Za-z0-9]+\"}],r:0},{cN:\"label\",v:[{b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\"},{b:\"^\\\\s*%%[A-Za-z0-9_$#@~.?]*:\"}],r:0},{cN:\"argument\",b:\"%[0-9]+\",r:0},{cN:\"built_in\",b:\"%!S+\",r:0}]}});hljs.registerLanguage(\"makefile\",function(e){var a={cN:\"variable\",b:/\\$\\(/,e:/\\)/,c:[e.BE]};return{aliases:[\"mk\",\"mak\"],c:[e.HCM,{b:/^\\w+\\s*\\W*=/,rB:!0,r:0,starts:{cN:\"constant\",e:/\\s*\\W*=/,eE:!0,starts:{e:/$/,r:0,c:[a]}}},{cN:\"title\",b:/^[\\w]+:\\s*$/},{cN:\"phony\",b:/^\\.PHONY:/,e:/$/,k:\".PHONY\",l:/[\\.\\w]+/},{b:/^\\t+/,e:/$/,r:0,c:[e.QSM,a]}]}});hljs.registerLanguage(\"delphi\",function(e){var r=\"exports register file shl array record property for mod while set ally label uses raise not stored class safecall var interface or private static exit index inherited to else stdcall override shr asm far resourcestring finalization packed virtual out and protected library do xorwrite goto near function end div overload object unit begin string on inline repeat until destructor write message program with read initialization except default nil if case cdecl in downto threadvar of try pascal const external constructor type public then implementation finally published procedure\",t=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],i={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},c={cN:\"string\",b:/(#\\d+)+/},o={b:e.IR+\"\\\\s*=\\\\s*class\\\\s*\\\\(\",rB:!0,c:[e.TM]},n={cN:\"function\",bK:\"function constructor destructor procedure\",e:/[:;]/,k:\"function constructor|10 destructor|10 procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[i,c]}].concat(t)};return{cI:!0,k:r,i:/\"|\\$[G-Zg-z]|\\/\\*|<\\/|\\|/,c:[i,c,e.NM,o,n].concat(t)}});hljs.registerLanguage(\"erb\",function(e){return{sL:\"xml\",c:[e.C(\"<%#\",\"%>\"),{b:\"<%[%=-]?\",e:\"[%-]?%>\",sL:\"ruby\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"objectivec\",function(e){var t={cN:\"built_in\",b:\"(AV|CA|CF|CG|CI|MK|MP|NS|UI)\\\\w+\"},i={keyword:\"int float while char export sizeof typedef const struct for union unsigned long volatile static bool mutable if do return goto void enum else break extern asm case short default double register explicit signed typename this switch continue wchar_t inline readonly assign readwrite self @synchronized id typeof nonatomic super unichar IBOutlet IBAction strong weak copy in out inout bycopy byref oneway __strong __weak __block __autoreleasing @private @protected @public @try @property @end @throw @catch @finally @autoreleasepool @synthesize @dynamic @selector @optional @required\",literal:\"false true FALSE TRUE nil YES NO NULL\",built_in:\"BOOL dispatch_once_t dispatch_queue_t dispatch_sync dispatch_async dispatch_once\"},o=/[a-zA-Z@][a-zA-Z0-9_]*/,n=\"@interface @class @protocol @implementation\";return{aliases:[\"mm\",\"objc\",\"obj-c\"],k:i,l:o,i:\"</\",c:[t,e.CLCM,e.CBCM,e.CNM,e.QSM,{cN:\"string\",v:[{b:'@\"',e:'\"',i:\"\\\\n\",c:[e.BE]},{b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"}]},{cN:\"preprocessor\",b:\"#\",e:\"$\",c:[{cN:\"title\",v:[{b:'\"',e:'\"'},{b:\"<\",e:\">\"}]}]},{cN:\"class\",b:\"(\"+n.split(\" \").join(\"|\")+\")\\\\b\",e:\"({|$)\",eE:!0,k:n,l:o,c:[e.UTM]},{cN:\"variable\",b:\"\\\\.\"+e.UIR,r:0}]}});hljs.registerLanguage(\"fortran\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},n={constant:\".False. .True.\",type:\"integer real character complex logical dimension allocatable|10 parameter external implicit|10 none double precision assign intent optional pointer target in out common equivalence data\",keyword:\"kind do while private call intrinsic where elsewhere type endtype endmodule endselect endinterface end enddo endif if forall endforall only contains default return stop then public subroutine|10 function program .and. .or. .not. .le. .eq. .ge. .gt. .lt. goto save else use module select case access blank direct exist file fmt form formatted iostat name named nextrec number opened rec recl sequential status unformatted unit continue format pause cycle exit c_null_char c_alert c_backspace c_form_feed flush wait decimal round iomsg synchronous nopass non_overridable pass protected volatile abstract extends import non_intrinsic value deferred generic final enumerator class associate bind enum c_int c_short c_long c_long_long c_signed_char c_size_t c_int8_t c_int16_t c_int32_t c_int64_t c_int_least8_t c_int_least16_t c_int_least32_t c_int_least64_t c_int_fast8_t c_int_fast16_t c_int_fast32_t c_int_fast64_t c_intmax_t C_intptr_t c_float c_double c_long_double c_float_complex c_double_complex c_long_double_complex c_bool c_char c_null_ptr c_null_funptr c_new_line c_carriage_return c_horizontal_tab c_vertical_tab iso_c_binding c_loc c_funloc c_associated  c_f_pointer c_ptr c_funptr iso_fortran_env character_storage_size error_unit file_storage_size input_unit iostat_end iostat_eor numeric_storage_size output_unit c_f_procpointer ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode newunit contiguous recursive pad position action delim readwrite eor advance nml interface procedure namelist include sequence elemental pure\",built_in:\"alog alog10 amax0 amax1 amin0 amin1 amod cabs ccos cexp clog csin csqrt dabs dacos dasin datan datan2 dcos dcosh ddim dexp dint dlog dlog10 dmax1 dmin1 dmod dnint dsign dsin dsinh dsqrt dtan dtanh float iabs idim idint idnint ifix isign max0 max1 min0 min1 sngl algama cdabs cdcos cdexp cdlog cdsin cdsqrt cqabs cqcos cqexp cqlog cqsin cqsqrt dcmplx dconjg derf derfc dfloat dgamma dimag dlgama iqint qabs qacos qasin qatan qatan2 qcmplx qconjg qcos qcosh qdim qerf qerfc qexp qgamma qimag qlgama qlog qlog10 qmax1 qmin1 qmod qnint qsign qsin qsinh qsqrt qtan qtanh abs acos aimag aint anint asin atan atan2 char cmplx conjg cos cosh exp ichar index int log log10 max min nint sign sin sinh sqrt tan tanh print write dim lge lgt lle llt mod nullify allocate deallocate adjustl adjustr all allocated any associated bit_size btest ceiling count cshift date_and_time digits dot_product eoshift epsilon exponent floor fraction huge iand ibclr ibits ibset ieor ior ishft ishftc lbound len_trim matmul maxexponent maxloc maxval merge minexponent minloc minval modulo mvbits nearest pack present product radix random_number random_seed range repeat reshape rrspacing scale scan selected_int_kind selected_real_kind set_exponent shape size spacing spread sum system_clock tiny transpose trim ubound unpack verify achar iachar transfer dble entry dprod cpu_time command_argument_count get_command get_command_argument get_environment_variable is_iostat_end ieee_arithmetic ieee_support_underflow_control ieee_get_underflow_mode ieee_set_underflow_mode is_iostat_eor move_alloc new_line selected_char_kind same_type_as extends_type_ofacosh asinh atanh bessel_j0 bessel_j1 bessel_jn bessel_y0 bessel_y1 bessel_yn erf erfc erfc_scaled gamma log_gamma hypot norm2 atomic_define atomic_ref execute_command_line leadz trailz storage_size merge_bits bge bgt ble blt dshiftl dshiftr findloc iall iany iparity image_index lcobound ucobound maskl maskr num_images parity popcnt poppar shifta shiftl shiftr this_image\"};return{cI:!0,aliases:[\"f90\",\"f95\"],k:n,i:/\\/\\*/,c:[e.inherit(e.ASM,{cN:\"string\",r:0}),e.inherit(e.QSM,{cN:\"string\",r:0}),{cN:\"function\",bK:\"subroutine function program\",i:\"[${=\\\\n]\",c:[e.UTM,t]},e.C(\"!\",\"$\",{r:0}),{cN:\"number\",b:\"(?=\\\\b|\\\\+|\\\\-|\\\\.)(?=\\\\.\\\\d|\\\\d)(?:\\\\d+)?(?:\\\\.?\\\\d*)(?:[de][+-]?\\\\d+)?\\\\b\\\\.?\",r:0}]}});hljs.registerLanguage(\"swift\",function(e){var i={keyword:\"__COLUMN__ __FILE__ __FUNCTION__ __LINE__ as as! as? associativity break case catch class continue convenience default defer deinit didSet do dynamic dynamicType else enum extension fallthrough false final for func get guard if import in indirect infix init inout internal is lazy left let mutating nil none nonmutating operator optional override postfix precedence prefix private protocol Protocol public repeat required rethrows return right self Self set static struct subscript super switch throw throws true try try! try? Type typealias unowned var weak where while willSet\",literal:\"true false nil\",built_in:\"abs advance alignof alignofValue anyGenerator assert assertionFailure bridgeFromObjectiveC bridgeFromObjectiveCUnconditional bridgeToObjectiveC bridgeToObjectiveCUnconditional c contains count countElements countLeadingZeros debugPrint debugPrintln distance dropFirst dropLast dump encodeBitsAsWords enumerate equal fatalError filter find getBridgedObjectiveCType getVaList indices insertionSort isBridgedToObjectiveC isBridgedVerbatimToObjectiveC isUniquelyReferenced isUniquelyReferencedNonObjC join lazy lexicographicalCompare map max maxElement min minElement numericCast overlaps partition posix precondition preconditionFailure print println quickSort readLine reduce reflect reinterpretCast reverse roundUpToAlignment sizeof sizeofValue sort split startsWith stride strideof strideofValue swap toString transcode underestimateCount unsafeAddressOf unsafeBitCast unsafeDowncast unsafeUnwrap unsafeReflect withExtendedLifetime withObjectAtPlusZero withUnsafePointer withUnsafePointerToObject withUnsafeMutablePointer withUnsafeMutablePointers withUnsafePointer withUnsafePointers withVaList zip\"},t={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},n=e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),r={cN:\"subst\",b:/\\\\\\(/,e:\"\\\\)\",k:i,c:[]},a={cN:\"number\",b:\"\\\\b([\\\\d_]+(\\\\.[\\\\deE_]+)?|0x[a-fA-F0-9_]+(\\\\.[a-fA-F0-9p_]+)?|0b[01_]+|0o[0-7_]+)\\\\b\",r:0},o=e.inherit(e.QSM,{c:[r,e.BE]});return r.c=[a],{k:i,c:[o,e.CLCM,n,t,a,{cN:\"func\",bK:\"func\",e:\"{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/,i:/\\(/}),{cN:\"generics\",b:/</,e:/>/,i:/>/},{cN:\"params\",b:/\\(/,e:/\\)/,endsParent:!0,k:i,c:[\"self\",a,o,e.CBCM,{b:\":\"}],i:/[\"']/}],i:/\\[|%/},{cN:\"class\",bK:\"struct protocol class extension enum\",k:i,e:\"\\\\{\",eE:!0,c:[e.inherit(e.TM,{b:/[A-Za-z$_][0-9A-Za-z$_]*/})]},{cN:\"preprocessor\",b:\"(@warn_unused_result|@exported|@lazy|@noescape|@NSCopying|@NSManaged|@objc|@convention|@required|@noreturn|@IBAction|@IBDesignable|@IBInspectable|@IBOutlet|@infix|@prefix|@postfix|@autoclosure|@testable|@available|@nonobjc|@NSApplicationMain|@UIApplicationMain)\"},{bK:\"import\",e:/$/,c:[e.CLCM,n]}]}});hljs.registerLanguage(\"coffeescript\",function(e){var c={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger super then unless until loop of by when and or is isnt not\",literal:\"true false null undefined yes no on off\",built_in:\"npm require console print module global window document\"},n=\"[A-Za-z$_][0-9A-Za-z$_]*\",r={cN:\"subst\",b:/#\\{/,e:/}/,k:c},t=[e.BNM,e.inherit(e.CNM,{starts:{e:\"(\\\\s*/)?\",r:0}}),{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,r]},{b:/\"/,e:/\"/,c:[e.BE,r]}]},{cN:\"regexp\",v:[{b:\"///\",e:\"///\",c:[r,e.HCM]},{b:\"//[gim]*\",r:0},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+n},{b:\"`\",e:\"`\",eB:!0,eE:!0,sL:\"javascript\"}];r.c=t;var s=e.inherit(e.TM,{b:n}),i=\"(\\\\(.*\\\\))?\\\\s*\\\\B[-=]>\",o={cN:\"params\",b:\"\\\\([^\\\\(]\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:c,c:[\"self\"].concat(t)}]};return{aliases:[\"coffee\",\"cson\",\"iced\"],k:c,i:/\\/\\*/,c:t.concat([e.C(\"###\",\"###\"),e.HCM,{cN:\"function\",b:\"^\\\\s*\"+n+\"\\\\s*=\\\\s*\"+i,e:\"[-=]>\",rB:!0,c:[s,o]},{b:/[:\\(,=]\\s*/,r:0,c:[{cN:\"function\",b:i,e:\"[-=]>\",rB:!0,c:[o]}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[s]},s]},{cN:\"attribute\",b:n+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"puppet\",function(e){var s={keyword:\"and case default else elsif false if in import enherits node or true undef unless main settings $string \",literal:\"alias audit before loglevel noop require subscribe tag owner ensure group mode name|0 changes context force incl lens load_path onlyif provider returns root show_diff type_check en_address ip_address realname command environment hour monute month monthday special target weekday creates cwd ogoutput refresh refreshonly tries try_sleep umask backup checksum content ctime force ignore links mtime purge recurse recurselimit replace selinux_ignore_defaults selrange selrole seltype seluser source souirce_permissions sourceselect validate_cmd validate_replacement allowdupe attribute_membership auth_membership forcelocal gid ia_load_module members system host_aliases ip allowed_trunk_vlans description device_url duplex encapsulation etherchannel native_vlan speed principals allow_root auth_class auth_type authenticate_user k_of_n mechanisms rule session_owner shared options device fstype enable hasrestart directory present absent link atboot blockdevice device dump pass remounts poller_tag use message withpath adminfile allow_virtual allowcdrom category configfiles flavor install_options instance package_settings platform responsefile status uninstall_options vendor unless_system_user unless_uid binary control flags hasstatus manifest pattern restart running start stop allowdupe auths expiry gid groups home iterations key_membership keys managehome membership password password_max_age password_min_age profile_membership profiles project purge_ssh_keys role_membership roles salt shell uid baseurl cost descr enabled enablegroups exclude failovermethod gpgcheck gpgkey http_caching include includepkgs keepalive metadata_expire metalink mirrorlist priority protect proxy proxy_password proxy_username repo_gpgcheck s3_enabled skip_if_unavailable sslcacert sslclientcert sslclientkey sslverify mounted\",built_in:\"architecture augeasversion blockdevices boardmanufacturer boardproductname boardserialnumber cfkey dhcp_servers domain ec2_ ec2_userdata facterversion filesystems ldom fqdn gid hardwareisa hardwaremodel hostname id|0 interfaces ipaddress ipaddress_ ipaddress6 ipaddress6_ iphostnumber is_virtual kernel kernelmajversion kernelrelease kernelversion kernelrelease kernelversion lsbdistcodename lsbdistdescription lsbdistid lsbdistrelease lsbmajdistrelease lsbminordistrelease lsbrelease macaddress macaddress_ macosx_buildversion macosx_productname macosx_productversion macosx_productverson_major macosx_productversion_minor manufacturer memoryfree memorysize netmask metmask_ network_ operatingsystem operatingsystemmajrelease operatingsystemrelease osfamily partitions path physicalprocessorcount processor processorcount productname ps puppetversion rubysitedir rubyversion selinux selinux_config_mode selinux_config_policy selinux_current_mode selinux_current_mode selinux_enforced selinux_policyversion serialnumber sp_ sshdsakey sshecdsakey sshrsakey swapencrypted swapfree swapsize timezone type uniqueid uptime uptime_days uptime_hours uptime_seconds uuid virtual vlans xendomains zfs_version zonenae zones zpool_version\"},r=e.C(\"#\",\"$\"),a=\"([A-Za-z_]|::)(\\\\w|::)*\",i=e.inherit(e.TM,{b:a}),o={cN:\"variable\",b:\"\\\\$\"+a},t={cN:\"string\",c:[e.BE,o],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]};return{aliases:[\"pp\"],c:[r,o,t,{bK:\"class\",e:\"\\\\{|;\",i:/=/,c:[i,r]},{bK:\"define\",e:/\\{/,c:[{cN:\"title\",b:e.IR,endsParent:!0}]},{b:e.IR+\"\\\\s+\\\\{\",rB:!0,e:/\\S/,c:[{cN:\"name\",b:e.IR},{b:/\\{/,e:/\\}/,k:s,r:0,c:[t,r,{b:\"[a-zA-Z_]+\\\\s*=>\"},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},o]}],r:0}]}});hljs.registerLanguage(\"tex\",function(c){var e={cN:\"command\",b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]?\"},m={cN:\"command\",b:\"\\\\\\\\[^a-zA-Zа-яА-я0-9]\"},r={cN:\"special\",b:\"[{}\\\\[\\\\]\\\\&#~]\",r:0};return{c:[{b:\"\\\\\\\\[a-zA-Zа-яА-я]+[\\\\*]? *= *-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",rB:!0,c:[e,m,{cN:\"number\",b:\" *=\",e:\"-?\\\\d*\\\\.?\\\\d+(pt|pc|mm|cm|in|dd|cc|ex|em)?\",eB:!0}],r:10},e,m,r,{cN:\"formula\",b:\"\\\\$\\\\$\",e:\"\\\\$\\\\$\",c:[e,m,r],r:0},{cN:\"formula\",b:\"\\\\$\",e:\"\\\\$\",c:[e,m,r],r:0},c.C(\"%\",\"$\",{r:0})]}});hljs.registerLanguage(\"glsl\",function(e){return{k:{keyword:\"atomic_uint attribute bool break bvec2 bvec3 bvec4 case centroid coherent const continue default discard dmat2 dmat2x2 dmat2x3 dmat2x4 dmat3 dmat3x2 dmat3x3 dmat3x4 dmat4 dmat4x2 dmat4x3 dmat4x4 do double dvec2 dvec3 dvec4 else flat float for highp if iimage1D iimage1DArray iimage2D iimage2DArray iimage2DMS iimage2DMSArray iimage2DRect iimage3D iimageBuffer iimageCube iimageCubeArray image1D image1DArray image2D image2DArray image2DMS image2DMSArray image2DRect image3D imageBuffer imageCube imageCubeArray in inout int invariant isampler1D isampler1DArray isampler2D isampler2DArray isampler2DMS isampler2DMSArray isampler2DRect isampler3D isamplerBuffer isamplerCube isamplerCubeArray ivec2 ivec3 ivec4 layout lowp mat2 mat2x2 mat2x3 mat2x4 mat3 mat3x2 mat3x3 mat3x4 mat4 mat4x2 mat4x3 mat4x4 mediump noperspective out patch precision readonly restrict return sample sampler1D sampler1DArray sampler1DArrayShadow sampler1DShadow sampler2D sampler2DArray sampler2DArrayShadow sampler2DMS sampler2DMSArray sampler2DRect sampler2DRectShadow sampler2DShadow sampler3D samplerBuffer samplerCube samplerCubeArray samplerCubeArrayShadow samplerCubeShadow smooth struct subroutine switch uimage1D uimage1DArray uimage2D uimage2DArray uimage2DMS uimage2DMSArray uimage2DRect uimage3D uimageBuffer uimageCube uimageCubeArray uint uniform usampler1D usampler1DArray usampler2D usampler2DArray usampler2DMS usampler2DMSArray usampler2DRect usampler3D usamplerBuffer usamplerCube usamplerCubeArray uvec2 uvec3 uvec4 varying vec2 vec3 vec4 void volatile while writeonly\",built_in:\"gl_BackColor gl_BackLightModelProduct gl_BackLightProduct gl_BackMaterial gl_BackSecondaryColor gl_ClipDistance gl_ClipPlane gl_ClipVertex gl_Color gl_DepthRange gl_EyePlaneQ gl_EyePlaneR gl_EyePlaneS gl_EyePlaneT gl_Fog gl_FogCoord gl_FogFragCoord gl_FragColor gl_FragCoord gl_FragData gl_FragDepth gl_FrontColor gl_FrontFacing gl_FrontLightModelProduct gl_FrontLightProduct gl_FrontMaterial gl_FrontSecondaryColor gl_InstanceID gl_InvocationID gl_Layer gl_LightModel gl_LightSource gl_MaxAtomicCounterBindings gl_MaxAtomicCounterBufferSize gl_MaxClipDistances gl_MaxClipPlanes gl_MaxCombinedAtomicCounterBuffers gl_MaxCombinedAtomicCounters gl_MaxCombinedImageUniforms gl_MaxCombinedImageUnitsAndFragmentOutputs gl_MaxCombinedTextureImageUnits gl_MaxDrawBuffers gl_MaxFragmentAtomicCounterBuffers gl_MaxFragmentAtomicCounters gl_MaxFragmentImageUniforms gl_MaxFragmentInputComponents gl_MaxFragmentUniformComponents gl_MaxFragmentUniformVectors gl_MaxGeometryAtomicCounterBuffers gl_MaxGeometryAtomicCounters gl_MaxGeometryImageUniforms gl_MaxGeometryInputComponents gl_MaxGeometryOutputComponents gl_MaxGeometryOutputVertices gl_MaxGeometryTextureImageUnits gl_MaxGeometryTotalOutputComponents gl_MaxGeometryUniformComponents gl_MaxGeometryVaryingComponents gl_MaxImageSamples gl_MaxImageUnits gl_MaxLights gl_MaxPatchVertices gl_MaxProgramTexelOffset gl_MaxTessControlAtomicCounterBuffers gl_MaxTessControlAtomicCounters gl_MaxTessControlImageUniforms gl_MaxTessControlInputComponents gl_MaxTessControlOutputComponents gl_MaxTessControlTextureImageUnits gl_MaxTessControlTotalOutputComponents gl_MaxTessControlUniformComponents gl_MaxTessEvaluationAtomicCounterBuffers gl_MaxTessEvaluationAtomicCounters gl_MaxTessEvaluationImageUniforms gl_MaxTessEvaluationInputComponents gl_MaxTessEvaluationOutputComponents gl_MaxTessEvaluationTextureImageUnits gl_MaxTessEvaluationUniformComponents gl_MaxTessGenLevel gl_MaxTessPatchComponents gl_MaxTextureCoords gl_MaxTextureImageUnits gl_MaxTextureUnits gl_MaxVaryingComponents gl_MaxVaryingFloats gl_MaxVaryingVectors gl_MaxVertexAtomicCounterBuffers gl_MaxVertexAtomicCounters gl_MaxVertexAttribs gl_MaxVertexImageUniforms gl_MaxVertexOutputComponents gl_MaxVertexTextureImageUnits gl_MaxVertexUniformComponents gl_MaxVertexUniformVectors gl_MaxViewports gl_MinProgramTexelOffsetgl_ModelViewMatrix gl_ModelViewMatrixInverse gl_ModelViewMatrixInverseTranspose gl_ModelViewMatrixTranspose gl_ModelViewProjectionMatrix gl_ModelViewProjectionMatrixInverse gl_ModelViewProjectionMatrixInverseTranspose gl_ModelViewProjectionMatrixTranspose gl_MultiTexCoord0 gl_MultiTexCoord1 gl_MultiTexCoord2 gl_MultiTexCoord3 gl_MultiTexCoord4 gl_MultiTexCoord5 gl_MultiTexCoord6 gl_MultiTexCoord7 gl_Normal gl_NormalMatrix gl_NormalScale gl_ObjectPlaneQ gl_ObjectPlaneR gl_ObjectPlaneS gl_ObjectPlaneT gl_PatchVerticesIn gl_PerVertex gl_Point gl_PointCoord gl_PointSize gl_Position gl_PrimitiveID gl_PrimitiveIDIn gl_ProjectionMatrix gl_ProjectionMatrixInverse gl_ProjectionMatrixInverseTranspose gl_ProjectionMatrixTranspose gl_SampleID gl_SampleMask gl_SampleMaskIn gl_SamplePosition gl_SecondaryColor gl_TessCoord gl_TessLevelInner gl_TessLevelOuter gl_TexCoord gl_TextureEnvColor gl_TextureMatrixInverseTranspose gl_TextureMatrixTranspose gl_Vertex gl_VertexID gl_ViewportIndex gl_in gl_out EmitStreamVertex EmitVertex EndPrimitive EndStreamPrimitive abs acos acosh all any asin asinh atan atanh atomicCounter atomicCounterDecrement atomicCounterIncrement barrier bitCount bitfieldExtract bitfieldInsert bitfieldReverse ceil clamp cos cosh cross dFdx dFdy degrees determinant distance dot equal exp exp2 faceforward findLSB findMSB floatBitsToInt floatBitsToUint floor fma fract frexp ftransform fwidth greaterThan greaterThanEqual imageAtomicAdd imageAtomicAnd imageAtomicCompSwap imageAtomicExchange imageAtomicMax imageAtomicMin imageAtomicOr imageAtomicXor imageLoad imageStore imulExtended intBitsToFloat interpolateAtCentroid interpolateAtOffset interpolateAtSample inverse inversesqrt isinf isnan ldexp length lessThan lessThanEqual log log2 matrixCompMult max memoryBarrier min mix mod modf noise1 noise2 noise3 noise4 normalize not notEqual outerProduct packDouble2x32 packHalf2x16 packSnorm2x16 packSnorm4x8 packUnorm2x16 packUnorm4x8 pow radians reflect refract round roundEven shadow1D shadow1DLod shadow1DProj shadow1DProjLod shadow2D shadow2DLod shadow2DProj shadow2DProjLod sign sin sinh smoothstep sqrt step tan tanh texelFetch texelFetchOffset texture texture1D texture1DLod texture1DProj texture1DProjLod texture2D texture2DLod texture2DProj texture2DProjLod texture3D texture3DLod texture3DProj texture3DProjLod textureCube textureCubeLod textureGather textureGatherOffset textureGatherOffsets textureGrad textureGradOffset textureLod textureLodOffset textureOffset textureProj textureProjGrad textureProjGradOffset textureProjLod textureProjLodOffset textureProjOffset textureQueryLod textureSize transpose trunc uaddCarry uintBitsToFloat umulExtended unpackDouble2x32 unpackHalf2x16 unpackSnorm2x16 unpackSnorm4x8 unpackUnorm2x16 unpackUnorm4x8 usubBorrow gl_TextureMatrix gl_TextureMatrixInverse\",literal:\"true false\"},i:'\"',c:[e.CLCM,e.CBCM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"}]}});hljs.registerLanguage(\"1c\",function(c){var e=\"[a-zA-Zа-яА-Я][a-zA-Z0-9_а-яА-Я]*\",r=\"возврат дата для если и или иначе иначеесли исключение конецесли конецпопытки конецпроцедуры конецфункции конеццикла константа не перейти перем перечисление по пока попытка прервать продолжить процедура строка тогда фс функция цикл число экспорт\",t=\"ansitooem oemtoansi ввестивидсубконто ввестидату ввестизначение ввестиперечисление ввестипериод ввестиплансчетов ввестистроку ввестичисло вопрос восстановитьзначение врег выбранныйплансчетов вызватьисключение датагод датамесяц датачисло добавитьмесяц завершитьработусистемы заголовоксистемы записьжурналарегистрации запуститьприложение зафиксироватьтранзакцию значениевстроку значениевстрокувнутр значениевфайл значениеизстроки значениеизстрокивнутр значениеизфайла имякомпьютера имяпользователя каталогвременныхфайлов каталогиб каталогпользователя каталогпрограммы кодсимв командасистемы конгода конецпериодаби конецрассчитанногопериодаби конецстандартногоинтервала конквартала конмесяца коннедели лев лог лог10 макс максимальноеколичествосубконто мин монопольныйрежим названиеинтерфейса названиенабораправ назначитьвид назначитьсчет найти найтипомеченныенаудаление найтиссылки началопериодаби началостандартногоинтервала начатьтранзакцию начгода начквартала начмесяца начнедели номерднягода номерднянедели номернеделигода нрег обработкаожидания окр описаниеошибки основнойжурналрасчетов основнойплансчетов основнойязык открытьформу открытьформумодально отменитьтранзакцию очиститьокносообщений периодстр полноеимяпользователя получитьвремята получитьдатута получитьдокументта получитьзначенияотбора получитьпозициюта получитьпустоезначение получитьта прав праводоступа предупреждение префиксавтонумерации пустаястрока пустоезначение рабочаядаттьпустоезначение рабочаядата разделительстраниц разделительстрок разм разобратьпозициюдокумента рассчитатьрегистрына рассчитатьрегистрыпо сигнал симв символтабуляции создатьобъект сокрл сокрлп сокрп сообщить состояние сохранитьзначение сред статусвозврата стрдлина стрзаменить стрколичествострок стрполучитьстроку  стрчисловхождений сформироватьпозициюдокумента счетпокоду текущаядата текущеевремя типзначения типзначениястр удалитьобъекты установитьтана установитьтапо фиксшаблон формат цел шаблон\",i={cN:\"dquote\",b:'\"\"'},n={cN:\"string\",b:'\"',e:'\"|$',c:[i]},a={cN:\"string\",b:\"\\\\|\",e:'\"|$',c:[i]};return{cI:!0,l:e,k:{keyword:r,built_in:t},c:[c.CLCM,c.NM,n,a,{cN:\"function\",b:\"(процедура|функция)\",e:\"$\",l:e,k:\"процедура функция\",c:[c.inherit(c.TM,{b:e}),{cN:\"tail\",eW:!0,c:[{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",l:e,k:\"знач\",c:[n,a]},{cN:\"export\",b:\"экспорт\",eW:!0,l:e,k:\"экспорт\",c:[c.CLCM]}]},c.CLCM]},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"date\",b:\"'\\\\d{2}\\\\.\\\\d{2}\\\\.(\\\\d{2}|\\\\d{4})'\"}]}});hljs.registerLanguage(\"nsis\",function(e){var t={cN:\"symbol\",b:\"\\\\$(ADMINTOOLS|APPDATA|CDBURN_AREA|CMDLINE|COMMONFILES32|COMMONFILES64|COMMONFILES|COOKIES|DESKTOP|DOCUMENTS|EXEDIR|EXEFILE|EXEPATH|FAVORITES|FONTS|HISTORY|HWNDPARENT|INSTDIR|INTERNET_CACHE|LANGUAGE|LOCALAPPDATA|MUSIC|NETHOOD|OUTDIR|PICTURES|PLUGINSDIR|PRINTHOOD|PROFILE|PROGRAMFILES32|PROGRAMFILES64|PROGRAMFILES|QUICKLAUNCH|RECENT|RESOURCES_LOCALIZED|RESOURCES|SENDTO|SMPROGRAMS|SMSTARTUP|STARTMENU|SYSDIR|TEMP|TEMPLATES|VIDEOS|WINDIR)\"},n={cN:\"constant\",b:\"\\\\$+{[a-zA-Z0-9_]+}\"},i={cN:\"variable\",b:\"\\\\$+[a-zA-Z0-9_]+\",i:\"\\\\(\\\\){}\"},r={cN:\"constant\",b:\"\\\\$+\\\\([a-zA-Z0-9_]+\\\\)\"},o={cN:\"params\",b:\"(ARCHIVE|FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_NORMAL|FILE_ATTRIBUTE_OFFLINE|FILE_ATTRIBUTE_READONLY|FILE_ATTRIBUTE_SYSTEM|FILE_ATTRIBUTE_TEMPORARY|HKCR|HKCU|HKDD|HKEY_CLASSES_ROOT|HKEY_CURRENT_CONFIG|HKEY_CURRENT_USER|HKEY_DYN_DATA|HKEY_LOCAL_MACHINE|HKEY_PERFORMANCE_DATA|HKEY_USERS|HKLM|HKPD|HKU|IDABORT|IDCANCEL|IDIGNORE|IDNO|IDOK|IDRETRY|IDYES|MB_ABORTRETRYIGNORE|MB_DEFBUTTON1|MB_DEFBUTTON2|MB_DEFBUTTON3|MB_DEFBUTTON4|MB_ICONEXCLAMATION|MB_ICONINFORMATION|MB_ICONQUESTION|MB_ICONSTOP|MB_OK|MB_OKCANCEL|MB_RETRYCANCEL|MB_RIGHT|MB_RTLREADING|MB_SETFOREGROUND|MB_TOPMOST|MB_USERICON|MB_YESNO|NORMAL|OFFLINE|READONLY|SHCTX|SHELL_CONTEXT|SYSTEM|TEMPORARY)\"},l={cN:\"constant\",b:\"\\\\!(addincludedir|addplugindir|appendfile|cd|define|delfile|echo|else|endif|error|execute|finalize|getdllversionsystem|ifdef|ifmacrodef|ifmacrondef|ifndef|if|include|insertmacro|macroend|macro|makensis|packhdr|searchparse|searchreplace|tempfile|undef|verbose|warning)\"};return{cI:!1,k:{keyword:\"Abort AddBrandingImage AddSize AllowRootDirInstall AllowSkipFiles AutoCloseWindow BGFont BGGradient BrandingText BringToFront Call CallInstDLL Caption ChangeUI CheckBitmap ClearErrors CompletedText ComponentText CopyFiles CRCCheck CreateDirectory CreateFont CreateShortCut Delete DeleteINISec DeleteINIStr DeleteRegKey DeleteRegValue DetailPrint DetailsButtonText DirText DirVar DirVerify EnableWindow EnumRegKey EnumRegValue Exch Exec ExecShell ExecWait ExpandEnvStrings File FileBufSize FileClose FileErrorText FileOpen FileRead FileReadByte FileReadUTF16LE FileReadWord FileSeek FileWrite FileWriteByte FileWriteUTF16LE FileWriteWord FindClose FindFirst FindNext FindWindow FlushINI FunctionEnd GetCurInstType GetCurrentAddress GetDlgItem GetDLLVersion GetDLLVersionLocal GetErrorLevel GetFileTime GetFileTimeLocal GetFullPathName GetFunctionAddress GetInstDirError GetLabelAddress GetTempFileName Goto HideWindow Icon IfAbort IfErrors IfFileExists IfRebootFlag IfSilent InitPluginsDir InstallButtonText InstallColors InstallDir InstallDirRegKey InstProgressFlags InstType InstTypeGetText InstTypeSetText IntCmp IntCmpU IntFmt IntOp IsWindow LangString LicenseBkColor LicenseData LicenseForceSelection LicenseLangString LicenseText LoadLanguageFile LockWindow LogSet LogText ManifestDPIAware ManifestSupportedOS MessageBox MiscButtonText Name Nop OutFile Page PageCallbacks PageExEnd Pop Push Quit ReadEnvStr ReadINIStr ReadRegDWORD ReadRegStr Reboot RegDLL Rename RequestExecutionLevel ReserveFile Return RMDir SearchPath SectionEnd SectionGetFlags SectionGetInstTypes SectionGetSize SectionGetText SectionGroupEnd SectionIn SectionSetFlags SectionSetInstTypes SectionSetSize SectionSetText SendMessage SetAutoClose SetBrandingImage SetCompress SetCompressor SetCompressorDictSize SetCtlColors SetCurInstType SetDatablockOptimize SetDateSave SetDetailsPrint SetDetailsView SetErrorLevel SetErrors SetFileAttributes SetFont SetOutPath SetOverwrite SetPluginUnload SetRebootFlag SetRegView SetShellVarContext SetSilent ShowInstDetails ShowUninstDetails ShowWindow SilentInstall SilentUnInstall Sleep SpaceTexts StrCmp StrCmpS StrCpy StrLen SubCaption SubSectionEnd Unicode UninstallButtonText UninstallCaption UninstallIcon UninstallSubCaption UninstallText UninstPage UnRegDLL Var VIAddVersionKey VIFileVersion VIProductVersion WindowIcon WriteINIStr WriteRegBin WriteRegDWORD WriteRegExpandStr WriteRegStr WriteUninstaller XPStyle\",literal:\"admin all auto both colored current false force hide highest lastused leave listonly none normal notset off on open print show silent silentlog smooth textonly true user \"},c:[e.HCM,e.CBCM,{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\",c:[{cN:\"symbol\",b:\"\\\\$(\\\\\\\\(n|r|t)|\\\\$)\"},t,n,i,r]},e.C(\";\",\"$\",{r:0}),{cN:\"function\",bK:\"Function PageEx Section SectionGroup SubSection\",e:\"$\"},l,n,i,r,o,e.NM,{cN:\"literal\",b:e.IR+\"::\"+e.IR}]}});hljs.registerLanguage(\"axapta\",function(e){return{k:\"false int abstract private char boolean static null if for true while long throw finally protected final return void enum else break new catch byte super case short default double public try this switch continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count order group by asc desc index hint like dispaly edit client server ttsbegin ttscommit str real date container anytype common div mod\",c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:\":\",c:[{bK:\"extends implements\"},e.UTM]}]}});hljs.registerLanguage(\"php\",function(e){var c={cN:\"variable\",b:\"\\\\$+[a-zA-Z_-ÿ][a-zA-Z0-9_-ÿ]*\"},a={cN:\"preprocessor\",b:/<\\?(php)?|\\?>/},i={cN:\"string\",c:[e.BE,a],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},t={v:[e.BNM,e.CNM]};return{aliases:[\"php3\",\"php4\",\"php5\",\"php6\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"},a]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:/<<<['\"]?\\w+['\"]?$/,e:/^\\w+;?$/,c:[e.BE,{cN:\"subst\",v:[{b:/\\$\\w+/},{b:/\\{\\$/,e:/\\}/}]}]},a,c,{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",c,e.CBCM,i,t]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,t]}});hljs.registerLanguage(\"go\",function(e){var t={keyword:\"break default func interface select case map struct chan else goto package switch const fallthrough if range type continue for import return var go defer\",constant:\"true false iota nil\",typename:\"bool byte complex64 complex128 float32 float64 int8 int16 int32 int64 string uint8 uint16 uint32 uint64 int uint uintptr rune\",built_in:\"append cap close complex copy imag len make new panic print println real recover delete\"};return{aliases:[\"golang\"],k:t,i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\"},{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"number\",b:e.CNR+\"[dflsi]?\",r:0},e.CNM]}});hljs.registerLanguage(\"dust\",function(e){var t=\"if eq ne lt lte gt gte select default math sep\";return{aliases:[\"dst\"],cI:!0,sL:\"xml\",c:[{cN:\"expression\",b:\"{\",e:\"}\",r:0,c:[{cN:\"begin-block\",b:\"#[a-zA-Z- .]+\",k:t},{cN:\"string\",b:'\"',e:'\"'},{cN:\"end-block\",b:\"\\\\/[a-zA-Z- .]+\",k:t},{cN:\"variable\",b:\"[a-zA-Z-.]+\",k:t,r:0}]}]}});hljs.registerLanguage(\"diff\",function(e){return{aliases:[\"patch\"],c:[{cN:\"chunk\",r:10,v:[{b:/^@@ +\\-\\d+,\\d+ +\\+\\d+,\\d+ +@@$/},{b:/^\\*\\*\\* +\\d+,\\d+ +\\*\\*\\*\\*$/},{b:/^\\-\\-\\- +\\d+,\\d+ +\\-\\-\\-\\-$/}]},{cN:\"header\",v:[{b:/Index: /,e:/$/},{b:/=====/,e:/=====$/},{b:/^\\-\\-\\-/,e:/$/},{b:/^\\*{3} /,e:/$/},{b:/^\\+\\+\\+/,e:/$/},{b:/\\*{5}/,e:/\\*{5}$/}]},{cN:\"addition\",b:\"^\\\\+\",e:\"$\"},{cN:\"deletion\",b:\"^\\\\-\",e:\"$\"},{cN:\"change\",b:\"^\\\\!\",e:\"$\"}]}});hljs.registerLanguage(\"haskell\",function(e){var c=[e.C(\"--\",\"$\"),e.C(\"{-\",\"-}\",{c:[\"self\"]})],a={cN:\"pragma\",b:\"{-#\",e:\"#-}\"},i={cN:\"preprocessor\",b:\"^#\",e:\"$\"},n={cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},t={cN:\"container\",b:\"\\\\(\",e:\"\\\\)\",i:'\"',c:[a,i,{cN:\"type\",b:\"\\\\b[A-Z][\\\\w]*(\\\\((\\\\.\\\\.|,|\\\\w+)\\\\))?\"},e.inherit(e.TM,{b:\"[_a-z][\\\\w']*\"})].concat(c)},l={cN:\"container\",b:\"{\",e:\"}\",c:t.c};return{aliases:[\"hs\"],k:\"let in if then else case of where do module import hiding qualified type data newtype deriving class instance as default infix infixl infixr foreign export ccall stdcall cplusplus jvm dotnet safe unsafe family forall mdo proc rec\",c:[{cN:\"module\",b:\"\\\\bmodule\\\\b\",e:\"where\",k:\"module where\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"import\",b:\"\\\\bimport\\\\b\",e:\"$\",k:\"import|0 qualified as hiding\",c:[t].concat(c),i:\"\\\\W\\\\.|;\"},{cN:\"class\",b:\"^(\\\\s*)?(class|instance)\\\\b\",e:\"where\",k:\"class family instance where\",c:[n,t].concat(c)},{cN:\"typedef\",b:\"\\\\b(data|(new)?type)\\\\b\",e:\"$\",k:\"data family type newtype deriving\",c:[a,n,t,l].concat(c)},{cN:\"default\",bK:\"default\",e:\"$\",c:[n,t].concat(c)},{cN:\"infix\",bK:\"infix infixl infixr\",e:\"$\",c:[e.CNM].concat(c)},{cN:\"foreign\",b:\"\\\\bforeign\\\\b\",e:\"$\",k:\"foreign import export ccall stdcall cplusplus jvm dotnet safe unsafe\",c:[n,e.QSM].concat(c)},{cN:\"shebang\",b:\"#!\\\\/usr\\\\/bin\\\\/env runhaskell\",e:\"$\"},a,i,e.QSM,e.CNM,n,e.inherit(e.TM,{b:\"^[_a-z][\\\\w']*\"}),{b:\"->|<-\"}].concat(c)}});hljs.registerLanguage(\"erlang-repl\",function(r){return{k:{special_functions:\"spawn spawn_link self\",reserved:\"after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if let not of or orelse|10 query receive rem try when xor\"},c:[{cN:\"prompt\",b:\"^[0-9]+> \",r:10},r.C(\"%\",\"$\"),{cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},r.ASM,r.QSM,{cN:\"constant\",b:\"\\\\?(::)?([A-Z]\\\\w*(::)?)+\"},{cN:\"arrow\",b:\"->\"},{cN:\"ok\",b:\"ok\"},{cN:\"exclamation_mark\",b:\"!\"},{cN:\"function_or_atom\",b:\"(\\\\b[a-z'][a-zA-Z0-9_']*:[a-z'][a-zA-Z0-9_']*)|(\\\\b[a-z'][a-zA-Z0-9_']*)\",r:0},{cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_']*\",r:0}]}});hljs.registerLanguage(\"haxe\",function(e){var r=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\";return{aliases:[\"hx\"],k:{keyword:\"break callback case cast catch class continue default do dynamic else enum extends extern for function here if implements import in inline interface never new override package private public return static super switch this throw trace try typedef untyped using var while\",literal:\"true false null\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end error\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM]},{cN:\"type\",b:\":\",e:r,r:10}]}]}});hljs.registerLanguage(\"stylus\",function(t){var e={cN:\"variable\",b:\"\\\\$\"+t.IR},o={cN:\"hexcolor\",b:\"#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})\",r:10},i=[\"charset\",\"css\",\"debug\",\"extend\",\"font-face\",\"for\",\"import\",\"include\",\"media\",\"mixin\",\"page\",\"warn\",\"while\"],r=[\"after\",\"before\",\"first-letter\",\"first-line\",\"active\",\"first-child\",\"focus\",\"hover\",\"lang\",\"link\",\"visited\"],n=[\"a\",\"abbr\",\"address\",\"article\",\"aside\",\"audio\",\"b\",\"blockquote\",\"body\",\"button\",\"canvas\",\"caption\",\"cite\",\"code\",\"dd\",\"del\",\"details\",\"dfn\",\"div\",\"dl\",\"dt\",\"em\",\"fieldset\",\"figcaption\",\"figure\",\"footer\",\"form\",\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"header\",\"hgroup\",\"html\",\"i\",\"iframe\",\"img\",\"input\",\"ins\",\"kbd\",\"label\",\"legend\",\"li\",\"mark\",\"menu\",\"nav\",\"object\",\"ol\",\"p\",\"q\",\"quote\",\"samp\",\"section\",\"span\",\"strong\",\"summary\",\"sup\",\"table\",\"tbody\",\"td\",\"textarea\",\"tfoot\",\"th\",\"thead\",\"time\",\"tr\",\"ul\",\"var\",\"video\"],a=\"[\\\\.\\\\s\\\\n\\\\[\\\\:,]\",l=[\"align-content\",\"align-items\",\"align-self\",\"animation\",\"animation-delay\",\"animation-direction\",\"animation-duration\",\"animation-fill-mode\",\"animation-iteration-count\",\"animation-name\",\"animation-play-state\",\"animation-timing-function\",\"auto\",\"backface-visibility\",\"background\",\"background-attachment\",\"background-clip\",\"background-color\",\"background-image\",\"background-origin\",\"background-position\",\"background-repeat\",\"background-size\",\"border\",\"border-bottom\",\"border-bottom-color\",\"border-bottom-left-radius\",\"border-bottom-right-radius\",\"border-bottom-style\",\"border-bottom-width\",\"border-collapse\",\"border-color\",\"border-image\",\"border-image-outset\",\"border-image-repeat\",\"border-image-slice\",\"border-image-source\",\"border-image-width\",\"border-left\",\"border-left-color\",\"border-left-style\",\"border-left-width\",\"border-radius\",\"border-right\",\"border-right-color\",\"border-right-style\",\"border-right-width\",\"border-spacing\",\"border-style\",\"border-top\",\"border-top-color\",\"border-top-left-radius\",\"border-top-right-radius\",\"border-top-style\",\"border-top-width\",\"border-width\",\"bottom\",\"box-decoration-break\",\"box-shadow\",\"box-sizing\",\"break-after\",\"break-before\",\"break-inside\",\"caption-side\",\"clear\",\"clip\",\"clip-path\",\"color\",\"column-count\",\"column-fill\",\"column-gap\",\"column-rule\",\"column-rule-color\",\"column-rule-style\",\"column-rule-width\",\"column-span\",\"column-width\",\"columns\",\"content\",\"counter-increment\",\"counter-reset\",\"cursor\",\"direction\",\"display\",\"empty-cells\",\"filter\",\"flex\",\"flex-basis\",\"flex-direction\",\"flex-flow\",\"flex-grow\",\"flex-shrink\",\"flex-wrap\",\"float\",\"font\",\"font-family\",\"font-feature-settings\",\"font-kerning\",\"font-language-override\",\"font-size\",\"font-size-adjust\",\"font-stretch\",\"font-style\",\"font-variant\",\"font-variant-ligatures\",\"font-weight\",\"height\",\"hyphens\",\"icon\",\"image-orientation\",\"image-rendering\",\"image-resolution\",\"ime-mode\",\"inherit\",\"initial\",\"justify-content\",\"left\",\"letter-spacing\",\"line-height\",\"list-style\",\"list-style-image\",\"list-style-position\",\"list-style-type\",\"margin\",\"margin-bottom\",\"margin-left\",\"margin-right\",\"margin-top\",\"marks\",\"mask\",\"max-height\",\"max-width\",\"min-height\",\"min-width\",\"nav-down\",\"nav-index\",\"nav-left\",\"nav-right\",\"nav-up\",\"none\",\"normal\",\"object-fit\",\"object-position\",\"opacity\",\"order\",\"orphans\",\"outline\",\"outline-color\",\"outline-offset\",\"outline-style\",\"outline-width\",\"overflow\",\"overflow-wrap\",\"overflow-x\",\"overflow-y\",\"padding\",\"padding-bottom\",\"padding-left\",\"padding-right\",\"padding-top\",\"page-break-after\",\"page-break-before\",\"page-break-inside\",\"perspective\",\"perspective-origin\",\"pointer-events\",\"position\",\"quotes\",\"resize\",\"right\",\"tab-size\",\"table-layout\",\"text-align\",\"text-align-last\",\"text-decoration\",\"text-decoration-color\",\"text-decoration-line\",\"text-decoration-style\",\"text-indent\",\"text-overflow\",\"text-rendering\",\"text-shadow\",\"text-transform\",\"text-underline-position\",\"top\",\"transform\",\"transform-origin\",\"transform-style\",\"transition\",\"transition-delay\",\"transition-duration\",\"transition-property\",\"transition-timing-function\",\"unicode-bidi\",\"vertical-align\",\"visibility\",\"white-space\",\"widows\",\"width\",\"word-break\",\"word-spacing\",\"word-wrap\",\"z-index\"],d=[\"\\\\{\",\"\\\\}\",\"\\\\?\",\"(\\\\bReturn\\\\b)\",\"(\\\\bEnd\\\\b)\",\"(\\\\bend\\\\b)\",\";\",\"#\\\\s\",\"\\\\*\\\\s\",\"===\\\\s\",\"\\\\|\",\"%\"];return{aliases:[\"styl\"],cI:!1,i:\"(\"+d.join(\"|\")+\")\",k:\"if else for in\",c:[t.QSM,t.ASM,t.CLCM,t.CBCM,o,{b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"class\",b:\"\\\\.[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"+a,rB:!0,c:[{cN:\"id\",b:\"\\\\#[a-zA-Z][a-zA-Z0-9_-]*\"}]},{b:\"\\\\b(\"+n.join(\"|\")+\")\"+a,rB:!0,c:[{cN:\"tag\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"}]},{cN:\"pseudo\",b:\"&?:?:\\\\b(\"+r.join(\"|\")+\")\"+a},{cN:\"at_rule\",b:\"@(\"+i.join(\"|\")+\")\\\\b\"},e,t.CSSNM,t.NM,{cN:\"function\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\\\\(.*\\\\)\",i:\"[\\\\n]\",rB:!0,c:[{cN:\"title\",b:\"\\\\b[a-zA-Z][a-zA-Z0-9_-]*\"},{cN:\"params\",b:/\\(/,e:/\\)/,c:[o,e,t.ASM,t.CSSNM,t.NM,t.QSM]}]},{cN:\"attribute\",b:\"\\\\b(\"+l.reverse().join(\"|\")+\")\\\\b\"}]}});hljs.registerLanguage(\"inform7\",function(e){var r=\"\\\\[\",o=\"\\\\]\";return{aliases:[\"i7\"],cI:!0,k:{keyword:\"thing room person man woman animal container supporter backdrop door scenery open closed locked inside gender is are say understand kind of rule\"},c:[{cN:\"string\",b:'\"',e:'\"',r:0,c:[{cN:\"subst\",b:r,e:o}]},{cN:\"title\",b:/^(Volume|Book|Part|Chapter|Section|Table)\\b/,e:\"$\"},{b:/^(Check|Carry out|Report|Instead of|To|Rule|When|Before|After)\\b/,e:\":\",c:[{b:\"\\\\b\\\\(This\",e:\"\\\\)\"}]},{cN:\"comment\",b:r,e:o,c:[\"self\"]}]}});hljs.registerLanguage(\"ini\",function(e){var c={cN:\"string\",c:[e.BE],v:[{b:\"'''\",e:\"'''\",r:10},{b:'\"\"\"',e:'\"\"\"',r:10},{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]};return{aliases:[\"toml\"],cI:!0,i:/\\S/,c:[e.C(\";\",\"$\"),e.HCM,{cN:\"title\",b:/^\\s*\\[+/,e:/\\]+/},{cN:\"setting\",b:/^[a-z0-9\\[\\]_-]+\\s*=\\s*/,e:\"$\",c:[{cN:\"value\",eW:!0,k:\"on off true false yes no\",c:[{cN:\"variable\",v:[{b:/\\$[\\w\\d\"][\\w\\d_]*/},{b:/\\$\\{(.*?)}/}]},c,{cN:\"number\",b:/([\\+\\-]+)?[\\d]+_[\\d_]+/},e.NM],r:0}]}]}});hljs.registerLanguage(\"sqf\",function(e){var t=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"or\",\"plus\",\"^\",\":\",\">>\",\"abs\",\"accTime\",\"acos\",\"action\",\"actionKeys\",\"actionKeysImages\",\"actionKeysNames\",\"actionKeysNamesArray\",\"actionName\",\"activateAddons\",\"activatedAddons\",\"activateKey\",\"addAction\",\"addBackpack\",\"addBackpackCargo\",\"addBackpackCargoGlobal\",\"addBackpackGlobal\",\"addCamShake\",\"addCuratorAddons\",\"addCuratorCameraArea\",\"addCuratorEditableObjects\",\"addCuratorEditingArea\",\"addCuratorPoints\",\"addEditorObject\",\"addEventHandler\",\"addGoggles\",\"addGroupIcon\",\"addHandgunItem\",\"addHeadgear\",\"addItem\",\"addItemCargo\",\"addItemCargoGlobal\",\"addItemPool\",\"addItemToBackpack\",\"addItemToUniform\",\"addItemToVest\",\"addLiveStats\",\"addMagazine\",\"addMagazine array\",\"addMagazineAmmoCargo\",\"addMagazineCargo\",\"addMagazineCargoGlobal\",\"addMagazineGlobal\",\"addMagazinePool\",\"addMagazines\",\"addMagazineTurret\",\"addMenu\",\"addMenuItem\",\"addMissionEventHandler\",\"addMPEventHandler\",\"addMusicEventHandler\",\"addPrimaryWeaponItem\",\"addPublicVariableEventHandler\",\"addRating\",\"addResources\",\"addScore\",\"addScoreSide\",\"addSecondaryWeaponItem\",\"addSwitchableUnit\",\"addTeamMember\",\"addToRemainsCollector\",\"addUniform\",\"addVehicle\",\"addVest\",\"addWaypoint\",\"addWeapon\",\"addWeaponCargo\",\"addWeaponCargoGlobal\",\"addWeaponGlobal\",\"addWeaponPool\",\"addWeaponTurret\",\"agent\",\"agents\",\"AGLToASL\",\"aimedAtTarget\",\"aimPos\",\"airDensityRTD\",\"airportSide\",\"AISFinishHeal\",\"alive\",\"allControls\",\"allCurators\",\"allDead\",\"allDeadMen\",\"allDisplays\",\"allGroups\",\"allMapMarkers\",\"allMines\",\"allMissionObjects\",\"allow3DMode\",\"allowCrewInImmobile\",\"allowCuratorLogicIgnoreAreas\",\"allowDamage\",\"allowDammage\",\"allowFileOperations\",\"allowFleeing\",\"allowGetIn\",\"allPlayers\",\"allSites\",\"allTurrets\",\"allUnits\",\"allUnitsUAV\",\"allVariables\",\"ammo\",\"and\",\"animate\",\"animateDoor\",\"animationPhase\",\"animationState\",\"append\",\"armoryPoints\",\"arrayIntersect\",\"asin\",\"ASLToAGL\",\"ASLToATL\",\"assert\",\"assignAsCargo\",\"assignAsCargoIndex\",\"assignAsCommander\",\"assignAsDriver\",\"assignAsGunner\",\"assignAsTurret\",\"assignCurator\",\"assignedCargo\",\"assignedCommander\",\"assignedDriver\",\"assignedGunner\",\"assignedItems\",\"assignedTarget\",\"assignedTeam\",\"assignedVehicle\",\"assignedVehicleRole\",\"assignItem\",\"assignTeam\",\"assignToAirport\",\"atan\",\"atan2\",\"atg\",\"ATLToASL\",\"attachedObject\",\"attachedObjects\",\"attachedTo\",\"attachObject\",\"attachTo\",\"attackEnabled\",\"backpack\",\"backpackCargo\",\"backpackContainer\",\"backpackItems\",\"backpackMagazines\",\"backpackSpaceFor\",\"behaviour\",\"benchmark\",\"binocular\",\"blufor\",\"boundingBox\",\"boundingBoxReal\",\"boundingCenter\",\"breakOut\",\"breakTo\",\"briefingName\",\"buildingExit\",\"buildingPos\",\"buttonAction\",\"buttonSetAction\",\"cadetMode\",\"call\",\"callExtension\",\"camCommand\",\"camCommit\",\"camCommitPrepared\",\"camCommitted\",\"camConstuctionSetParams\",\"camCreate\",\"camDestroy\",\"cameraEffect\",\"cameraEffectEnableHUD\",\"cameraInterest\",\"cameraOn\",\"cameraView\",\"campaignConfigFile\",\"camPreload\",\"camPreloaded\",\"camPrepareBank\",\"camPrepareDir\",\"camPrepareDive\",\"camPrepareFocus\",\"camPrepareFov\",\"camPrepareFovRange\",\"camPreparePos\",\"camPrepareRelPos\",\"camPrepareTarget\",\"camSetBank\",\"camSetDir\",\"camSetDive\",\"camSetFocus\",\"camSetFov\",\"camSetFovRange\",\"camSetPos\",\"camSetRelPos\",\"camSetTarget\",\"camTarget\",\"camUseNVG\",\"canAdd\",\"canAddItemToBackpack\",\"canAddItemToUniform\",\"canAddItemToVest\",\"cancelSimpleTaskDestination\",\"canFire\",\"canMove\",\"canSlingLoad\",\"canStand\",\"canUnloadInCombat\",\"captive\",\"captiveNum\",\"case\",\"catch\",\"cbChecked\",\"cbSetChecked\",\"ceil\",\"cheatsEnabled\",\"checkAIFeature\",\"civilian\",\"className\",\"clearAllItemsFromBackpack\",\"clearBackpackCargo\",\"clearBackpackCargoGlobal\",\"clearGroupIcons\",\"clearItemCargo\",\"clearItemCargoGlobal\",\"clearItemPool\",\"clearMagazineCargo\",\"clearMagazineCargoGlobal\",\"clearMagazinePool\",\"clearOverlay\",\"clearRadio\",\"clearWeaponCargo\",\"clearWeaponCargoGlobal\",\"clearWeaponPool\",\"closeDialog\",\"closeDisplay\",\"closeOverlay\",\"collapseObjectTree\",\"combatMode\",\"commandArtilleryFire\",\"commandChat\",\"commander\",\"commandFire\",\"commandFollow\",\"commandFSM\",\"commandGetOut\",\"commandingMenu\",\"commandMove\",\"commandRadio\",\"commandStop\",\"commandTarget\",\"commandWatch\",\"comment\",\"commitOverlay\",\"compile\",\"compileFinal\",\"completedFSM\",\"composeText\",\"configClasses\",\"configFile\",\"configHierarchy\",\"configName\",\"configProperties\",\"configSourceMod\",\"configSourceModList\",\"connectTerminalToUAV\",\"controlNull\",\"controlsGroupCtrl\",\"copyFromClipboard\",\"copyToClipboard\",\"copyWaypoints\",\"cos\",\"count\",\"countEnemy\",\"countFriendly\",\"countSide\",\"countType\",\"countUnknown\",\"createAgent\",\"createCenter\",\"createDialog\",\"createDiaryLink\",\"createDiaryRecord\",\"createDiarySubject\",\"createDisplay\",\"createGearDialog\",\"createGroup\",\"createGuardedPoint\",\"createLocation\",\"createMarker\",\"createMarkerLocal\",\"createMenu\",\"createMine\",\"createMissionDisplay\",\"createSimpleTask\",\"createSite\",\"createSoundSource\",\"createTask\",\"createTeam\",\"createTrigger\",\"createUnit\",\"createUnit array\",\"createVehicle\",\"createVehicle array\",\"createVehicleCrew\",\"createVehicleLocal\",\"crew\",\"ctrlActivate\",\"ctrlAddEventHandler\",\"ctrlAutoScrollDelay\",\"ctrlAutoScrollRewind\",\"ctrlAutoScrollSpeed\",\"ctrlChecked\",\"ctrlClassName\",\"ctrlCommit\",\"ctrlCommitted\",\"ctrlCreate\",\"ctrlDelete\",\"ctrlEnable\",\"ctrlEnabled\",\"ctrlFade\",\"ctrlHTMLLoaded\",\"ctrlIDC\",\"ctrlIDD\",\"ctrlMapAnimAdd\",\"ctrlMapAnimClear\",\"ctrlMapAnimCommit\",\"ctrlMapAnimDone\",\"ctrlMapCursor\",\"ctrlMapMouseOver\",\"ctrlMapScale\",\"ctrlMapScreenToWorld\",\"ctrlMapWorldToScreen\",\"ctrlModel\",\"ctrlModelDirAndUp\",\"ctrlModelScale\",\"ctrlParent\",\"ctrlPosition\",\"ctrlRemoveAllEventHandlers\",\"ctrlRemoveEventHandler\",\"ctrlScale\",\"ctrlSetActiveColor\",\"ctrlSetAutoScrollDelay\",\"ctrlSetAutoScrollRewind\",\"ctrlSetAutoScrollSpeed\",\"ctrlSetBackgroundColor\",\"ctrlSetChecked\",\"ctrlSetEventHandler\",\"ctrlSetFade\",\"ctrlSetFocus\",\"ctrlSetFont\",\"ctrlSetFontH1\",\"ctrlSetFontH1B\",\"ctrlSetFontH2\",\"ctrlSetFontH2B\",\"ctrlSetFontH3\",\"ctrlSetFontH3B\",\"ctrlSetFontH4\",\"ctrlSetFontH4B\",\"ctrlSetFontH5\",\"ctrlSetFontH5B\",\"ctrlSetFontH6\",\"ctrlSetFontH6B\",\"ctrlSetFontHeight\",\"ctrlSetFontHeightH1\",\"ctrlSetFontHeightH2\",\"ctrlSetFontHeightH3\",\"ctrlSetFontHeightH4\",\"ctrlSetFontHeightH5\",\"ctrlSetFontHeightH6\",\"ctrlSetFontP\",\"ctrlSetFontPB\",\"ctrlSetForegroundColor\",\"ctrlSetModel\",\"ctrlSetModelDirAndUp\",\"ctrlSetModelScale\",\"ctrlSetPosition\",\"ctrlSetScale\",\"ctrlSetStructuredText\",\"ctrlSetText\",\"ctrlSetTextColor\",\"ctrlSetTooltip\",\"ctrlSetTooltipColorBox\",\"ctrlSetTooltipColorShade\",\"ctrlSetTooltipColorText\",\"ctrlShow\",\"ctrlShown\",\"ctrlText\",\"ctrlTextHeight\",\"ctrlType\",\"ctrlVisible\",\"curatorAddons\",\"curatorCamera\",\"curatorCameraArea\",\"curatorCameraAreaCeiling\",\"curatorCoef\",\"curatorEditableObjects\",\"curatorEditingArea\",\"curatorEditingAreaType\",\"curatorMouseOver\",\"curatorPoints\",\"curatorRegisteredObjects\",\"curatorSelected\",\"curatorWaypointCost\",\"currentChannel\",\"currentCommand\",\"currentMagazine\",\"currentMagazineDetail\",\"currentMagazineDetailTurret\",\"currentMagazineTurret\",\"currentMuzzle\",\"currentNamespace\",\"currentTask\",\"currentTasks\",\"currentThrowable\",\"currentVisionMode\",\"currentWaypoint\",\"currentWeapon\",\"currentWeaponMode\",\"currentWeaponTurret\",\"currentZeroing\",\"cursorTarget\",\"customChat\",\"customRadio\",\"cutFadeOut\",\"cutObj\",\"cutRsc\",\"cutText\",\"damage\",\"date\",\"dateToNumber\",\"daytime\",\"deActivateKey\",\"debriefingText\",\"debugFSM\",\"debugLog\",\"default\",\"deg\",\"deleteAt\",\"deleteCenter\",\"deleteCollection\",\"deleteEditorObject\",\"deleteGroup\",\"deleteIdentity\",\"deleteLocation\",\"deleteMarker\",\"deleteMarkerLocal\",\"deleteRange\",\"deleteResources\",\"deleteSite\",\"deleteStatus\",\"deleteTeam\",\"deleteVehicle\",\"deleteVehicleCrew\",\"deleteWaypoint\",\"detach\",\"detectedMines\",\"diag activeMissionFSMs\",\"diag activeSQFScripts\",\"diag activeSQSScripts\",\"diag captureFrame\",\"diag captureSlowFrame\",\"diag fps\",\"diag fpsMin\",\"diag frameNo\",\"diag log\",\"diag logSlowFrame\",\"diag tickTime\",\"dialog\",\"diarySubjectExists\",\"didJIP\",\"didJIPOwner\",\"difficulty\",\"difficultyEnabled\",\"difficultyEnabledRTD\",\"direction\",\"directSay\",\"disableAI\",\"disableCollisionWith\",\"disableConversation\",\"disableDebriefingStats\",\"disableSerialization\",\"disableTIEquipment\",\"disableUAVConnectability\",\"disableUserInput\",\"displayAddEventHandler\",\"displayCtrl\",\"displayNull\",\"displayRemoveAllEventHandlers\",\"displayRemoveEventHandler\",\"displaySetEventHandler\",\"dissolveTeam\",\"distance\",\"distance2D\",\"distanceSqr\",\"distributionRegion\",\"do\",\"doArtilleryFire\",\"doFire\",\"doFollow\",\"doFSM\",\"doGetOut\",\"doMove\",\"doorPhase\",\"doStop\",\"doTarget\",\"doWatch\",\"drawArrow\",\"drawEllipse\",\"drawIcon\",\"drawIcon3D\",\"drawLine\",\"drawLine3D\",\"drawLink\",\"drawLocation\",\"drawRectangle\",\"driver\",\"drop\",\"east\",\"echo\",\"editObject\",\"editorSetEventHandler\",\"effectiveCommander\",\"else\",\"emptyPositions\",\"enableAI\",\"enableAIFeature\",\"enableAttack\",\"enableCamShake\",\"enableCaustics\",\"enableCollisionWith\",\"enableCopilot\",\"enableDebriefingStats\",\"enableDiagLegend\",\"enableEndDialog\",\"enableEngineArtillery\",\"enableEnvironment\",\"enableFatigue\",\"enableGunLights\",\"enableIRLasers\",\"enableMimics\",\"enablePersonTurret\",\"enableRadio\",\"enableReload\",\"enableRopeAttach\",\"enableSatNormalOnDetail\",\"enableSaving\",\"enableSentences\",\"enableSimulation\",\"enableSimulationGlobal\",\"enableTeamSwitch\",\"enableUAVConnectability\",\"enableUAVWaypoints\",\"endLoadingScreen\",\"endMission\",\"engineOn\",\"enginesIsOnRTD\",\"enginesRpmRTD\",\"enginesTorqueRTD\",\"entities\",\"estimatedEndServerTime\",\"estimatedTimeLeft\",\"evalObjectArgument\",\"everyBackpack\",\"everyContainer\",\"exec\",\"execEditorScript\",\"execFSM\",\"execVM\",\"exit\",\"exitWith\",\"exp\",\"expectedDestination\",\"eyeDirection\",\"eyePos\",\"face\",\"faction\",\"fadeMusic\",\"fadeRadio\",\"fadeSound\",\"fadeSpeech\",\"failMission\",\"false\",\"fillWeaponsFromPool\",\"find\",\"findCover\",\"findDisplay\",\"findEditorObject\",\"findEmptyPosition\",\"findEmptyPositionReady\",\"findNearestEnemy\",\"finishMissionInit\",\"finite\",\"fire\",\"fireAtTarget\",\"firstBackpack\",\"flag\",\"flagOwner\",\"fleeing\",\"floor\",\"flyInHeight\",\"fog\",\"fogForecast\",\"fogParams\",\"for\",\"forceAddUniform\",\"forceEnd\",\"forceMap\",\"forceRespawn\",\"forceSpeed\",\"forceWalk\",\"forceWeaponFire\",\"forceWeatherChange\",\"forEach\",\"forEachMember\",\"forEachMemberAgent\",\"forEachMemberTeam\",\"format\",\"formation\",\"formationDirection\",\"formationLeader\",\"formationMembers\",\"formationPosition\",\"formationTask\",\"formatText\",\"formLeader\",\"freeLook\",\"from\",\"fromEditor\",\"fuel\",\"fullCrew\",\"gearSlotAmmoCount\",\"gearSlotData\",\"getAllHitPointsDamage\",\"getAmmoCargo\",\"getArray\",\"getArtilleryAmmo\",\"getArtilleryComputerSettings\",\"getArtilleryETA\",\"getAssignedCuratorLogic\",\"getAssignedCuratorUnit\",\"getBackpackCargo\",\"getBleedingRemaining\",\"getBurningValue\",\"getCargoIndex\",\"getCenterOfMass\",\"getClientState\",\"getConnectedUAV\",\"getDammage\",\"getDescription\",\"getDir\",\"getDirVisual\",\"getDLCs\",\"getEditorCamera\",\"getEditorMode\",\"getEditorObjectScope\",\"getElevationOffset\",\"getFatigue\",\"getFriend\",\"getFSMVariable\",\"getFuelCargo\",\"getGroupIcon\",\"getGroupIconParams\",\"getGroupIcons\",\"getHideFrom\",\"getHit\",\"getHitIndex\",\"getHitPointDamage\",\"getItemCargo\",\"getMagazineCargo\",\"getMarkerColor\",\"getMarkerPos\",\"getMarkerSize\",\"getMarkerType\",\"getMass\",\"getModelInfo\",\"getNumber\",\"getObjectArgument\",\"getObjectChildren\",\"getObjectDLC\",\"getObjectMaterials\",\"getObjectProxy\",\"getObjectTextures\",\"getObjectType\",\"getObjectViewDistance\",\"getOxygenRemaining\",\"getPersonUsedDLCs\",\"getPlayerChannel\",\"getPlayerUID\",\"getPos\",\"getPosASL\",\"getPosASLVisual\",\"getPosASLW\",\"getPosATL\",\"getPosATLVisual\",\"getPosVisual\",\"getPosWorld\",\"getRepairCargo\",\"getResolution\",\"getShadowDistance\",\"getSlingLoad\",\"getSpeed\",\"getSuppression\",\"getTerrainHeightASL\",\"getText\",\"getVariable\",\"getWeaponCargo\",\"getWPPos\",\"glanceAt\",\"globalChat\",\"globalRadio\",\"goggles\",\"goto\",\"group\",\"groupChat\",\"groupFromNetId\",\"groupIconSelectable\",\"groupIconsVisible\",\"groupId\",\"groupOwner\",\"groupRadio\",\"groupSelectedUnits\",\"groupSelectUnit\",\"grpNull\",\"gunner\",\"gusts\",\"halt\",\"handgunItems\",\"handgunMagazine\",\"handgunWeapon\",\"handsHit\",\"hasInterface\",\"hasWeapon\",\"hcAllGroups\",\"hcGroupParams\",\"hcLeader\",\"hcRemoveAllGroups\",\"hcRemoveGroup\",\"hcSelected\",\"hcSelectGroup\",\"hcSetGroup\",\"hcShowBar\",\"hcShownBar\",\"headgear\",\"hideBody\",\"hideObject\",\"hideObjectGlobal\",\"hint\",\"hintC\",\"hintCadet\",\"hintSilent\",\"hmd\",\"hostMission\",\"htmlLoad\",\"HUDMovementLevels\",\"humidity\",\"if\",\"image\",\"importAllGroups\",\"importance\",\"in\",\"incapacitatedState\",\"independent\",\"inflame\",\"inflamed\",\"inGameUISetEventHandler\",\"inheritsFrom\",\"initAmbientLife\",\"inputAction\",\"inRangeOfArtillery\",\"insertEditorObject\",\"intersect\",\"isAbleToBreathe\",\"isAgent\",\"isArray\",\"isAutoHoverOn\",\"isAutonomous\",\"isAutotest\",\"isBleeding\",\"isBurning\",\"isClass\",\"isCollisionLightOn\",\"isCopilotEnabled\",\"isDedicated\",\"isDLCAvailable\",\"isEngineOn\",\"isEqualTo\",\"isFlashlightOn\",\"isFlatEmpty\",\"isForcedWalk\",\"isFormationLeader\",\"isHidden\",\"isInRemainsCollector\",\"isInstructorFigureEnabled\",\"isIRLaserOn\",\"isKeyActive\",\"isKindOf\",\"isLightOn\",\"isLocalized\",\"isManualFire\",\"isMarkedForCollection\",\"isMultiplayer\",\"isNil\",\"isNull\",\"isNumber\",\"isObjectHidden\",\"isObjectRTD\",\"isOnRoad\",\"isPipEnabled\",\"isPlayer\",\"isRealTime\",\"isServer\",\"isShowing3DIcons\",\"isSteamMission\",\"isStreamFriendlyUIEnabled\",\"isText\",\"isTouchingGround\",\"isTurnedOut\",\"isTutHintsEnabled\",\"isUAVConnectable\",\"isUAVConnected\",\"isUniformAllowed\",\"isWalking\",\"isWeaponDeployed\",\"isWeaponRested\",\"itemCargo\",\"items\",\"itemsWithMagazines\",\"join\",\"joinAs\",\"joinAsSilent\",\"joinSilent\",\"joinString\",\"kbAddDatabase\",\"kbAddDatabaseTargets\",\"kbAddTopic\",\"kbHasTopic\",\"kbReact\",\"kbRemoveTopic\",\"kbTell\",\"kbWasSaid\",\"keyImage\",\"keyName\",\"knowsAbout\",\"land\",\"landAt\",\"landResult\",\"language\",\"laserTarget\",\"lbAdd\",\"lbClear\",\"lbColor\",\"lbCurSel\",\"lbData\",\"lbDelete\",\"lbIsSelected\",\"lbPicture\",\"lbSelection\",\"lbSetColor\",\"lbSetCurSel\",\"lbSetData\",\"lbSetPicture\",\"lbSetPictureColor\",\"lbSetPictureColorDisabled\",\"lbSetPictureColorSelected\",\"lbSetSelectColor\",\"lbSetSelectColorRight\",\"lbSetSelected\",\"lbSetTooltip\",\"lbSetValue\",\"lbSize\",\"lbSort\",\"lbSortByValue\",\"lbText\",\"lbValue\",\"leader\",\"leaderboardDeInit\",\"leaderboardGetRows\",\"leaderboardInit\",\"leaveVehicle\",\"libraryCredits\",\"libraryDisclaimers\",\"lifeState\",\"lightAttachObject\",\"lightDetachObject\",\"lightIsOn\",\"lightnings\",\"limitSpeed\",\"linearConversion\",\"lineBreak\",\"lineIntersects\",\"lineIntersectsObjs\",\"lineIntersectsSurfaces\",\"lineIntersectsWith\",\"linkItem\",\"list\",\"listObjects\",\"ln\",\"lnbAddArray\",\"lnbAddColumn\",\"lnbAddRow\",\"lnbClear\",\"lnbColor\",\"lnbCurSelRow\",\"lnbData\",\"lnbDeleteColumn\",\"lnbDeleteRow\",\"lnbGetColumnsPosition\",\"lnbPicture\",\"lnbSetColor\",\"lnbSetColumnsPos\",\"lnbSetCurSelRow\",\"lnbSetData\",\"lnbSetPicture\",\"lnbSetText\",\"lnbSetValue\",\"lnbSize\",\"lnbText\",\"lnbValue\",\"load\",\"loadAbs\",\"loadBackpack\",\"loadFile\",\"loadGame\",\"loadIdentity\",\"loadMagazine\",\"loadOverlay\",\"loadStatus\",\"loadUniform\",\"loadVest\",\"local\",\"localize\",\"locationNull\",\"locationPosition\",\"lock\",\"lockCameraTo\",\"lockCargo\",\"lockDriver\",\"locked\",\"lockedCargo\",\"lockedDriver\",\"lockedTurret\",\"lockTurret\",\"lockWP\",\"log\",\"logEntities\",\"lookAt\",\"lookAtPos\",\"magazineCargo\",\"magazines\",\"magazinesAllTurrets\",\"magazinesAmmo\",\"magazinesAmmoCargo\",\"magazinesAmmoFull\",\"magazinesDetail\",\"magazinesDetailBackpack\",\"magazinesDetailUniform\",\"magazinesDetailVest\",\"magazinesTurret\",\"magazineTurretAmmo\",\"mapAnimAdd\",\"mapAnimClear\",\"mapAnimCommit\",\"mapAnimDone\",\"mapCenterOnCamera\",\"mapGridPosition\",\"markAsFinishedOnSteam\",\"markerAlpha\",\"markerBrush\",\"markerColor\",\"markerDir\",\"markerPos\",\"markerShape\",\"markerSize\",\"markerText\",\"markerType\",\"max\",\"members\",\"min\",\"mineActive\",\"mineDetectedBy\",\"missionConfigFile\",\"missionName\",\"missionNamespace\",\"missionStart\",\"mod\",\"modelToWorld\",\"modelToWorldVisual\",\"moonIntensity\",\"morale\",\"move\",\"moveInAny\",\"moveInCargo\",\"moveInCommander\",\"moveInDriver\",\"moveInGunner\",\"moveInTurret\",\"moveObjectToEnd\",\"moveOut\",\"moveTime\",\"moveTo\",\"moveToCompleted\",\"moveToFailed\",\"musicVolume\",\"name\",\"name location\",\"nameSound\",\"nearEntities\",\"nearestBuilding\",\"nearestLocation\",\"nearestLocations\",\"nearestLocationWithDubbing\",\"nearestObject\",\"nearestObjects\",\"nearObjects\",\"nearObjectsReady\",\"nearRoads\",\"nearSupplies\",\"nearTargets\",\"needReload\",\"netId\",\"netObjNull\",\"newOverlay\",\"nextMenuItemIndex\",\"nextWeatherChange\",\"nil\",\"nMenuItems\",\"not\",\"numberToDate\",\"objectCurators\",\"objectFromNetId\",\"objectParent\",\"objNull\",\"objStatus\",\"onBriefingGroup\",\"onBriefingNotes\",\"onBriefingPlan\",\"onBriefingTeamSwitch\",\"onCommandModeChanged\",\"onDoubleClick\",\"onEachFrame\",\"onGroupIconClick\",\"onGroupIconOverEnter\",\"onGroupIconOverLeave\",\"onHCGroupSelectionChanged\",\"onMapSingleClick\",\"onPlayerConnected\",\"onPlayerDisconnected\",\"onPreloadFinished\",\"onPreloadStarted\",\"onShowNewObject\",\"onTeamSwitch\",\"openCuratorInterface\",\"openMap\",\"openYoutubeVideo\",\"opfor\",\"or\",\"orderGetIn\",\"overcast\",\"overcastForecast\",\"owner\",\"param\",\"params\",\"parseNumber\",\"parseText\",\"parsingNamespace\",\"particlesQuality\",\"pi\",\"pickWeaponPool\",\"pitch\",\"playableSlotsNumber\",\"playableUnits\",\"playAction\",\"playActionNow\",\"player\",\"playerRespawnTime\",\"playerSide\",\"playersNumber\",\"playGesture\",\"playMission\",\"playMove\",\"playMoveNow\",\"playMusic\",\"playScriptedMission\",\"playSound\",\"playSound3D\",\"position\",\"positionCameraToWorld\",\"posScreenToWorld\",\"posWorldToScreen\",\"ppEffectAdjust\",\"ppEffectCommit\",\"ppEffectCommitted\",\"ppEffectCreate\",\"ppEffectDestroy\",\"ppEffectEnable\",\"ppEffectForceInNVG\",\"precision\",\"preloadCamera\",\"preloadObject\",\"preloadSound\",\"preloadTitleObj\",\"preloadTitleRsc\",\"preprocessFile\",\"preprocessFileLineNumbers\",\"primaryWeapon\",\"primaryWeaponItems\",\"primaryWeaponMagazine\",\"priority\",\"private\",\"processDiaryLink\",\"productVersion\",\"profileName\",\"profileNamespace\",\"profileNameSteam\",\"progressLoadingScreen\",\"progressPosition\",\"progressSetPosition\",\"publicVariable\",\"publicVariableClient\",\"publicVariableServer\",\"pushBack\",\"putWeaponPool\",\"queryItemsPool\",\"queryMagazinePool\",\"queryWeaponPool\",\"rad\",\"radioChannelAdd\",\"radioChannelCreate\",\"radioChannelRemove\",\"radioChannelSetCallSign\",\"radioChannelSetLabel\",\"radioVolume\",\"rain\",\"rainbow\",\"random\",\"rank\",\"rankId\",\"rating\",\"rectangular\",\"registeredTasks\",\"registerTask\",\"reload\",\"reloadEnabled\",\"remoteControl\",\"remoteExec\",\"remoteExecCall\",\"removeAction\",\"removeAllActions\",\"removeAllAssignedItems\",\"removeAllContainers\",\"removeAllCuratorAddons\",\"removeAllCuratorCameraAreas\",\"removeAllCuratorEditingAreas\",\"removeAllEventHandlers\",\"removeAllHandgunItems\",\"removeAllItems\",\"removeAllItemsWithMagazines\",\"removeAllMissionEventHandlers\",\"removeAllMPEventHandlers\",\"removeAllMusicEventHandlers\",\"removeAllPrimaryWeaponItems\",\"removeAllWeapons\",\"removeBackpack\",\"removeBackpackGlobal\",\"removeCuratorAddons\",\"removeCuratorCameraArea\",\"removeCuratorEditableObjects\",\"removeCuratorEditingArea\",\"removeDrawIcon\",\"removeDrawLinks\",\"removeEventHandler\",\"removeFromRemainsCollector\",\"removeGoggles\",\"removeGroupIcon\",\"removeHandgunItem\",\"removeHeadgear\",\"removeItem\",\"removeItemFromBackpack\",\"removeItemFromUniform\",\"removeItemFromVest\",\"removeItems\",\"removeMagazine\",\"removeMagazineGlobal\",\"removeMagazines\",\"removeMagazinesTurret\",\"removeMagazineTurret\",\"removeMenuItem\",\"removeMissionEventHandler\",\"removeMPEventHandler\",\"removeMusicEventHandler\",\"removePrimaryWeaponItem\",\"removeSecondaryWeaponItem\",\"removeSimpleTask\",\"removeSwitchableUnit\",\"removeTeamMember\",\"removeUniform\",\"removeVest\",\"removeWeapon\",\"removeWeaponGlobal\",\"removeWeaponTurret\",\"requiredVersion\",\"resetCamShake\",\"resetSubgroupDirection\",\"resistance\",\"resize\",\"resources\",\"respawnVehicle\",\"restartEditorCamera\",\"reveal\",\"revealMine\",\"reverse\",\"reversedMouseY\",\"roadsConnectedTo\",\"roleDescription\",\"ropeAttachedObjects\",\"ropeAttachedTo\",\"ropeAttachEnabled\",\"ropeAttachTo\",\"ropeCreate\",\"ropeCut\",\"ropeEndPosition\",\"ropeLength\",\"ropes\",\"ropeUnwind\",\"ropeUnwound\",\"rotorsForcesRTD\",\"rotorsRpmRTD\",\"round\",\"runInitScript\",\"safeZoneH\",\"safeZoneW\",\"safeZoneWAbs\",\"safeZoneX\",\"safeZoneXAbs\",\"safeZoneY\",\"saveGame\",\"saveIdentity\",\"saveJoysticks\",\"saveOverlay\",\"saveProfileNamespace\",\"saveStatus\",\"saveVar\",\"savingEnabled\",\"say\",\"say2D\",\"say3D\",\"scopeName\",\"score\",\"scoreSide\",\"screenToWorld\",\"scriptDone\",\"scriptName\",\"scriptNull\",\"scudState\",\"secondaryWeapon\",\"secondaryWeaponItems\",\"secondaryWeaponMagazine\",\"select\",\"selectBestPlaces\",\"selectDiarySubject\",\"selectedEditorObjects\",\"selectEditorObject\",\"selectionPosition\",\"selectLeader\",\"selectNoPlayer\",\"selectPlayer\",\"selectWeapon\",\"selectWeaponTurret\",\"sendAUMessage\",\"sendSimpleCommand\",\"sendTask\",\"sendTaskResult\",\"sendUDPMessage\",\"serverCommand\",\"serverCommandAvailable\",\"serverCommandExecutable\",\"serverName\",\"serverTime\",\"set\",\"setAccTime\",\"setAirportSide\",\"setAmmo\",\"setAmmoCargo\",\"setAperture\",\"setApertureNew\",\"setArmoryPoints\",\"setAttributes\",\"setAutonomous\",\"setBehaviour\",\"setBleedingRemaining\",\"setCameraInterest\",\"setCamShakeDefParams\",\"setCamShakeParams\",\"setCamUseTi\",\"setCaptive\",\"setCenterOfMass\",\"setCollisionLight\",\"setCombatMode\",\"setCompassOscillation\",\"setCuratorCameraAreaCeiling\",\"setCuratorCoef\",\"setCuratorEditingAreaType\",\"setCuratorWaypointCost\",\"setCurrentChannel\",\"setCurrentTask\",\"setCurrentWaypoint\",\"setDamage\",\"setDammage\",\"setDate\",\"setDebriefingText\",\"setDefaultCamera\",\"setDestination\",\"setDetailMapBlendPars\",\"setDir\",\"setDirection\",\"setDrawIcon\",\"setDropInterval\",\"setEditorMode\",\"setEditorObjectScope\",\"setEffectCondition\",\"setFace\",\"setFaceAnimation\",\"setFatigue\",\"setFlagOwner\",\"setFlagSide\",\"setFlagTexture\",\"setFog\",\"setFog array\",\"setFormation\",\"setFormationTask\",\"setFormDir\",\"setFriend\",\"setFromEditor\",\"setFSMVariable\",\"setFuel\",\"setFuelCargo\",\"setGroupIcon\",\"setGroupIconParams\",\"setGroupIconsSelectable\",\"setGroupIconsVisible\",\"setGroupId\",\"setGroupIdGlobal\",\"setGroupOwner\",\"setGusts\",\"setHideBehind\",\"setHit\",\"setHitIndex\",\"setHitPointDamage\",\"setHorizonParallaxCoef\",\"setHUDMovementLevels\",\"setIdentity\",\"setImportance\",\"setLeader\",\"setLightAmbient\",\"setLightAttenuation\",\"setLightBrightness\",\"setLightColor\",\"setLightDayLight\",\"setLightFlareMaxDistance\",\"setLightFlareSize\",\"setLightIntensity\",\"setLightnings\",\"setLightUseFlare\",\"setLocalWindParams\",\"setMagazineTurretAmmo\",\"setMarkerAlpha\",\"setMarkerAlphaLocal\",\"setMarkerBrush\",\"setMarkerBrushLocal\",\"setMarkerColor\",\"setMarkerColorLocal\",\"setMarkerDir\",\"setMarkerDirLocal\",\"setMarkerPos\",\"setMarkerPosLocal\",\"setMarkerShape\",\"setMarkerShapeLocal\",\"setMarkerSize\",\"setMarkerSizeLocal\",\"setMarkerText\",\"setMarkerTextLocal\",\"setMarkerType\",\"setMarkerTypeLocal\",\"setMass\",\"setMimic\",\"setMousePosition\",\"setMusicEffect\",\"setMusicEventHandler\",\"setName\",\"setNameSound\",\"setObjectArguments\",\"setObjectMaterial\",\"setObjectProxy\",\"setObjectTexture\",\"setObjectTextureGlobal\",\"setObjectViewDistance\",\"setOvercast\",\"setOwner\",\"setOxygenRemaining\",\"setParticleCircle\",\"setParticleClass\",\"setParticleFire\",\"setParticleParams\",\"setParticleRandom\",\"setPilotLight\",\"setPiPEffect\",\"setPitch\",\"setPlayable\",\"setPlayerRespawnTime\",\"setPos\",\"setPosASL\",\"setPosASL2\",\"setPosASLW\",\"setPosATL\",\"setPosition\",\"setPosWorld\",\"setRadioMsg\",\"setRain\",\"setRainbow\",\"setRandomLip\",\"setRank\",\"setRectangular\",\"setRepairCargo\",\"setShadowDistance\",\"setSide\",\"setSimpleTaskDescription\",\"setSimpleTaskDestination\",\"setSimpleTaskTarget\",\"setSimulWeatherLayers\",\"setSize\",\"setSkill\",\"setSkill array\",\"setSlingLoad\",\"setSoundEffect\",\"setSpeaker\",\"setSpeech\",\"setSpeedMode\",\"setStatValue\",\"setSuppression\",\"setSystemOfUnits\",\"setTargetAge\",\"setTaskResult\",\"setTaskState\",\"setTerrainGrid\",\"setText\",\"setTimeMultiplier\",\"setTitleEffect\",\"setTriggerActivation\",\"setTriggerArea\",\"setTriggerStatements\",\"setTriggerText\",\"setTriggerTimeout\",\"setTriggerType\",\"setType\",\"setUnconscious\",\"setUnitAbility\",\"setUnitPos\",\"setUnitPosWeak\",\"setUnitRank\",\"setUnitRecoilCoefficient\",\"setUnloadInCombat\",\"setUserActionText\",\"setVariable\",\"setVectorDir\",\"setVectorDirAndUp\",\"setVectorUp\",\"setVehicleAmmo\",\"setVehicleAmmoDef\",\"setVehicleArmor\",\"setVehicleId\",\"setVehicleLock\",\"setVehiclePosition\",\"setVehicleTiPars\",\"setVehicleVarName\",\"setVelocity\",\"setVelocityTransformation\",\"setViewDistance\",\"setVisibleIfTreeCollapsed\",\"setWaves\",\"setWaypointBehaviour\",\"setWaypointCombatMode\",\"setWaypointCompletionRadius\",\"setWaypointDescription\",\"setWaypointFormation\",\"setWaypointHousePosition\",\"setWaypointLoiterRadius\",\"setWaypointLoiterType\",\"setWaypointName\",\"setWaypointPosition\",\"setWaypointScript\",\"setWaypointSpeed\",\"setWaypointStatements\",\"setWaypointTimeout\",\"setWaypointType\",\"setWaypointVisible\",\"setWeaponReloadingTime\",\"setWind\",\"setWindDir\",\"setWindForce\",\"setWindStr\",\"setWPPos\",\"show3DIcons\",\"showChat\",\"showCinemaBorder\",\"showCommandingMenu\",\"showCompass\",\"showCuratorCompass\",\"showGPS\",\"showHUD\",\"showLegend\",\"showMap\",\"shownArtilleryComputer\",\"shownChat\",\"shownCompass\",\"shownCuratorCompass\",\"showNewEditorObject\",\"shownGPS\",\"shownHUD\",\"shownMap\",\"shownPad\",\"shownRadio\",\"shownUAVFeed\",\"shownWarrant\",\"shownWatch\",\"showPad\",\"showRadio\",\"showSubtitles\",\"showUAVFeed\",\"showWarrant\",\"showWatch\",\"showWaypoint\",\"side\",\"sideChat\",\"sideEnemy\",\"sideFriendly\",\"sideLogic\",\"sideRadio\",\"sideUnknown\",\"simpleTasks\",\"simulationEnabled\",\"simulCloudDensity\",\"simulCloudOcclusion\",\"simulInClouds\",\"simulWeatherSync\",\"sin\",\"size\",\"sizeOf\",\"skill\",\"skillFinal\",\"skipTime\",\"sleep\",\"sliderPosition\",\"sliderRange\",\"sliderSetPosition\",\"sliderSetRange\",\"sliderSetSpeed\",\"sliderSpeed\",\"slingLoadAssistantShown\",\"soldierMagazines\",\"someAmmo\",\"sort\",\"soundVolume\",\"spawn\",\"speaker\",\"speed\",\"speedMode\",\"splitString\",\"sqrt\",\"squadParams\",\"stance\",\"startLoadingScreen\",\"step\",\"stop\",\"stopped\",\"str\",\"sunOrMoon\",\"supportInfo\",\"suppressFor\",\"surfaceIsWater\",\"surfaceNormal\",\"surfaceType\",\"swimInDepth\",\"switch\",\"switchableUnits\",\"switchAction\",\"switchCamera\",\"switchGesture\",\"switchLight\",\"switchMove\",\"synchronizedObjects\",\"synchronizedTriggers\",\"synchronizedWaypoints\",\"synchronizeObjectsAdd\",\"synchronizeObjectsRemove\",\"synchronizeTrigger\",\"synchronizeWaypoint\",\"synchronizeWaypoint trigger\",\"systemChat\",\"systemOfUnits\",\"tan\",\"targetKnowledge\",\"targetsAggregate\",\"targetsQuery\",\"taskChildren\",\"taskCompleted\",\"taskDescription\",\"taskDestination\",\"taskHint\",\"taskNull\",\"taskParent\",\"taskResult\",\"taskState\",\"teamMember\",\"teamMemberNull\",\"teamName\",\"teams\",\"teamSwitch\",\"teamSwitchEnabled\",\"teamType\",\"terminate\",\"terrainIntersect\",\"terrainIntersectASL\",\"text\",\"text location\",\"textLog\",\"textLogFormat\",\"tg\",\"then\",\"throw\",\"time\",\"timeMultiplier\",\"titleCut\",\"titleFadeOut\",\"titleObj\",\"titleRsc\",\"titleText\",\"to\",\"toArray\",\"toLower\",\"toString\",\"toUpper\",\"triggerActivated\",\"triggerActivation\",\"triggerArea\",\"triggerAttachedVehicle\",\"triggerAttachObject\",\"triggerAttachVehicle\",\"triggerStatements\",\"triggerText\",\"triggerTimeout\",\"triggerTimeoutCurrent\",\"triggerType\",\"true\",\"try\",\"turretLocal\",\"turretOwner\",\"turretUnit\",\"tvAdd\",\"tvClear\",\"tvCollapse\",\"tvCount\",\"tvCurSel\",\"tvData\",\"tvDelete\",\"tvExpand\",\"tvPicture\",\"tvSetCurSel\",\"tvSetData\",\"tvSetPicture\",\"tvSetPictureColor\",\"tvSetTooltip\",\"tvSetValue\",\"tvSort\",\"tvSortByValue\",\"tvText\",\"tvValue\",\"type\",\"typeName\",\"typeOf\",\"UAVControl\",\"uiNamespace\",\"uiSleep\",\"unassignCurator\",\"unassignItem\",\"unassignTeam\",\"unassignVehicle\",\"underwater\",\"uniform\",\"uniformContainer\",\"uniformItems\",\"uniformMagazines\",\"unitAddons\",\"unitBackpack\",\"unitPos\",\"unitReady\",\"unitRecoilCoefficient\",\"units\",\"unitsBelowHeight\",\"unlinkItem\",\"unlockAchievement\",\"unregisterTask\",\"updateDrawIcon\",\"updateMenuItem\",\"updateObjectTree\",\"useAudioTimeForMoves\",\"vectorAdd\",\"vectorCos\",\"vectorCrossProduct\",\"vectorDiff\",\"vectorDir\",\"vectorDirVisual\",\"vectorDistance\",\"vectorDistanceSqr\",\"vectorDotProduct\",\"vectorFromTo\",\"vectorMagnitude\",\"vectorMagnitudeSqr\",\"vectorMultiply\",\"vectorNormalized\",\"vectorUp\",\"vectorUpVisual\",\"vehicle\",\"vehicleChat\",\"vehicleRadio\",\"vehicles\",\"vehicleVarName\",\"velocity\",\"velocityModelSpace\",\"verifySignature\",\"vest\",\"vestContainer\",\"vestItems\",\"vestMagazines\",\"viewDistance\",\"visibleCompass\",\"visibleGPS\",\"visibleMap\",\"visiblePosition\",\"visiblePositionASL\",\"visibleWatch\",\"waitUntil\",\"waves\",\"waypointAttachedObject\",\"waypointAttachedVehicle\",\"waypointAttachObject\",\"waypointAttachVehicle\",\"waypointBehaviour\",\"waypointCombatMode\",\"waypointCompletionRadius\",\"waypointDescription\",\"waypointFormation\",\"waypointHousePosition\",\"waypointLoiterRadius\",\"waypointLoiterType\",\"waypointName\",\"waypointPosition\",\"waypoints\",\"waypointScript\",\"waypointsEnabledUAV\",\"waypointShow\",\"waypointSpeed\",\"waypointStatements\",\"waypointTimeout\",\"waypointTimeoutCurrent\",\"waypointType\",\"waypointVisible\",\"weaponAccessories\",\"weaponCargo\",\"weaponDirection\",\"weaponLowered\",\"weapons\",\"weaponsItems\",\"weaponsItemsCargo\",\"weaponState\",\"weaponsTurret\",\"weightRTD\",\"west\",\"WFSideText\",\"while\",\"wind\",\"windDir\",\"windStr\",\"wingsForcesRTD\",\"with\",\"worldName\",\"worldSize\",\"worldToModel\",\"worldToModelVisual\",\"worldToScreen\"],a=[\"case\",\"catch\",\"default\",\"do\",\"else\",\"exit\",\"exitWith|5\",\"for\",\"forEach\",\"from\",\"if\",\"switch\",\"then\",\"throw\",\"to\",\"try\",\"while\",\"with\"],r=[\"!\",\"-\",\"+\",\"!=\",\"%\",\"&&\",\"*\",\"/\",\"=\",\"==\",\">\",\">=\",\"<\",\"<=\",\"^\",\":\",\">>\"],o=[\"_forEachIndex|10\",\"_this|10\",\"_x|10\"],i=[\"true\",\"false\",\"nil\"],n=t.filter(function(e){return-1==a.indexOf(e)&&-1==i.indexOf(e)&&-1==r.indexOf(e)});n=n.concat(o);var s={cN:\"string\",r:0,v:[{b:'\"',e:'\"',c:[{b:'\"\"'}]},{b:\"'\",e:\"'\",c:[{b:\"''\"}]}]},l={cN:\"number\",b:e.NR,r:0},c={cN:\"string\",v:[e.QSM,{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},d={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[c,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},c,l,e.CLCM,e.CBCM]};return{aliases:[\"sqf\"],cI:!0,k:{keyword:a.join(\" \"),built_in:n.join(\" \"),literal:i.join(\" \")},c:[e.CLCM,e.CBCM,l,s,d]}});hljs.registerLanguage(\"vbscript-html\",function(r){return{sL:\"xml\",c:[{b:\"<%\",e:\"%>\",sL:\"vbscript\"}]}});hljs.registerLanguage(\"cal\",function(e){var r=\"div mod in and or not xor asserterror begin case do downto else end exit for if of repeat then to until while with var\",t=\"false true\",a=[e.CLCM,e.C(/\\{/,/\\}/,{r:0}),e.C(/\\(\\*/,/\\*\\)/,{r:10})],c={cN:\"string\",b:/'/,e:/'/,c:[{b:/''/}]},o={cN:\"string\",b:/(#\\d+)+/},n={cN:\"date\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(DT|D|T)\",r:0},i={cN:\"variable\",b:'\"',e:'\"'},d={cN:\"function\",bK:\"procedure\",e:/[:;]/,k:\"procedure|10\",c:[e.TM,{cN:\"params\",b:/\\(/,e:/\\)/,k:r,c:[c,o]}].concat(a)},b={cN:\"class\",b:\"OBJECT (Table|Form|Report|Dataport|Codeunit|XMLport|MenuSuite|Page|Query) (\\\\d+) ([^\\\\r\\\\n]+)\",rB:!0,c:[e.TM,d]};return{cI:!0,k:{keyword:r,literal:t},i:/\\/\\*/,c:[c,o,n,i,e.NM,b,d]}});hljs.registerLanguage(\"mojolicious\",function(e){return{sL:\"xml\",c:[{cN:\"preprocessor\",b:\"^__(END|DATA)__$\"},{b:\"^\\\\s*%{1,2}={0,2}\",e:\"$\",sL:\"perl\"},{b:\"<%{1,2}={0,2}\",e:\"={0,1}%>\",sL:\"perl\",eB:!0,eE:!0}]}});hljs.registerLanguage(\"clojure\",function(e){var t={built_in:\"def defonce cond apply if-not if-let if not not= = < > <= >= == + / * - rem quot neg? pos? delay? symbol? keyword? true? false? integer? empty? coll? list? set? ifn? fn? associative? sequential? sorted? counted? reversible? number? decimal? class? distinct? isa? float? rational? reduced? ratio? odd? even? char? seq? vector? string? map? nil? contains? zero? instance? not-every? not-any? libspec? -> ->> .. . inc compare do dotimes mapcat take remove take-while drop letfn drop-last take-last drop-while while intern condp case reduced cycle split-at split-with repeat replicate iterate range merge zipmap declare line-seq sort comparator sort-by dorun doall nthnext nthrest partition eval doseq await await-for let agent atom send send-off release-pending-sends add-watch mapv filterv remove-watch agent-error restart-agent set-error-handler error-handler set-error-mode! error-mode shutdown-agents quote var fn loop recur throw try monitor-enter monitor-exit defmacro defn defn- macroexpand macroexpand-1 for dosync and or when when-not when-let comp juxt partial sequence memoize constantly complement identity assert peek pop doto proxy defstruct first rest cons defprotocol cast coll deftype defrecord last butlast sigs reify second ffirst fnext nfirst nnext defmulti defmethod meta with-meta ns in-ns create-ns import refer keys select-keys vals key val rseq name namespace promise into transient persistent! conj! assoc! dissoc! pop! disj! use class type num float double short byte boolean bigint biginteger bigdec print-method print-dup throw-if printf format load compile get-in update-in pr pr-on newline flush read slurp read-line subvec with-open memfn time re-find re-groups rand-int rand mod locking assert-valid-fdecl alias resolve ref deref refset swap! reset! set-validator! compare-and-set! alter-meta! reset-meta! commute get-validator alter ref-set ref-history-count ref-min-history ref-max-history ensure sync io! new next conj set! to-array future future-call into-array aset gen-class reduce map filter find empty hash-map hash-set sorted-map sorted-map-by sorted-set sorted-set-by vec vector seq flatten reverse assoc dissoc list disj get union difference intersection extend extend-type extend-protocol int nth delay count concat chunk chunk-buffer chunk-append chunk-first chunk-rest max min dec unchecked-inc-int unchecked-inc unchecked-dec-inc unchecked-dec unchecked-negate unchecked-add-int unchecked-add unchecked-subtract-int unchecked-subtract chunk-next chunk-cons chunked-seq? prn vary-meta lazy-seq spread list* str find-keyword keyword symbol gensym force rationalize\"},r=\"a-zA-Z_\\\\-!.?+*=<>&#'\",n=\"[\"+r+\"][\"+r+\"0-9/;:]*\",a=\"[-+]?\\\\d+(\\\\.\\\\d+)?\",o={b:n,r:0},s={cN:\"number\",b:a,r:0},c=e.inherit(e.QSM,{i:null}),i=e.C(\";\",\"$\",{r:0}),d={cN:\"literal\",b:/\\b(true|false|nil)\\b/},l={cN:\"collection\",b:\"[\\\\[\\\\{]\",e:\"[\\\\]\\\\}]\"},m={cN:\"comment\",b:\"\\\\^\"+n},p=e.C(\"\\\\^\\\\{\",\"\\\\}\"),u={cN:\"attribute\",b:\"[:]\"+n},f={cN:\"list\",b:\"\\\\(\",e:\"\\\\)\"},h={eW:!0,r:0},y={k:t,l:n,cN:\"keyword\",b:n,starts:h},b=[f,c,m,p,i,u,l,s,d,o];return f.c=[e.C(\"comment\",\"\"),y,h],h.c=b,l.c=b,{aliases:[\"clj\"],i:/\\S/,c:[f,c,m,p,i,u,l,s,d]}});hljs.registerLanguage(\"dart\",function(e){var t={cN:\"subst\",b:\"\\\\$\\\\{\",e:\"}\",k:\"true false null this is new super\"},r={cN:\"string\",v:[{b:\"r'''\",e:\"'''\"},{b:'r\"\"\"',e:'\"\"\"'},{b:\"r'\",e:\"'\",i:\"\\\\n\"},{b:'r\"',e:'\"',i:\"\\\\n\"},{b:\"'''\",e:\"'''\",c:[e.BE,t]},{b:'\"\"\"',e:'\"\"\"',c:[e.BE,t]},{b:\"'\",e:\"'\",i:\"\\\\n\",c:[e.BE,t]},{b:'\"',e:'\"',i:\"\\\\n\",c:[e.BE,t]}]};t.c=[e.CNM,r];var n={keyword:\"assert break case catch class const continue default do else enum extends false final finally for if in is new null rethrow return super switch this throw true try var void while with\",literal:\"abstract as dynamic export external factory get implements import library operator part set static typedef\",built_in:\"print Comparable DateTime Duration Function Iterable Iterator List Map Match Null Object Pattern RegExp Set Stopwatch String StringBuffer StringSink Symbol Type Uri bool double int num document window querySelector querySelectorAll Element ElementList\"};return{k:n,c:[r,e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{sL:\"markdown\"}),e.C(\"///\",\"$\",{sL:\"markdown\"}),e.CLCM,e.CBCM,{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.UTM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"},{b:\"=>\"}]}});hljs.registerLanguage(\"ruleslanguage\",function(T){return{k:{keyword:\"BILL_PERIOD BILL_START BILL_STOP RS_EFFECTIVE_START RS_EFFECTIVE_STOP RS_JURIS_CODE RS_OPCO_CODE INTDADDATTRIBUTE|5 INTDADDVMSG|5 INTDBLOCKOP|5 INTDBLOCKOPNA|5 INTDCLOSE|5 INTDCOUNT|5 INTDCOUNTSTATUSCODE|5 INTDCREATEMASK|5 INTDCREATEDAYMASK|5 INTDCREATEFACTORMASK|5 INTDCREATEHANDLE|5 INTDCREATEOVERRIDEDAYMASK|5 INTDCREATEOVERRIDEMASK|5 INTDCREATESTATUSCODEMASK|5 INTDCREATETOUPERIOD|5 INTDDELETE|5 INTDDIPTEST|5 INTDEXPORT|5 INTDGETERRORCODE|5 INTDGETERRORMESSAGE|5 INTDISEQUAL|5 INTDJOIN|5 INTDLOAD|5 INTDLOADACTUALCUT|5 INTDLOADDATES|5 INTDLOADHIST|5 INTDLOADLIST|5 INTDLOADLISTDATES|5 INTDLOADLISTENERGY|5 INTDLOADLISTHIST|5 INTDLOADRELATEDCHANNEL|5 INTDLOADSP|5 INTDLOADSTAGING|5 INTDLOADUOM|5 INTDLOADUOMDATES|5 INTDLOADUOMHIST|5 INTDLOADVERSION|5 INTDOPEN|5 INTDREADFIRST|5 INTDREADNEXT|5 INTDRECCOUNT|5 INTDRELEASE|5 INTDREPLACE|5 INTDROLLAVG|5 INTDROLLPEAK|5 INTDSCALAROP|5 INTDSCALE|5 INTDSETATTRIBUTE|5 INTDSETDSTPARTICIPANT|5 INTDSETSTRING|5 INTDSETVALUE|5 INTDSETVALUESTATUS|5 INTDSHIFTSTARTTIME|5 INTDSMOOTH|5 INTDSORT|5 INTDSPIKETEST|5 INTDSUBSET|5 INTDTOU|5 INTDTOURELEASE|5 INTDTOUVALUE|5 INTDUPDATESTATS|5 INTDVALUE|5 STDEV INTDDELETEEX|5 INTDLOADEXACTUAL|5 INTDLOADEXCUT|5 INTDLOADEXDATES|5 INTDLOADEX|5 INTDLOADEXRELATEDCHANNEL|5 INTDSAVEEX|5 MVLOAD|5 MVLOADACCT|5 MVLOADACCTDATES|5 MVLOADACCTHIST|5 MVLOADDATES|5 MVLOADHIST|5 MVLOADLIST|5 MVLOADLISTDATES|5 MVLOADLISTHIST|5 IF FOR NEXT DONE SELECT END CALL ABORT CLEAR CHANNEL FACTOR LIST NUMBER OVERRIDE SET WEEK DISTRIBUTIONNODE ELSE WHEN THEN OTHERWISE IENUM CSV INCLUDE LEAVE RIDER SAVE DELETE NOVALUE SECTION WARN SAVE_UPDATE DETERMINANT LABEL REPORT REVENUE EACH IN FROM TOTAL CHARGE BLOCK AND OR CSV_FILE RATE_CODE AUXILIARY_DEMAND UIDACCOUNT RS BILL_PERIOD_SELECT HOURS_PER_MONTH INTD_ERROR_STOP SEASON_SCHEDULE_NAME ACCOUNTFACTOR ARRAYUPPERBOUND CALLSTOREDPROC GETADOCONNECTION GETCONNECT GETDATASOURCE GETQUALIFIER GETUSERID HASVALUE LISTCOUNT LISTOP LISTUPDATE LISTVALUE PRORATEFACTOR RSPRORATE SETBINPATH SETDBMONITOR WQ_OPEN BILLINGHOURS DATE DATEFROMFLOAT DATETIMEFROMSTRING DATETIMETOSTRING DATETOFLOAT DAY DAYDIFF DAYNAME DBDATETIME HOUR MINUTE MONTH MONTHDIFF MONTHHOURS MONTHNAME ROUNDDATE SAMEWEEKDAYLASTYEAR SECOND WEEKDAY WEEKDIFF YEAR YEARDAY YEARSTR COMPSUM HISTCOUNT HISTMAX HISTMIN HISTMINNZ HISTVALUE MAXNRANGE MAXRANGE MINRANGE COMPIKVA COMPKVA COMPKVARFROMKQKW COMPLF IDATTR FLAG LF2KW LF2KWH MAXKW POWERFACTOR READING2USAGE AVGSEASON MAXSEASON MONTHLYMERGE SEASONVALUE SUMSEASON ACCTREADDATES ACCTTABLELOAD CONFIGADD CONFIGGET CREATEOBJECT CREATEREPORT EMAILCLIENT EXPBLKMDMUSAGE EXPMDMUSAGE EXPORT_USAGE FACTORINEFFECT GETUSERSPECIFIEDSTOP INEFFECT ISHOLIDAY RUNRATE SAVE_PROFILE SETREPORTTITLE USEREXIT WATFORRUNRATE TO TABLE ACOS ASIN ATAN ATAN2 BITAND CEIL COS COSECANT COSH COTANGENT DIVQUOT DIVREM EXP FABS FLOOR FMOD FREPM FREXPN LOG LOG10 MAX MAXN MIN MINNZ MODF POW ROUND ROUND2VALUE ROUNDINT SECANT SIN SINH SQROOT TAN TANH FLOAT2STRING FLOAT2STRINGNC INSTR LEFT LEN LTRIM MID RIGHT RTRIM STRING STRINGNC TOLOWER TOUPPER TRIM NUMDAYS READ_DATE STAGING\",built_in:\"IDENTIFIER OPTIONS XML_ELEMENT XML_OP XML_ELEMENT_OF DOMDOCCREATE DOMDOCLOADFILE DOMDOCLOADXML DOMDOCSAVEFILE DOMDOCGETROOT DOMDOCADDPI DOMNODEGETNAME DOMNODEGETTYPE DOMNODEGETVALUE DOMNODEGETCHILDCT DOMNODEGETFIRSTCHILD DOMNODEGETSIBLING DOMNODECREATECHILDELEMENT DOMNODESETATTRIBUTE DOMNODEGETCHILDELEMENTCT DOMNODEGETFIRSTCHILDELEMENT DOMNODEGETSIBLINGELEMENT DOMNODEGETATTRIBUTECT DOMNODEGETATTRIBUTEI DOMNODEGETATTRIBUTEBYNAME DOMNODEGETBYNAME\"},c:[T.CLCM,T.CBCM,T.ASM,T.QSM,T.CNM,{cN:\"array\",v:[{b:\"#\\\\s+[a-zA-Z\\\\ \\\\.]*\",r:0},{b:\"#[a-zA-Z\\\\ \\\\.]+\"}]}]}});hljs.registerLanguage(\"applescript\",function(e){var t=e.inherit(e.QSM,{i:\"\"}),r={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CNM,t]},o=e.C(\"--\",\"$\"),n=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\",o]}),a=[o,n,e.HCM];return{aliases:[\"osascript\"],k:{keyword:\"about above after against and around as at back before beginning behind below beneath beside between but by considering contain contains continue copy div does eighth else end equal equals error every exit fifth first for fourth from front get given global if ignoring in into is it its last local me middle mod my ninth not of on onto or over prop property put ref reference repeat returning script second set seventh since sixth some tell tenth that the|0 then third through thru timeout times to transaction try until where while whose with without\",constant:\"AppleScript false linefeed return pi quote result space tab true\",type:\"alias application boolean class constant date file integer list number real record string text\",command:\"activate beep count delay launch log offset read round run say summarize write\",property:\"character characters contents day frontmost id item length month name paragraph paragraphs rest reverse running time version weekday word words year\"},c:[t,e.CNM,{cN:\"type\",b:\"\\\\bPOSIX file\\\\b\"},{cN:\"command\",b:\"\\\\b(clipboard info|the clipboard|info for|list (disks|folder)|mount volume|path to|(close|open for) access|(get|set) eof|current date|do shell script|get volume settings|random number|set volume|system attribute|system info|time to GMT|(load|run|store) script|scripting components|ASCII (character|number)|localized string|choose (application|color|file|file name|folder|from list|remote application|URL)|display (alert|dialog))\\\\b|^\\\\s*return\\\\b\"},{cN:\"constant\",b:\"\\\\b(text item delimiters|current application|missing value)\\\\b\"},{cN:\"keyword\",b:\"\\\\b(apart from|aside from|instead of|out of|greater than|isn't|(doesn't|does not) (equal|come before|come after|contain)|(greater|less) than( or equal)?|(starts?|ends|begins?) with|contained by|comes (before|after)|a (ref|reference))\\\\b\"},{cN:\"property\",b:\"\\\\b(POSIX path|(date|time) string|quoted form)\\\\b\"},{cN:\"function_start\",bK:\"on\",i:\"[${=;\\\\n]\",c:[e.UTM,r]}].concat(a),i:\"//|->|=>|\\\\[\\\\[\"}});hljs.registerLanguage(\"xml\",function(t){var s=\"[A-Za-z0-9\\\\._:-]+\",c={b:/<\\?(php)?(?!\\w)/,e:/\\?>/,sL:\"php\"},e={eW:!0,i:/</,r:0,c:[c,{cN:\"attribute\",b:s,r:0},{b:\"=\",r:0,c:[{cN:\"value\",c:[c],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/},{b:/[^\\s\\/>]+/}]}]}]};return{aliases:[\"html\",\"xhtml\",\"rss\",\"atom\",\"xsl\",\"plist\"],cI:!0,c:[{cN:\"doctype\",b:\"<!DOCTYPE\",e:\">\",r:10,c:[{b:\"\\\\[\",e:\"\\\\]\"}]},t.C(\"<!--\",\"-->\",{r:10}),{cN:\"cdata\",b:\"<\\\\!\\\\[CDATA\\\\[\",e:\"\\\\]\\\\]>\",r:10},{cN:\"tag\",b:\"<style(?=\\\\s|>|$)\",e:\">\",k:{title:\"style\"},c:[e],starts:{e:\"</style>\",rE:!0,sL:\"css\"}},{cN:\"tag\",b:\"<script(?=\\\\s|>|$)\",e:\">\",k:{title:\"script\"},c:[e],starts:{e:\"</script>\",rE:!0,sL:[\"actionscript\",\"javascript\",\"handlebars\"]}},c,{cN:\"pi\",b:/<\\?\\w+/,e:/\\?>/,r:10},{cN:\"tag\",b:\"</?\",e:\"/?>\",c:[{cN:\"title\",b:/[^ \\/><\\n\\t]+/,r:0},e]}]}});hljs.registerLanguage(\"elixir\",function(e){var n=\"[a-zA-Z_][a-zA-Z0-9_]*(\\\\!|\\\\?)?\",r=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",b=\"and false then defined module in return redo retry end for true self when next until do begin unless nil break not case cond alias while ensure or include use alias fn quote\",c={cN:\"subst\",b:\"#\\\\{\",e:\"}\",l:n,k:b},a={cN:\"string\",c:[e.BE,c],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/}]},i={cN:\"function\",bK:\"def defp defmacro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:n,endsParent:!0})]},s=e.inherit(i,{cN:\"class\",bK:\"defmodule defrecord\",e:/\\bdo\\b|$|;/}),l=[a,e.HCM,s,i,{cN:\"constant\",b:\"(\\\\b[A-Z_]\\\\w*(.)?)+\",r:0},{cN:\"symbol\",b:\":\",c:[a,{b:r}],r:0},{cN:\"symbol\",b:n+\":\",r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"->\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[e.HCM,{cN:\"regexp\",i:\"\\\\n\",c:[e.BE,c],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}],r:0}];return c.c=l,{l:n,k:b,c:l}});hljs.registerLanguage(\"autoit\",function(e){var t=\"ByRef Case Const ContinueCase ContinueLoop Default Dim Do Else ElseIf EndFunc EndIf EndSelect EndSwitch EndWith Enum Exit ExitLoop For Func Global If In Local Next ReDim Return Select Static Step Switch Then To Until Volatile WEnd While With\",r=\"True False And Null Not Or\",i=\"Abs ACos AdlibRegister AdlibUnRegister Asc AscW ASin Assign ATan AutoItSetOption AutoItWinGetTitle AutoItWinSetTitle Beep Binary BinaryLen BinaryMid BinaryToString BitAND BitNOT BitOR BitRotate BitShift BitXOR BlockInput Break Call CDTray Ceiling Chr ChrW ClipGet ClipPut ConsoleRead ConsoleWrite ConsoleWriteError ControlClick ControlCommand ControlDisable ControlEnable ControlFocus ControlGetFocus ControlGetHandle ControlGetPos ControlGetText ControlHide ControlListView ControlMove ControlSend ControlSetText ControlShow ControlTreeView Cos Dec DirCopy DirCreate DirGetSize DirMove DirRemove DllCall DllCallAddress DllCallbackFree DllCallbackGetPtr DllCallbackRegister DllClose DllOpen DllStructCreate DllStructGetData DllStructGetPtr DllStructGetSize DllStructSetData DriveGetDrive DriveGetFileSystem DriveGetLabel DriveGetSerial DriveGetType DriveMapAdd DriveMapDel DriveMapGet DriveSetLabel DriveSpaceFree DriveSpaceTotal DriveStatus EnvGet EnvSet EnvUpdate Eval Execute Exp FileChangeDir FileClose FileCopy FileCreateNTFSLink FileCreateShortcut FileDelete FileExists FileFindFirstFile FileFindNextFile FileFlush FileGetAttrib FileGetEncoding FileGetLongName FileGetPos FileGetShortcut FileGetShortName FileGetSize FileGetTime FileGetVersion FileInstall FileMove FileOpen FileOpenDialog FileRead FileReadLine FileReadToArray FileRecycle FileRecycleEmpty FileSaveDialog FileSelectFolder FileSetAttrib FileSetEnd FileSetPos FileSetTime FileWrite FileWriteLine Floor FtpSetProxy FuncName GUICreate GUICtrlCreateAvi GUICtrlCreateButton GUICtrlCreateCheckbox GUICtrlCreateCombo GUICtrlCreateContextMenu GUICtrlCreateDate GUICtrlCreateDummy GUICtrlCreateEdit GUICtrlCreateGraphic GUICtrlCreateGroup GUICtrlCreateIcon GUICtrlCreateInput GUICtrlCreateLabel GUICtrlCreateList GUICtrlCreateListView GUICtrlCreateListViewItem GUICtrlCreateMenu GUICtrlCreateMenuItem GUICtrlCreateMonthCal GUICtrlCreateObj GUICtrlCreatePic GUICtrlCreateProgress GUICtrlCreateRadio GUICtrlCreateSlider GUICtrlCreateTab GUICtrlCreateTabItem GUICtrlCreateTreeView GUICtrlCreateTreeViewItem GUICtrlCreateUpdown GUICtrlDelete GUICtrlGetHandle GUICtrlGetState GUICtrlRead GUICtrlRecvMsg GUICtrlRegisterListViewSort GUICtrlSendMsg GUICtrlSendToDummy GUICtrlSetBkColor GUICtrlSetColor GUICtrlSetCursor GUICtrlSetData GUICtrlSetDefBkColor GUICtrlSetDefColor GUICtrlSetFont GUICtrlSetGraphic GUICtrlSetImage GUICtrlSetLimit GUICtrlSetOnEvent GUICtrlSetPos GUICtrlSetResizing GUICtrlSetState GUICtrlSetStyle GUICtrlSetTip GUIDelete GUIGetCursorInfo GUIGetMsg GUIGetStyle GUIRegisterMsg GUISetAccelerators GUISetBkColor GUISetCoord GUISetCursor GUISetFont GUISetHelp GUISetIcon GUISetOnEvent GUISetState GUISetStyle GUIStartGroup GUISwitch Hex HotKeySet HttpSetProxy HttpSetUserAgent HWnd InetClose InetGet InetGetInfo InetGetSize InetRead IniDelete IniRead IniReadSection IniReadSectionNames IniRenameSection IniWrite IniWriteSection InputBox Int IsAdmin IsArray IsBinary IsBool IsDeclared IsDllStruct IsFloat IsFunc IsHWnd IsInt IsKeyword IsNumber IsObj IsPtr IsString Log MemGetStats Mod MouseClick MouseClickDrag MouseDown MouseGetCursor MouseGetPos MouseMove MouseUp MouseWheel MsgBox Number ObjCreate ObjCreateInterface ObjEvent ObjGet ObjName OnAutoItExitRegister OnAutoItExitUnRegister Opt Ping PixelChecksum PixelGetColor PixelSearch ProcessClose ProcessExists ProcessGetStats ProcessList ProcessSetPriority ProcessWait ProcessWaitClose ProgressOff ProgressOn ProgressSet Ptr Random RegDelete RegEnumKey RegEnumVal RegRead RegWrite Round Run RunAs RunAsWait RunWait Send SendKeepActive SetError SetExtended ShellExecute ShellExecuteWait Shutdown Sin Sleep SoundPlay SoundSetWaveVolume SplashImageOn SplashOff SplashTextOn Sqrt SRandom StatusbarGetText StderrRead StdinWrite StdioClose StdoutRead String StringAddCR StringCompare StringFormat StringFromASCIIArray StringInStr StringIsAlNum StringIsAlpha StringIsASCII StringIsDigit StringIsFloat StringIsInt StringIsLower StringIsSpace StringIsUpper StringIsXDigit StringLeft StringLen StringLower StringMid StringRegExp StringRegExpReplace StringReplace StringReverse StringRight StringSplit StringStripCR StringStripWS StringToASCIIArray StringToBinary StringTrimLeft StringTrimRight StringUpper Tan TCPAccept TCPCloseSocket TCPConnect TCPListen TCPNameToIP TCPRecv TCPSend TCPShutdown TCPStartup TimerDiff TimerInit ToolTip TrayCreateItem TrayCreateMenu TrayGetMsg TrayItemDelete TrayItemGetHandle TrayItemGetState TrayItemGetText TrayItemSetOnEvent TrayItemSetState TrayItemSetText TraySetClick TraySetIcon TraySetOnEvent TraySetPauseIcon TraySetState TraySetToolTip TrayTip UBound UDPBind UDPCloseSocket UDPOpen UDPRecv UDPSend UDPShutdown UDPStartup VarGetType WinActivate WinActive WinClose WinExists WinFlash WinGetCaretPos WinGetClassList WinGetClientSize WinGetHandle WinGetPos WinGetProcess WinGetState WinGetText WinGetTitle WinKill WinList WinMenuSelectItem WinMinimizeAll WinMinimizeAllUndo WinMove WinSetOnTop WinSetState WinSetTitle WinSetTrans WinWait WinWaitActive WinWaitClose WinWaitNotActive Array1DToHistogram ArrayAdd ArrayBinarySearch ArrayColDelete ArrayColInsert ArrayCombinations ArrayConcatenate ArrayDelete ArrayDisplay ArrayExtract ArrayFindAll ArrayInsert ArrayMax ArrayMaxIndex ArrayMin ArrayMinIndex ArrayPermute ArrayPop ArrayPush ArrayReverse ArraySearch ArrayShuffle ArraySort ArraySwap ArrayToClip ArrayToString ArrayTranspose ArrayTrim ArrayUnique Assert ChooseColor ChooseFont ClipBoard_ChangeChain ClipBoard_Close ClipBoard_CountFormats ClipBoard_Empty ClipBoard_EnumFormats ClipBoard_FormatStr ClipBoard_GetData ClipBoard_GetDataEx ClipBoard_GetFormatName ClipBoard_GetOpenWindow ClipBoard_GetOwner ClipBoard_GetPriorityFormat ClipBoard_GetSequenceNumber ClipBoard_GetViewer ClipBoard_IsFormatAvailable ClipBoard_Open ClipBoard_RegisterFormat ClipBoard_SetData ClipBoard_SetDataEx ClipBoard_SetViewer ClipPutFile ColorConvertHSLtoRGB ColorConvertRGBtoHSL ColorGetBlue ColorGetCOLORREF ColorGetGreen ColorGetRed ColorGetRGB ColorSetCOLORREF ColorSetRGB Crypt_DecryptData Crypt_DecryptFile Crypt_DeriveKey Crypt_DestroyKey Crypt_EncryptData Crypt_EncryptFile Crypt_GenRandom Crypt_HashData Crypt_HashFile Crypt_Shutdown Crypt_Startup DateAdd DateDayOfWeek DateDaysInMonth DateDiff DateIsLeapYear DateIsValid DateTimeFormat DateTimeSplit DateToDayOfWeek DateToDayOfWeekISO DateToDayValue DateToMonth Date_Time_CompareFileTime Date_Time_DOSDateTimeToArray Date_Time_DOSDateTimeToFileTime Date_Time_DOSDateTimeToStr Date_Time_DOSDateToArray Date_Time_DOSDateToStr Date_Time_DOSTimeToArray Date_Time_DOSTimeToStr Date_Time_EncodeFileTime Date_Time_EncodeSystemTime Date_Time_FileTimeToArray Date_Time_FileTimeToDOSDateTime Date_Time_FileTimeToLocalFileTime Date_Time_FileTimeToStr Date_Time_FileTimeToSystemTime Date_Time_GetFileTime Date_Time_GetLocalTime Date_Time_GetSystemTime Date_Time_GetSystemTimeAdjustment Date_Time_GetSystemTimeAsFileTime Date_Time_GetSystemTimes Date_Time_GetTickCount Date_Time_GetTimeZoneInformation Date_Time_LocalFileTimeToFileTime Date_Time_SetFileTime Date_Time_SetLocalTime Date_Time_SetSystemTime Date_Time_SetSystemTimeAdjustment Date_Time_SetTimeZoneInformation Date_Time_SystemTimeToArray Date_Time_SystemTimeToDateStr Date_Time_SystemTimeToDateTimeStr Date_Time_SystemTimeToFileTime Date_Time_SystemTimeToTimeStr Date_Time_SystemTimeToTzSpecificLocalTime Date_Time_TzSpecificLocalTimeToSystemTime DayValueToDate DebugBugReportEnv DebugCOMError DebugOut DebugReport DebugReportEx DebugReportVar DebugSetup Degree EventLog__Backup EventLog__Clear EventLog__Close EventLog__Count EventLog__DeregisterSource EventLog__Full EventLog__Notify EventLog__Oldest EventLog__Open EventLog__OpenBackup EventLog__Read EventLog__RegisterSource EventLog__Report Excel_BookAttach Excel_BookClose Excel_BookList Excel_BookNew Excel_BookOpen Excel_BookOpenText Excel_BookSave Excel_BookSaveAs Excel_Close Excel_ColumnToLetter Excel_ColumnToNumber Excel_ConvertFormula Excel_Export Excel_FilterGet Excel_FilterSet Excel_Open Excel_PictureAdd Excel_Print Excel_RangeCopyPaste Excel_RangeDelete Excel_RangeFind Excel_RangeInsert Excel_RangeLinkAddRemove Excel_RangeRead Excel_RangeReplace Excel_RangeSort Excel_RangeValidate Excel_RangeWrite Excel_SheetAdd Excel_SheetCopyMove Excel_SheetDelete Excel_SheetList FileCountLines FileCreate FileListToArray FileListToArrayRec FilePrint FileReadToArray FileWriteFromArray FileWriteLog FileWriteToLine FTP_Close FTP_Command FTP_Connect FTP_DecodeInternetStatus FTP_DirCreate FTP_DirDelete FTP_DirGetCurrent FTP_DirPutContents FTP_DirSetCurrent FTP_FileClose FTP_FileDelete FTP_FileGet FTP_FileGetSize FTP_FileOpen FTP_FilePut FTP_FileRead FTP_FileRename FTP_FileTimeLoHiToStr FTP_FindFileClose FTP_FindFileFirst FTP_FindFileNext FTP_GetLastResponseInfo FTP_ListToArray FTP_ListToArray2D FTP_ListToArrayEx FTP_Open FTP_ProgressDownload FTP_ProgressUpload FTP_SetStatusCallback GDIPlus_ArrowCapCreate GDIPlus_ArrowCapDispose GDIPlus_ArrowCapGetFillState GDIPlus_ArrowCapGetHeight GDIPlus_ArrowCapGetMiddleInset GDIPlus_ArrowCapGetWidth GDIPlus_ArrowCapSetFillState GDIPlus_ArrowCapSetHeight GDIPlus_ArrowCapSetMiddleInset GDIPlus_ArrowCapSetWidth GDIPlus_BitmapApplyEffect GDIPlus_BitmapApplyEffectEx GDIPlus_BitmapCloneArea GDIPlus_BitmapConvertFormat GDIPlus_BitmapCreateApplyEffect GDIPlus_BitmapCreateApplyEffectEx GDIPlus_BitmapCreateDIBFromBitmap GDIPlus_BitmapCreateFromFile GDIPlus_BitmapCreateFromGraphics GDIPlus_BitmapCreateFromHBITMAP GDIPlus_BitmapCreateFromHICON GDIPlus_BitmapCreateFromHICON32 GDIPlus_BitmapCreateFromMemory GDIPlus_BitmapCreateFromResource GDIPlus_BitmapCreateFromScan0 GDIPlus_BitmapCreateFromStream GDIPlus_BitmapCreateHBITMAPFromBitmap GDIPlus_BitmapDispose GDIPlus_BitmapGetHistogram GDIPlus_BitmapGetHistogramEx GDIPlus_BitmapGetHistogramSize GDIPlus_BitmapGetPixel GDIPlus_BitmapLockBits GDIPlus_BitmapSetPixel GDIPlus_BitmapUnlockBits GDIPlus_BrushClone GDIPlus_BrushCreateSolid GDIPlus_BrushDispose GDIPlus_BrushGetSolidColor GDIPlus_BrushGetType GDIPlus_BrushSetSolidColor GDIPlus_ColorMatrixCreate GDIPlus_ColorMatrixCreateGrayScale GDIPlus_ColorMatrixCreateNegative GDIPlus_ColorMatrixCreateSaturation GDIPlus_ColorMatrixCreateScale GDIPlus_ColorMatrixCreateTranslate GDIPlus_CustomLineCapClone GDIPlus_CustomLineCapCreate GDIPlus_CustomLineCapDispose GDIPlus_CustomLineCapGetStrokeCaps GDIPlus_CustomLineCapSetStrokeCaps GDIPlus_Decoders GDIPlus_DecodersGetCount GDIPlus_DecodersGetSize GDIPlus_DrawImageFX GDIPlus_DrawImageFXEx GDIPlus_DrawImagePoints GDIPlus_EffectCreate GDIPlus_EffectCreateBlur GDIPlus_EffectCreateBrightnessContrast GDIPlus_EffectCreateColorBalance GDIPlus_EffectCreateColorCurve GDIPlus_EffectCreateColorLUT GDIPlus_EffectCreateColorMatrix GDIPlus_EffectCreateHueSaturationLightness GDIPlus_EffectCreateLevels GDIPlus_EffectCreateRedEyeCorrection GDIPlus_EffectCreateSharpen GDIPlus_EffectCreateTint GDIPlus_EffectDispose GDIPlus_EffectGetParameters GDIPlus_EffectSetParameters GDIPlus_Encoders GDIPlus_EncodersGetCLSID GDIPlus_EncodersGetCount GDIPlus_EncodersGetParamList GDIPlus_EncodersGetParamListSize GDIPlus_EncodersGetSize GDIPlus_FontCreate GDIPlus_FontDispose GDIPlus_FontFamilyCreate GDIPlus_FontFamilyCreateFromCollection GDIPlus_FontFamilyDispose GDIPlus_FontFamilyGetCellAscent GDIPlus_FontFamilyGetCellDescent GDIPlus_FontFamilyGetEmHeight GDIPlus_FontFamilyGetLineSpacing GDIPlus_FontGetHeight GDIPlus_FontPrivateAddFont GDIPlus_FontPrivateAddMemoryFont GDIPlus_FontPrivateCollectionDispose GDIPlus_FontPrivateCreateCollection GDIPlus_GraphicsClear GDIPlus_GraphicsCreateFromHDC GDIPlus_GraphicsCreateFromHWND GDIPlus_GraphicsDispose GDIPlus_GraphicsDrawArc GDIPlus_GraphicsDrawBezier GDIPlus_GraphicsDrawClosedCurve GDIPlus_GraphicsDrawClosedCurve2 GDIPlus_GraphicsDrawCurve GDIPlus_GraphicsDrawCurve2 GDIPlus_GraphicsDrawEllipse GDIPlus_GraphicsDrawImage GDIPlus_GraphicsDrawImagePointsRect GDIPlus_GraphicsDrawImageRect GDIPlus_GraphicsDrawImageRectRect GDIPlus_GraphicsDrawLine GDIPlus_GraphicsDrawPath GDIPlus_GraphicsDrawPie GDIPlus_GraphicsDrawPolygon GDIPlus_GraphicsDrawRect GDIPlus_GraphicsDrawString GDIPlus_GraphicsDrawStringEx GDIPlus_GraphicsFillClosedCurve GDIPlus_GraphicsFillClosedCurve2 GDIPlus_GraphicsFillEllipse GDIPlus_GraphicsFillPath GDIPlus_GraphicsFillPie GDIPlus_GraphicsFillPolygon GDIPlus_GraphicsFillRect GDIPlus_GraphicsFillRegion GDIPlus_GraphicsGetCompositingMode GDIPlus_GraphicsGetCompositingQuality GDIPlus_GraphicsGetDC GDIPlus_GraphicsGetInterpolationMode GDIPlus_GraphicsGetSmoothingMode GDIPlus_GraphicsGetTransform GDIPlus_GraphicsMeasureCharacterRanges GDIPlus_GraphicsMeasureString GDIPlus_GraphicsReleaseDC GDIPlus_GraphicsResetClip GDIPlus_GraphicsResetTransform GDIPlus_GraphicsRestore GDIPlus_GraphicsRotateTransform GDIPlus_GraphicsSave GDIPlus_GraphicsScaleTransform GDIPlus_GraphicsSetClipPath GDIPlus_GraphicsSetClipRect GDIPlus_GraphicsSetClipRegion GDIPlus_GraphicsSetCompositingMode GDIPlus_GraphicsSetCompositingQuality GDIPlus_GraphicsSetInterpolationMode GDIPlus_GraphicsSetPixelOffsetMode GDIPlus_GraphicsSetSmoothingMode GDIPlus_GraphicsSetTextRenderingHint GDIPlus_GraphicsSetTransform GDIPlus_GraphicsTransformPoints GDIPlus_GraphicsTranslateTransform GDIPlus_HatchBrushCreate GDIPlus_HICONCreateFromBitmap GDIPlus_ImageAttributesCreate GDIPlus_ImageAttributesDispose GDIPlus_ImageAttributesSetColorKeys GDIPlus_ImageAttributesSetColorMatrix GDIPlus_ImageDispose GDIPlus_ImageGetDimension GDIPlus_ImageGetFlags GDIPlus_ImageGetGraphicsContext GDIPlus_ImageGetHeight GDIPlus_ImageGetHorizontalResolution GDIPlus_ImageGetPixelFormat GDIPlus_ImageGetRawFormat GDIPlus_ImageGetThumbnail GDIPlus_ImageGetType GDIPlus_ImageGetVerticalResolution GDIPlus_ImageGetWidth GDIPlus_ImageLoadFromFile GDIPlus_ImageLoadFromStream GDIPlus_ImageResize GDIPlus_ImageRotateFlip GDIPlus_ImageSaveToFile GDIPlus_ImageSaveToFileEx GDIPlus_ImageSaveToStream GDIPlus_ImageScale GDIPlus_LineBrushCreate GDIPlus_LineBrushCreateFromRect GDIPlus_LineBrushCreateFromRectWithAngle GDIPlus_LineBrushGetColors GDIPlus_LineBrushGetRect GDIPlus_LineBrushMultiplyTransform GDIPlus_LineBrushResetTransform GDIPlus_LineBrushSetBlend GDIPlus_LineBrushSetColors GDIPlus_LineBrushSetGammaCorrection GDIPlus_LineBrushSetLinearBlend GDIPlus_LineBrushSetPresetBlend GDIPlus_LineBrushSetSigmaBlend GDIPlus_LineBrushSetTransform GDIPlus_MatrixClone GDIPlus_MatrixCreate GDIPlus_MatrixDispose GDIPlus_MatrixGetElements GDIPlus_MatrixInvert GDIPlus_MatrixMultiply GDIPlus_MatrixRotate GDIPlus_MatrixScale GDIPlus_MatrixSetElements GDIPlus_MatrixShear GDIPlus_MatrixTransformPoints GDIPlus_MatrixTranslate GDIPlus_PaletteInitialize GDIPlus_ParamAdd GDIPlus_ParamInit GDIPlus_ParamSize GDIPlus_PathAddArc GDIPlus_PathAddBezier GDIPlus_PathAddClosedCurve GDIPlus_PathAddClosedCurve2 GDIPlus_PathAddCurve GDIPlus_PathAddCurve2 GDIPlus_PathAddCurve3 GDIPlus_PathAddEllipse GDIPlus_PathAddLine GDIPlus_PathAddLine2 GDIPlus_PathAddPath GDIPlus_PathAddPie GDIPlus_PathAddPolygon GDIPlus_PathAddRectangle GDIPlus_PathAddString GDIPlus_PathBrushCreate GDIPlus_PathBrushCreateFromPath GDIPlus_PathBrushGetCenterPoint GDIPlus_PathBrushGetFocusScales GDIPlus_PathBrushGetPointCount GDIPlus_PathBrushGetRect GDIPlus_PathBrushGetWrapMode GDIPlus_PathBrushMultiplyTransform GDIPlus_PathBrushResetTransform GDIPlus_PathBrushSetBlend GDIPlus_PathBrushSetCenterColor GDIPlus_PathBrushSetCenterPoint GDIPlus_PathBrushSetFocusScales GDIPlus_PathBrushSetGammaCorrection GDIPlus_PathBrushSetLinearBlend GDIPlus_PathBrushSetPresetBlend GDIPlus_PathBrushSetSigmaBlend GDIPlus_PathBrushSetSurroundColor GDIPlus_PathBrushSetSurroundColorsWithCount GDIPlus_PathBrushSetTransform GDIPlus_PathBrushSetWrapMode GDIPlus_PathClone GDIPlus_PathCloseFigure GDIPlus_PathCreate GDIPlus_PathCreate2 GDIPlus_PathDispose GDIPlus_PathFlatten GDIPlus_PathGetData GDIPlus_PathGetFillMode GDIPlus_PathGetLastPoint GDIPlus_PathGetPointCount GDIPlus_PathGetPoints GDIPlus_PathGetWorldBounds GDIPlus_PathIsOutlineVisiblePoint GDIPlus_PathIsVisiblePoint GDIPlus_PathIterCreate GDIPlus_PathIterDispose GDIPlus_PathIterGetSubpathCount GDIPlus_PathIterNextMarkerPath GDIPlus_PathIterNextSubpathPath GDIPlus_PathIterRewind GDIPlus_PathReset GDIPlus_PathReverse GDIPlus_PathSetFillMode GDIPlus_PathSetMarker GDIPlus_PathStartFigure GDIPlus_PathTransform GDIPlus_PathWarp GDIPlus_PathWiden GDIPlus_PathWindingModeOutline GDIPlus_PenCreate GDIPlus_PenCreate2 GDIPlus_PenDispose GDIPlus_PenGetAlignment GDIPlus_PenGetColor GDIPlus_PenGetCustomEndCap GDIPlus_PenGetDashCap GDIPlus_PenGetDashStyle GDIPlus_PenGetEndCap GDIPlus_PenGetMiterLimit GDIPlus_PenGetWidth GDIPlus_PenSetAlignment GDIPlus_PenSetColor GDIPlus_PenSetCustomEndCap GDIPlus_PenSetDashCap GDIPlus_PenSetDashStyle GDIPlus_PenSetEndCap GDIPlus_PenSetLineCap GDIPlus_PenSetLineJoin GDIPlus_PenSetMiterLimit GDIPlus_PenSetStartCap GDIPlus_PenSetWidth GDIPlus_RectFCreate GDIPlus_RegionClone GDIPlus_RegionCombinePath GDIPlus_RegionCombineRect GDIPlus_RegionCombineRegion GDIPlus_RegionCreate GDIPlus_RegionCreateFromPath GDIPlus_RegionCreateFromRect GDIPlus_RegionDispose GDIPlus_RegionGetBounds GDIPlus_RegionGetHRgn GDIPlus_RegionTransform GDIPlus_RegionTranslate GDIPlus_Shutdown GDIPlus_Startup GDIPlus_StringFormatCreate GDIPlus_StringFormatDispose GDIPlus_StringFormatGetMeasurableCharacterRangeCount GDIPlus_StringFormatSetAlign GDIPlus_StringFormatSetLineAlign GDIPlus_StringFormatSetMeasurableCharacterRanges GDIPlus_TextureCreate GDIPlus_TextureCreate2 GDIPlus_TextureCreateIA GetIP GUICtrlAVI_Close GUICtrlAVI_Create GUICtrlAVI_Destroy GUICtrlAVI_IsPlaying GUICtrlAVI_Open GUICtrlAVI_OpenEx GUICtrlAVI_Play GUICtrlAVI_Seek GUICtrlAVI_Show GUICtrlAVI_Stop GUICtrlButton_Click GUICtrlButton_Create GUICtrlButton_Destroy GUICtrlButton_Enable GUICtrlButton_GetCheck GUICtrlButton_GetFocus GUICtrlButton_GetIdealSize GUICtrlButton_GetImage GUICtrlButton_GetImageList GUICtrlButton_GetNote GUICtrlButton_GetNoteLength GUICtrlButton_GetSplitInfo GUICtrlButton_GetState GUICtrlButton_GetText GUICtrlButton_GetTextMargin GUICtrlButton_SetCheck GUICtrlButton_SetDontClick GUICtrlButton_SetFocus GUICtrlButton_SetImage GUICtrlButton_SetImageList GUICtrlButton_SetNote GUICtrlButton_SetShield GUICtrlButton_SetSize GUICtrlButton_SetSplitInfo GUICtrlButton_SetState GUICtrlButton_SetStyle GUICtrlButton_SetText GUICtrlButton_SetTextMargin GUICtrlButton_Show GUICtrlComboBoxEx_AddDir GUICtrlComboBoxEx_AddString GUICtrlComboBoxEx_BeginUpdate GUICtrlComboBoxEx_Create GUICtrlComboBoxEx_CreateSolidBitMap GUICtrlComboBoxEx_DeleteString GUICtrlComboBoxEx_Destroy GUICtrlComboBoxEx_EndUpdate GUICtrlComboBoxEx_FindStringExact GUICtrlComboBoxEx_GetComboBoxInfo GUICtrlComboBoxEx_GetComboControl GUICtrlComboBoxEx_GetCount GUICtrlComboBoxEx_GetCurSel GUICtrlComboBoxEx_GetDroppedControlRect GUICtrlComboBoxEx_GetDroppedControlRectEx GUICtrlComboBoxEx_GetDroppedState GUICtrlComboBoxEx_GetDroppedWidth GUICtrlComboBoxEx_GetEditControl GUICtrlComboBoxEx_GetEditSel GUICtrlComboBoxEx_GetEditText GUICtrlComboBoxEx_GetExtendedStyle GUICtrlComboBoxEx_GetExtendedUI GUICtrlComboBoxEx_GetImageList GUICtrlComboBoxEx_GetItem GUICtrlComboBoxEx_GetItemEx GUICtrlComboBoxEx_GetItemHeight GUICtrlComboBoxEx_GetItemImage GUICtrlComboBoxEx_GetItemIndent GUICtrlComboBoxEx_GetItemOverlayImage GUICtrlComboBoxEx_GetItemParam GUICtrlComboBoxEx_GetItemSelectedImage GUICtrlComboBoxEx_GetItemText GUICtrlComboBoxEx_GetItemTextLen GUICtrlComboBoxEx_GetList GUICtrlComboBoxEx_GetListArray GUICtrlComboBoxEx_GetLocale GUICtrlComboBoxEx_GetLocaleCountry GUICtrlComboBoxEx_GetLocaleLang GUICtrlComboBoxEx_GetLocalePrimLang GUICtrlComboBoxEx_GetLocaleSubLang GUICtrlComboBoxEx_GetMinVisible GUICtrlComboBoxEx_GetTopIndex GUICtrlComboBoxEx_GetUnicode GUICtrlComboBoxEx_InitStorage GUICtrlComboBoxEx_InsertString GUICtrlComboBoxEx_LimitText GUICtrlComboBoxEx_ReplaceEditSel GUICtrlComboBoxEx_ResetContent GUICtrlComboBoxEx_SetCurSel GUICtrlComboBoxEx_SetDroppedWidth GUICtrlComboBoxEx_SetEditSel GUICtrlComboBoxEx_SetEditText GUICtrlComboBoxEx_SetExtendedStyle GUICtrlComboBoxEx_SetExtendedUI GUICtrlComboBoxEx_SetImageList GUICtrlComboBoxEx_SetItem GUICtrlComboBoxEx_SetItemEx GUICtrlComboBoxEx_SetItemHeight GUICtrlComboBoxEx_SetItemImage GUICtrlComboBoxEx_SetItemIndent GUICtrlComboBoxEx_SetItemOverlayImage GUICtrlComboBoxEx_SetItemParam GUICtrlComboBoxEx_SetItemSelectedImage GUICtrlComboBoxEx_SetMinVisible GUICtrlComboBoxEx_SetTopIndex GUICtrlComboBoxEx_SetUnicode GUICtrlComboBoxEx_ShowDropDown GUICtrlComboBox_AddDir GUICtrlComboBox_AddString GUICtrlComboBox_AutoComplete GUICtrlComboBox_BeginUpdate GUICtrlComboBox_Create GUICtrlComboBox_DeleteString GUICtrlComboBox_Destroy GUICtrlComboBox_EndUpdate GUICtrlComboBox_FindString GUICtrlComboBox_FindStringExact GUICtrlComboBox_GetComboBoxInfo GUICtrlComboBox_GetCount GUICtrlComboBox_GetCueBanner GUICtrlComboBox_GetCurSel GUICtrlComboBox_GetDroppedControlRect GUICtrlComboBox_GetDroppedControlRectEx GUICtrlComboBox_GetDroppedState GUICtrlComboBox_GetDroppedWidth GUICtrlComboBox_GetEditSel GUICtrlComboBox_GetEditText GUICtrlComboBox_GetExtendedUI GUICtrlComboBox_GetHorizontalExtent GUICtrlComboBox_GetItemHeight GUICtrlComboBox_GetLBText GUICtrlComboBox_GetLBTextLen GUICtrlComboBox_GetList GUICtrlComboBox_GetListArray GUICtrlComboBox_GetLocale GUICtrlComboBox_GetLocaleCountry GUICtrlComboBox_GetLocaleLang GUICtrlComboBox_GetLocalePrimLang GUICtrlComboBox_GetLocaleSubLang GUICtrlComboBox_GetMinVisible GUICtrlComboBox_GetTopIndex GUICtrlComboBox_InitStorage GUICtrlComboBox_InsertString GUICtrlComboBox_LimitText GUICtrlComboBox_ReplaceEditSel GUICtrlComboBox_ResetContent GUICtrlComboBox_SelectString GUICtrlComboBox_SetCueBanner GUICtrlComboBox_SetCurSel GUICtrlComboBox_SetDroppedWidth GUICtrlComboBox_SetEditSel GUICtrlComboBox_SetEditText GUICtrlComboBox_SetExtendedUI GUICtrlComboBox_SetHorizontalExtent GUICtrlComboBox_SetItemHeight GUICtrlComboBox_SetMinVisible GUICtrlComboBox_SetTopIndex GUICtrlComboBox_ShowDropDown GUICtrlDTP_Create GUICtrlDTP_Destroy GUICtrlDTP_GetMCColor GUICtrlDTP_GetMCFont GUICtrlDTP_GetMonthCal GUICtrlDTP_GetRange GUICtrlDTP_GetRangeEx GUICtrlDTP_GetSystemTime GUICtrlDTP_GetSystemTimeEx GUICtrlDTP_SetFormat GUICtrlDTP_SetMCColor GUICtrlDTP_SetMCFont GUICtrlDTP_SetRange GUICtrlDTP_SetRangeEx GUICtrlDTP_SetSystemTime GUICtrlDTP_SetSystemTimeEx GUICtrlEdit_AppendText GUICtrlEdit_BeginUpdate GUICtrlEdit_CanUndo GUICtrlEdit_CharFromPos GUICtrlEdit_Create GUICtrlEdit_Destroy GUICtrlEdit_EmptyUndoBuffer GUICtrlEdit_EndUpdate GUICtrlEdit_Find GUICtrlEdit_FmtLines GUICtrlEdit_GetCueBanner GUICtrlEdit_GetFirstVisibleLine GUICtrlEdit_GetLimitText GUICtrlEdit_GetLine GUICtrlEdit_GetLineCount GUICtrlEdit_GetMargins GUICtrlEdit_GetModify GUICtrlEdit_GetPasswordChar GUICtrlEdit_GetRECT GUICtrlEdit_GetRECTEx GUICtrlEdit_GetSel GUICtrlEdit_GetText GUICtrlEdit_GetTextLen GUICtrlEdit_HideBalloonTip GUICtrlEdit_InsertText GUICtrlEdit_LineFromChar GUICtrlEdit_LineIndex GUICtrlEdit_LineLength GUICtrlEdit_LineScroll GUICtrlEdit_PosFromChar GUICtrlEdit_ReplaceSel GUICtrlEdit_Scroll GUICtrlEdit_SetCueBanner GUICtrlEdit_SetLimitText GUICtrlEdit_SetMargins GUICtrlEdit_SetModify GUICtrlEdit_SetPasswordChar GUICtrlEdit_SetReadOnly GUICtrlEdit_SetRECT GUICtrlEdit_SetRECTEx GUICtrlEdit_SetRECTNP GUICtrlEdit_SetRectNPEx GUICtrlEdit_SetSel GUICtrlEdit_SetTabStops GUICtrlEdit_SetText GUICtrlEdit_ShowBalloonTip GUICtrlEdit_Undo GUICtrlHeader_AddItem GUICtrlHeader_ClearFilter GUICtrlHeader_ClearFilterAll GUICtrlHeader_Create GUICtrlHeader_CreateDragImage GUICtrlHeader_DeleteItem GUICtrlHeader_Destroy GUICtrlHeader_EditFilter GUICtrlHeader_GetBitmapMargin GUICtrlHeader_GetImageList GUICtrlHeader_GetItem GUICtrlHeader_GetItemAlign GUICtrlHeader_GetItemBitmap GUICtrlHeader_GetItemCount GUICtrlHeader_GetItemDisplay GUICtrlHeader_GetItemFlags GUICtrlHeader_GetItemFormat GUICtrlHeader_GetItemImage GUICtrlHeader_GetItemOrder GUICtrlHeader_GetItemParam GUICtrlHeader_GetItemRect GUICtrlHeader_GetItemRectEx GUICtrlHeader_GetItemText GUICtrlHeader_GetItemWidth GUICtrlHeader_GetOrderArray GUICtrlHeader_GetUnicodeFormat GUICtrlHeader_HitTest GUICtrlHeader_InsertItem GUICtrlHeader_Layout GUICtrlHeader_OrderToIndex GUICtrlHeader_SetBitmapMargin GUICtrlHeader_SetFilterChangeTimeout GUICtrlHeader_SetHotDivider GUICtrlHeader_SetImageList GUICtrlHeader_SetItem GUICtrlHeader_SetItemAlign GUICtrlHeader_SetItemBitmap GUICtrlHeader_SetItemDisplay GUICtrlHeader_SetItemFlags GUICtrlHeader_SetItemFormat GUICtrlHeader_SetItemImage GUICtrlHeader_SetItemOrder GUICtrlHeader_SetItemParam GUICtrlHeader_SetItemText GUICtrlHeader_SetItemWidth GUICtrlHeader_SetOrderArray GUICtrlHeader_SetUnicodeFormat GUICtrlIpAddress_ClearAddress GUICtrlIpAddress_Create GUICtrlIpAddress_Destroy GUICtrlIpAddress_Get GUICtrlIpAddress_GetArray GUICtrlIpAddress_GetEx GUICtrlIpAddress_IsBlank GUICtrlIpAddress_Set GUICtrlIpAddress_SetArray GUICtrlIpAddress_SetEx GUICtrlIpAddress_SetFocus GUICtrlIpAddress_SetFont GUICtrlIpAddress_SetRange GUICtrlIpAddress_ShowHide GUICtrlListBox_AddFile GUICtrlListBox_AddString GUICtrlListBox_BeginUpdate GUICtrlListBox_ClickItem GUICtrlListBox_Create GUICtrlListBox_DeleteString GUICtrlListBox_Destroy GUICtrlListBox_Dir GUICtrlListBox_EndUpdate GUICtrlListBox_FindInText GUICtrlListBox_FindString GUICtrlListBox_GetAnchorIndex GUICtrlListBox_GetCaretIndex GUICtrlListBox_GetCount GUICtrlListBox_GetCurSel GUICtrlListBox_GetHorizontalExtent GUICtrlListBox_GetItemData GUICtrlListBox_GetItemHeight GUICtrlListBox_GetItemRect GUICtrlListBox_GetItemRectEx GUICtrlListBox_GetListBoxInfo GUICtrlListBox_GetLocale GUICtrlListBox_GetLocaleCountry GUICtrlListBox_GetLocaleLang GUICtrlListBox_GetLocalePrimLang GUICtrlListBox_GetLocaleSubLang GUICtrlListBox_GetSel GUICtrlListBox_GetSelCount GUICtrlListBox_GetSelItems GUICtrlListBox_GetSelItemsText GUICtrlListBox_GetText GUICtrlListBox_GetTextLen GUICtrlListBox_GetTopIndex GUICtrlListBox_InitStorage GUICtrlListBox_InsertString GUICtrlListBox_ItemFromPoint GUICtrlListBox_ReplaceString GUICtrlListBox_ResetContent GUICtrlListBox_SelectString GUICtrlListBox_SelItemRange GUICtrlListBox_SelItemRangeEx GUICtrlListBox_SetAnchorIndex GUICtrlListBox_SetCaretIndex GUICtrlListBox_SetColumnWidth GUICtrlListBox_SetCurSel GUICtrlListBox_SetHorizontalExtent GUICtrlListBox_SetItemData GUICtrlListBox_SetItemHeight GUICtrlListBox_SetLocale GUICtrlListBox_SetSel GUICtrlListBox_SetTabStops GUICtrlListBox_SetTopIndex GUICtrlListBox_Sort GUICtrlListBox_SwapString GUICtrlListBox_UpdateHScroll GUICtrlListView_AddArray GUICtrlListView_AddColumn GUICtrlListView_AddItem GUICtrlListView_AddSubItem GUICtrlListView_ApproximateViewHeight GUICtrlListView_ApproximateViewRect GUICtrlListView_ApproximateViewWidth GUICtrlListView_Arrange GUICtrlListView_BeginUpdate GUICtrlListView_CancelEditLabel GUICtrlListView_ClickItem GUICtrlListView_CopyItems GUICtrlListView_Create GUICtrlListView_CreateDragImage GUICtrlListView_CreateSolidBitMap GUICtrlListView_DeleteAllItems GUICtrlListView_DeleteColumn GUICtrlListView_DeleteItem GUICtrlListView_DeleteItemsSelected GUICtrlListView_Destroy GUICtrlListView_DrawDragImage GUICtrlListView_EditLabel GUICtrlListView_EnableGroupView GUICtrlListView_EndUpdate GUICtrlListView_EnsureVisible GUICtrlListView_FindInText GUICtrlListView_FindItem GUICtrlListView_FindNearest GUICtrlListView_FindParam GUICtrlListView_FindText GUICtrlListView_GetBkColor GUICtrlListView_GetBkImage GUICtrlListView_GetCallbackMask GUICtrlListView_GetColumn GUICtrlListView_GetColumnCount GUICtrlListView_GetColumnOrder GUICtrlListView_GetColumnOrderArray GUICtrlListView_GetColumnWidth GUICtrlListView_GetCounterPage GUICtrlListView_GetEditControl GUICtrlListView_GetExtendedListViewStyle GUICtrlListView_GetFocusedGroup GUICtrlListView_GetGroupCount GUICtrlListView_GetGroupInfo GUICtrlListView_GetGroupInfoByIndex GUICtrlListView_GetGroupRect GUICtrlListView_GetGroupViewEnabled GUICtrlListView_GetHeader GUICtrlListView_GetHotCursor GUICtrlListView_GetHotItem GUICtrlListView_GetHoverTime GUICtrlListView_GetImageList GUICtrlListView_GetISearchString GUICtrlListView_GetItem GUICtrlListView_GetItemChecked GUICtrlListView_GetItemCount GUICtrlListView_GetItemCut GUICtrlListView_GetItemDropHilited GUICtrlListView_GetItemEx GUICtrlListView_GetItemFocused GUICtrlListView_GetItemGroupID GUICtrlListView_GetItemImage GUICtrlListView_GetItemIndent GUICtrlListView_GetItemParam GUICtrlListView_GetItemPosition GUICtrlListView_GetItemPositionX GUICtrlListView_GetItemPositionY GUICtrlListView_GetItemRect GUICtrlListView_GetItemRectEx GUICtrlListView_GetItemSelected GUICtrlListView_GetItemSpacing GUICtrlListView_GetItemSpacingX GUICtrlListView_GetItemSpacingY GUICtrlListView_GetItemState GUICtrlListView_GetItemStateImage GUICtrlListView_GetItemText GUICtrlListView_GetItemTextArray GUICtrlListView_GetItemTextString GUICtrlListView_GetNextItem GUICtrlListView_GetNumberOfWorkAreas GUICtrlListView_GetOrigin GUICtrlListView_GetOriginX GUICtrlListView_GetOriginY GUICtrlListView_GetOutlineColor GUICtrlListView_GetSelectedColumn GUICtrlListView_GetSelectedCount GUICtrlListView_GetSelectedIndices GUICtrlListView_GetSelectionMark GUICtrlListView_GetStringWidth GUICtrlListView_GetSubItemRect GUICtrlListView_GetTextBkColor GUICtrlListView_GetTextColor GUICtrlListView_GetToolTips GUICtrlListView_GetTopIndex GUICtrlListView_GetUnicodeFormat GUICtrlListView_GetView GUICtrlListView_GetViewDetails GUICtrlListView_GetViewLarge GUICtrlListView_GetViewList GUICtrlListView_GetViewRect GUICtrlListView_GetViewSmall GUICtrlListView_GetViewTile GUICtrlListView_HideColumn GUICtrlListView_HitTest GUICtrlListView_InsertColumn GUICtrlListView_InsertGroup GUICtrlListView_InsertItem GUICtrlListView_JustifyColumn GUICtrlListView_MapIDToIndex GUICtrlListView_MapIndexToID GUICtrlListView_RedrawItems GUICtrlListView_RegisterSortCallBack GUICtrlListView_RemoveAllGroups GUICtrlListView_RemoveGroup GUICtrlListView_Scroll GUICtrlListView_SetBkColor GUICtrlListView_SetBkImage GUICtrlListView_SetCallBackMask GUICtrlListView_SetColumn GUICtrlListView_SetColumnOrder GUICtrlListView_SetColumnOrderArray GUICtrlListView_SetColumnWidth GUICtrlListView_SetExtendedListViewStyle GUICtrlListView_SetGroupInfo GUICtrlListView_SetHotItem GUICtrlListView_SetHoverTime GUICtrlListView_SetIconSpacing GUICtrlListView_SetImageList GUICtrlListView_SetItem GUICtrlListView_SetItemChecked GUICtrlListView_SetItemCount GUICtrlListView_SetItemCut GUICtrlListView_SetItemDropHilited GUICtrlListView_SetItemEx GUICtrlListView_SetItemFocused GUICtrlListView_SetItemGroupID GUICtrlListView_SetItemImage GUICtrlListView_SetItemIndent GUICtrlListView_SetItemParam GUICtrlListView_SetItemPosition GUICtrlListView_SetItemPosition32 GUICtrlListView_SetItemSelected GUICtrlListView_SetItemState GUICtrlListView_SetItemStateImage GUICtrlListView_SetItemText GUICtrlListView_SetOutlineColor GUICtrlListView_SetSelectedColumn GUICtrlListView_SetSelectionMark GUICtrlListView_SetTextBkColor GUICtrlListView_SetTextColor GUICtrlListView_SetToolTips GUICtrlListView_SetUnicodeFormat GUICtrlListView_SetView GUICtrlListView_SetWorkAreas GUICtrlListView_SimpleSort GUICtrlListView_SortItems GUICtrlListView_SubItemHitTest GUICtrlListView_UnRegisterSortCallBack GUICtrlMenu_AddMenuItem GUICtrlMenu_AppendMenu GUICtrlMenu_CalculatePopupWindowPosition GUICtrlMenu_CheckMenuItem GUICtrlMenu_CheckRadioItem GUICtrlMenu_CreateMenu GUICtrlMenu_CreatePopup GUICtrlMenu_DeleteMenu GUICtrlMenu_DestroyMenu GUICtrlMenu_DrawMenuBar GUICtrlMenu_EnableMenuItem GUICtrlMenu_FindItem GUICtrlMenu_FindParent GUICtrlMenu_GetItemBmp GUICtrlMenu_GetItemBmpChecked GUICtrlMenu_GetItemBmpUnchecked GUICtrlMenu_GetItemChecked GUICtrlMenu_GetItemCount GUICtrlMenu_GetItemData GUICtrlMenu_GetItemDefault GUICtrlMenu_GetItemDisabled GUICtrlMenu_GetItemEnabled GUICtrlMenu_GetItemGrayed GUICtrlMenu_GetItemHighlighted GUICtrlMenu_GetItemID GUICtrlMenu_GetItemInfo GUICtrlMenu_GetItemRect GUICtrlMenu_GetItemRectEx GUICtrlMenu_GetItemState GUICtrlMenu_GetItemStateEx GUICtrlMenu_GetItemSubMenu GUICtrlMenu_GetItemText GUICtrlMenu_GetItemType GUICtrlMenu_GetMenu GUICtrlMenu_GetMenuBackground GUICtrlMenu_GetMenuBarInfo GUICtrlMenu_GetMenuContextHelpID GUICtrlMenu_GetMenuData GUICtrlMenu_GetMenuDefaultItem GUICtrlMenu_GetMenuHeight GUICtrlMenu_GetMenuInfo GUICtrlMenu_GetMenuStyle GUICtrlMenu_GetSystemMenu GUICtrlMenu_InsertMenuItem GUICtrlMenu_InsertMenuItemEx GUICtrlMenu_IsMenu GUICtrlMenu_LoadMenu GUICtrlMenu_MapAccelerator GUICtrlMenu_MenuItemFromPoint GUICtrlMenu_RemoveMenu GUICtrlMenu_SetItemBitmaps GUICtrlMenu_SetItemBmp GUICtrlMenu_SetItemBmpChecked GUICtrlMenu_SetItemBmpUnchecked GUICtrlMenu_SetItemChecked GUICtrlMenu_SetItemData GUICtrlMenu_SetItemDefault GUICtrlMenu_SetItemDisabled GUICtrlMenu_SetItemEnabled GUICtrlMenu_SetItemGrayed GUICtrlMenu_SetItemHighlighted GUICtrlMenu_SetItemID GUICtrlMenu_SetItemInfo GUICtrlMenu_SetItemState GUICtrlMenu_SetItemSubMenu GUICtrlMenu_SetItemText GUICtrlMenu_SetItemType GUICtrlMenu_SetMenu GUICtrlMenu_SetMenuBackground GUICtrlMenu_SetMenuContextHelpID GUICtrlMenu_SetMenuData GUICtrlMenu_SetMenuDefaultItem GUICtrlMenu_SetMenuHeight GUICtrlMenu_SetMenuInfo GUICtrlMenu_SetMenuStyle GUICtrlMenu_TrackPopupMenu GUICtrlMonthCal_Create GUICtrlMonthCal_Destroy GUICtrlMonthCal_GetCalendarBorder GUICtrlMonthCal_GetCalendarCount GUICtrlMonthCal_GetColor GUICtrlMonthCal_GetColorArray GUICtrlMonthCal_GetCurSel GUICtrlMonthCal_GetCurSelStr GUICtrlMonthCal_GetFirstDOW GUICtrlMonthCal_GetFirstDOWStr GUICtrlMonthCal_GetMaxSelCount GUICtrlMonthCal_GetMaxTodayWidth GUICtrlMonthCal_GetMinReqHeight GUICtrlMonthCal_GetMinReqRect GUICtrlMonthCal_GetMinReqRectArray GUICtrlMonthCal_GetMinReqWidth GUICtrlMonthCal_GetMonthDelta GUICtrlMonthCal_GetMonthRange GUICtrlMonthCal_GetMonthRangeMax GUICtrlMonthCal_GetMonthRangeMaxStr GUICtrlMonthCal_GetMonthRangeMin GUICtrlMonthCal_GetMonthRangeMinStr GUICtrlMonthCal_GetMonthRangeSpan GUICtrlMonthCal_GetRange GUICtrlMonthCal_GetRangeMax GUICtrlMonthCal_GetRangeMaxStr GUICtrlMonthCal_GetRangeMin GUICtrlMonthCal_GetRangeMinStr GUICtrlMonthCal_GetSelRange GUICtrlMonthCal_GetSelRangeMax GUICtrlMonthCal_GetSelRangeMaxStr GUICtrlMonthCal_GetSelRangeMin GUICtrlMonthCal_GetSelRangeMinStr GUICtrlMonthCal_GetToday GUICtrlMonthCal_GetTodayStr GUICtrlMonthCal_GetUnicodeFormat GUICtrlMonthCal_HitTest GUICtrlMonthCal_SetCalendarBorder GUICtrlMonthCal_SetColor GUICtrlMonthCal_SetCurSel GUICtrlMonthCal_SetDayState GUICtrlMonthCal_SetFirstDOW GUICtrlMonthCal_SetMaxSelCount GUICtrlMonthCal_SetMonthDelta GUICtrlMonthCal_SetRange GUICtrlMonthCal_SetSelRange GUICtrlMonthCal_SetToday GUICtrlMonthCal_SetUnicodeFormat GUICtrlRebar_AddBand GUICtrlRebar_AddToolBarBand GUICtrlRebar_BeginDrag GUICtrlRebar_Create GUICtrlRebar_DeleteBand GUICtrlRebar_Destroy GUICtrlRebar_DragMove GUICtrlRebar_EndDrag GUICtrlRebar_GetBandBackColor GUICtrlRebar_GetBandBorders GUICtrlRebar_GetBandBordersEx GUICtrlRebar_GetBandChildHandle GUICtrlRebar_GetBandChildSize GUICtrlRebar_GetBandCount GUICtrlRebar_GetBandForeColor GUICtrlRebar_GetBandHeaderSize GUICtrlRebar_GetBandID GUICtrlRebar_GetBandIdealSize GUICtrlRebar_GetBandLength GUICtrlRebar_GetBandLParam GUICtrlRebar_GetBandMargins GUICtrlRebar_GetBandMarginsEx GUICtrlRebar_GetBandRect GUICtrlRebar_GetBandRectEx GUICtrlRebar_GetBandStyle GUICtrlRebar_GetBandStyleBreak GUICtrlRebar_GetBandStyleChildEdge GUICtrlRebar_GetBandStyleFixedBMP GUICtrlRebar_GetBandStyleFixedSize GUICtrlRebar_GetBandStyleGripperAlways GUICtrlRebar_GetBandStyleHidden GUICtrlRebar_GetBandStyleHideTitle GUICtrlRebar_GetBandStyleNoGripper GUICtrlRebar_GetBandStyleTopAlign GUICtrlRebar_GetBandStyleUseChevron GUICtrlRebar_GetBandStyleVariableHeight GUICtrlRebar_GetBandText GUICtrlRebar_GetBarHeight GUICtrlRebar_GetBarInfo GUICtrlRebar_GetBKColor GUICtrlRebar_GetColorScheme GUICtrlRebar_GetRowCount GUICtrlRebar_GetRowHeight GUICtrlRebar_GetTextColor GUICtrlRebar_GetToolTips GUICtrlRebar_GetUnicodeFormat GUICtrlRebar_HitTest GUICtrlRebar_IDToIndex GUICtrlRebar_MaximizeBand GUICtrlRebar_MinimizeBand GUICtrlRebar_MoveBand GUICtrlRebar_SetBandBackColor GUICtrlRebar_SetBandForeColor GUICtrlRebar_SetBandHeaderSize GUICtrlRebar_SetBandID GUICtrlRebar_SetBandIdealSize GUICtrlRebar_SetBandLength GUICtrlRebar_SetBandLParam GUICtrlRebar_SetBandStyle GUICtrlRebar_SetBandStyleBreak GUICtrlRebar_SetBandStyleChildEdge GUICtrlRebar_SetBandStyleFixedBMP GUICtrlRebar_SetBandStyleFixedSize GUICtrlRebar_SetBandStyleGripperAlways GUICtrlRebar_SetBandStyleHidden GUICtrlRebar_SetBandStyleHideTitle GUICtrlRebar_SetBandStyleNoGripper GUICtrlRebar_SetBandStyleTopAlign GUICtrlRebar_SetBandStyleUseChevron GUICtrlRebar_SetBandStyleVariableHeight GUICtrlRebar_SetBandText GUICtrlRebar_SetBarInfo GUICtrlRebar_SetBKColor GUICtrlRebar_SetColorScheme GUICtrlRebar_SetTextColor GUICtrlRebar_SetToolTips GUICtrlRebar_SetUnicodeFormat GUICtrlRebar_ShowBand GUICtrlRichEdit_AppendText GUICtrlRichEdit_AutoDetectURL GUICtrlRichEdit_CanPaste GUICtrlRichEdit_CanPasteSpecial GUICtrlRichEdit_CanRedo GUICtrlRichEdit_CanUndo GUICtrlRichEdit_ChangeFontSize GUICtrlRichEdit_Copy GUICtrlRichEdit_Create GUICtrlRichEdit_Cut GUICtrlRichEdit_Deselect GUICtrlRichEdit_Destroy GUICtrlRichEdit_EmptyUndoBuffer GUICtrlRichEdit_FindText GUICtrlRichEdit_FindTextInRange GUICtrlRichEdit_GetBkColor GUICtrlRichEdit_GetCharAttributes GUICtrlRichEdit_GetCharBkColor GUICtrlRichEdit_GetCharColor GUICtrlRichEdit_GetCharPosFromXY GUICtrlRichEdit_GetCharPosOfNextWord GUICtrlRichEdit_GetCharPosOfPreviousWord GUICtrlRichEdit_GetCharWordBreakInfo GUICtrlRichEdit_GetFirstCharPosOnLine GUICtrlRichEdit_GetFont GUICtrlRichEdit_GetLineCount GUICtrlRichEdit_GetLineLength GUICtrlRichEdit_GetLineNumberFromCharPos GUICtrlRichEdit_GetNextRedo GUICtrlRichEdit_GetNextUndo GUICtrlRichEdit_GetNumberOfFirstVisibleLine GUICtrlRichEdit_GetParaAlignment GUICtrlRichEdit_GetParaAttributes GUICtrlRichEdit_GetParaBorder GUICtrlRichEdit_GetParaIndents GUICtrlRichEdit_GetParaNumbering GUICtrlRichEdit_GetParaShading GUICtrlRichEdit_GetParaSpacing GUICtrlRichEdit_GetParaTabStops GUICtrlRichEdit_GetPasswordChar GUICtrlRichEdit_GetRECT GUICtrlRichEdit_GetScrollPos GUICtrlRichEdit_GetSel GUICtrlRichEdit_GetSelAA GUICtrlRichEdit_GetSelText GUICtrlRichEdit_GetSpaceUnit GUICtrlRichEdit_GetText GUICtrlRichEdit_GetTextInLine GUICtrlRichEdit_GetTextInRange GUICtrlRichEdit_GetTextLength GUICtrlRichEdit_GetVersion GUICtrlRichEdit_GetXYFromCharPos GUICtrlRichEdit_GetZoom GUICtrlRichEdit_GotoCharPos GUICtrlRichEdit_HideSelection GUICtrlRichEdit_InsertText GUICtrlRichEdit_IsModified GUICtrlRichEdit_IsTextSelected GUICtrlRichEdit_Paste GUICtrlRichEdit_PasteSpecial GUICtrlRichEdit_PauseRedraw GUICtrlRichEdit_Redo GUICtrlRichEdit_ReplaceText GUICtrlRichEdit_ResumeRedraw GUICtrlRichEdit_ScrollLineOrPage GUICtrlRichEdit_ScrollLines GUICtrlRichEdit_ScrollToCaret GUICtrlRichEdit_SetBkColor GUICtrlRichEdit_SetCharAttributes GUICtrlRichEdit_SetCharBkColor GUICtrlRichEdit_SetCharColor GUICtrlRichEdit_SetEventMask GUICtrlRichEdit_SetFont GUICtrlRichEdit_SetLimitOnText GUICtrlRichEdit_SetModified GUICtrlRichEdit_SetParaAlignment GUICtrlRichEdit_SetParaAttributes GUICtrlRichEdit_SetParaBorder GUICtrlRichEdit_SetParaIndents GUICtrlRichEdit_SetParaNumbering GUICtrlRichEdit_SetParaShading GUICtrlRichEdit_SetParaSpacing GUICtrlRichEdit_SetParaTabStops GUICtrlRichEdit_SetPasswordChar GUICtrlRichEdit_SetReadOnly GUICtrlRichEdit_SetRECT GUICtrlRichEdit_SetScrollPos GUICtrlRichEdit_SetSel GUICtrlRichEdit_SetSpaceUnit GUICtrlRichEdit_SetTabStops GUICtrlRichEdit_SetText GUICtrlRichEdit_SetUndoLimit GUICtrlRichEdit_SetZoom GUICtrlRichEdit_StreamFromFile GUICtrlRichEdit_StreamFromVar GUICtrlRichEdit_StreamToFile GUICtrlRichEdit_StreamToVar GUICtrlRichEdit_Undo GUICtrlSlider_ClearSel GUICtrlSlider_ClearTics GUICtrlSlider_Create GUICtrlSlider_Destroy GUICtrlSlider_GetBuddy GUICtrlSlider_GetChannelRect GUICtrlSlider_GetChannelRectEx GUICtrlSlider_GetLineSize GUICtrlSlider_GetLogicalTics GUICtrlSlider_GetNumTics GUICtrlSlider_GetPageSize GUICtrlSlider_GetPos GUICtrlSlider_GetRange GUICtrlSlider_GetRangeMax GUICtrlSlider_GetRangeMin GUICtrlSlider_GetSel GUICtrlSlider_GetSelEnd GUICtrlSlider_GetSelStart GUICtrlSlider_GetThumbLength GUICtrlSlider_GetThumbRect GUICtrlSlider_GetThumbRectEx GUICtrlSlider_GetTic GUICtrlSlider_GetTicPos GUICtrlSlider_GetToolTips GUICtrlSlider_GetUnicodeFormat GUICtrlSlider_SetBuddy GUICtrlSlider_SetLineSize GUICtrlSlider_SetPageSize GUICtrlSlider_SetPos GUICtrlSlider_SetRange GUICtrlSlider_SetRangeMax GUICtrlSlider_SetRangeMin GUICtrlSlider_SetSel GUICtrlSlider_SetSelEnd GUICtrlSlider_SetSelStart GUICtrlSlider_SetThumbLength GUICtrlSlider_SetTic GUICtrlSlider_SetTicFreq GUICtrlSlider_SetTipSide GUICtrlSlider_SetToolTips GUICtrlSlider_SetUnicodeFormat GUICtrlStatusBar_Create GUICtrlStatusBar_Destroy GUICtrlStatusBar_EmbedControl GUICtrlStatusBar_GetBorders GUICtrlStatusBar_GetBordersHorz GUICtrlStatusBar_GetBordersRect GUICtrlStatusBar_GetBordersVert GUICtrlStatusBar_GetCount GUICtrlStatusBar_GetHeight GUICtrlStatusBar_GetIcon GUICtrlStatusBar_GetParts GUICtrlStatusBar_GetRect GUICtrlStatusBar_GetRectEx GUICtrlStatusBar_GetText GUICtrlStatusBar_GetTextFlags GUICtrlStatusBar_GetTextLength GUICtrlStatusBar_GetTextLengthEx GUICtrlStatusBar_GetTipText GUICtrlStatusBar_GetUnicodeFormat GUICtrlStatusBar_GetWidth GUICtrlStatusBar_IsSimple GUICtrlStatusBar_Resize GUICtrlStatusBar_SetBkColor GUICtrlStatusBar_SetIcon GUICtrlStatusBar_SetMinHeight GUICtrlStatusBar_SetParts GUICtrlStatusBar_SetSimple GUICtrlStatusBar_SetText GUICtrlStatusBar_SetTipText GUICtrlStatusBar_SetUnicodeFormat GUICtrlStatusBar_ShowHide GUICtrlTab_ActivateTab GUICtrlTab_ClickTab GUICtrlTab_Create GUICtrlTab_DeleteAllItems GUICtrlTab_DeleteItem GUICtrlTab_DeselectAll GUICtrlTab_Destroy GUICtrlTab_FindTab GUICtrlTab_GetCurFocus GUICtrlTab_GetCurSel GUICtrlTab_GetDisplayRect GUICtrlTab_GetDisplayRectEx GUICtrlTab_GetExtendedStyle GUICtrlTab_GetImageList GUICtrlTab_GetItem GUICtrlTab_GetItemCount GUICtrlTab_GetItemImage GUICtrlTab_GetItemParam GUICtrlTab_GetItemRect GUICtrlTab_GetItemRectEx GUICtrlTab_GetItemState GUICtrlTab_GetItemText GUICtrlTab_GetRowCount GUICtrlTab_GetToolTips GUICtrlTab_GetUnicodeFormat GUICtrlTab_HighlightItem GUICtrlTab_HitTest GUICtrlTab_InsertItem GUICtrlTab_RemoveImage GUICtrlTab_SetCurFocus GUICtrlTab_SetCurSel GUICtrlTab_SetExtendedStyle GUICtrlTab_SetImageList GUICtrlTab_SetItem GUICtrlTab_SetItemImage GUICtrlTab_SetItemParam GUICtrlTab_SetItemSize GUICtrlTab_SetItemState GUICtrlTab_SetItemText GUICtrlTab_SetMinTabWidth GUICtrlTab_SetPadding GUICtrlTab_SetToolTips GUICtrlTab_SetUnicodeFormat GUICtrlToolbar_AddBitmap GUICtrlToolbar_AddButton GUICtrlToolbar_AddButtonSep GUICtrlToolbar_AddString GUICtrlToolbar_ButtonCount GUICtrlToolbar_CheckButton GUICtrlToolbar_ClickAccel GUICtrlToolbar_ClickButton GUICtrlToolbar_ClickIndex GUICtrlToolbar_CommandToIndex GUICtrlToolbar_Create GUICtrlToolbar_Customize GUICtrlToolbar_DeleteButton GUICtrlToolbar_Destroy GUICtrlToolbar_EnableButton GUICtrlToolbar_FindToolbar GUICtrlToolbar_GetAnchorHighlight GUICtrlToolbar_GetBitmapFlags GUICtrlToolbar_GetButtonBitmap GUICtrlToolbar_GetButtonInfo GUICtrlToolbar_GetButtonInfoEx GUICtrlToolbar_GetButtonParam GUICtrlToolbar_GetButtonRect GUICtrlToolbar_GetButtonRectEx GUICtrlToolbar_GetButtonSize GUICtrlToolbar_GetButtonState GUICtrlToolbar_GetButtonStyle GUICtrlToolbar_GetButtonText GUICtrlToolbar_GetColorScheme GUICtrlToolbar_GetDisabledImageList GUICtrlToolbar_GetExtendedStyle GUICtrlToolbar_GetHotImageList GUICtrlToolbar_GetHotItem GUICtrlToolbar_GetImageList GUICtrlToolbar_GetInsertMark GUICtrlToolbar_GetInsertMarkColor GUICtrlToolbar_GetMaxSize GUICtrlToolbar_GetMetrics GUICtrlToolbar_GetPadding GUICtrlToolbar_GetRows GUICtrlToolbar_GetString GUICtrlToolbar_GetStyle GUICtrlToolbar_GetStyleAltDrag GUICtrlToolbar_GetStyleCustomErase GUICtrlToolbar_GetStyleFlat GUICtrlToolbar_GetStyleList GUICtrlToolbar_GetStyleRegisterDrop GUICtrlToolbar_GetStyleToolTips GUICtrlToolbar_GetStyleTransparent GUICtrlToolbar_GetStyleWrapable GUICtrlToolbar_GetTextRows GUICtrlToolbar_GetToolTips GUICtrlToolbar_GetUnicodeFormat GUICtrlToolbar_HideButton GUICtrlToolbar_HighlightButton GUICtrlToolbar_HitTest GUICtrlToolbar_IndexToCommand GUICtrlToolbar_InsertButton GUICtrlToolbar_InsertMarkHitTest GUICtrlToolbar_IsButtonChecked GUICtrlToolbar_IsButtonEnabled GUICtrlToolbar_IsButtonHidden GUICtrlToolbar_IsButtonHighlighted GUICtrlToolbar_IsButtonIndeterminate GUICtrlToolbar_IsButtonPressed GUICtrlToolbar_LoadBitmap GUICtrlToolbar_LoadImages GUICtrlToolbar_MapAccelerator GUICtrlToolbar_MoveButton GUICtrlToolbar_PressButton GUICtrlToolbar_SetAnchorHighlight GUICtrlToolbar_SetBitmapSize GUICtrlToolbar_SetButtonBitMap GUICtrlToolbar_SetButtonInfo GUICtrlToolbar_SetButtonInfoEx GUICtrlToolbar_SetButtonParam GUICtrlToolbar_SetButtonSize GUICtrlToolbar_SetButtonState GUICtrlToolbar_SetButtonStyle GUICtrlToolbar_SetButtonText GUICtrlToolbar_SetButtonWidth GUICtrlToolbar_SetCmdID GUICtrlToolbar_SetColorScheme GUICtrlToolbar_SetDisabledImageList GUICtrlToolbar_SetDrawTextFlags GUICtrlToolbar_SetExtendedStyle GUICtrlToolbar_SetHotImageList GUICtrlToolbar_SetHotItem GUICtrlToolbar_SetImageList GUICtrlToolbar_SetIndent GUICtrlToolbar_SetIndeterminate GUICtrlToolbar_SetInsertMark GUICtrlToolbar_SetInsertMarkColor GUICtrlToolbar_SetMaxTextRows GUICtrlToolbar_SetMetrics GUICtrlToolbar_SetPadding GUICtrlToolbar_SetParent GUICtrlToolbar_SetRows GUICtrlToolbar_SetStyle GUICtrlToolbar_SetStyleAltDrag GUICtrlToolbar_SetStyleCustomErase GUICtrlToolbar_SetStyleFlat GUICtrlToolbar_SetStyleList GUICtrlToolbar_SetStyleRegisterDrop GUICtrlToolbar_SetStyleToolTips GUICtrlToolbar_SetStyleTransparent GUICtrlToolbar_SetStyleWrapable GUICtrlToolbar_SetToolTips GUICtrlToolbar_SetUnicodeFormat GUICtrlToolbar_SetWindowTheme GUICtrlTreeView_Add GUICtrlTreeView_AddChild GUICtrlTreeView_AddChildFirst GUICtrlTreeView_AddFirst GUICtrlTreeView_BeginUpdate GUICtrlTreeView_ClickItem GUICtrlTreeView_Create GUICtrlTreeView_CreateDragImage GUICtrlTreeView_CreateSolidBitMap GUICtrlTreeView_Delete GUICtrlTreeView_DeleteAll GUICtrlTreeView_DeleteChildren GUICtrlTreeView_Destroy GUICtrlTreeView_DisplayRect GUICtrlTreeView_DisplayRectEx GUICtrlTreeView_EditText GUICtrlTreeView_EndEdit GUICtrlTreeView_EndUpdate GUICtrlTreeView_EnsureVisible GUICtrlTreeView_Expand GUICtrlTreeView_ExpandedOnce GUICtrlTreeView_FindItem GUICtrlTreeView_FindItemEx GUICtrlTreeView_GetBkColor GUICtrlTreeView_GetBold GUICtrlTreeView_GetChecked GUICtrlTreeView_GetChildCount GUICtrlTreeView_GetChildren GUICtrlTreeView_GetCount GUICtrlTreeView_GetCut GUICtrlTreeView_GetDropTarget GUICtrlTreeView_GetEditControl GUICtrlTreeView_GetExpanded GUICtrlTreeView_GetFirstChild GUICtrlTreeView_GetFirstItem GUICtrlTreeView_GetFirstVisible GUICtrlTreeView_GetFocused GUICtrlTreeView_GetHeight GUICtrlTreeView_GetImageIndex GUICtrlTreeView_GetImageListIconHandle GUICtrlTreeView_GetIndent GUICtrlTreeView_GetInsertMarkColor GUICtrlTreeView_GetISearchString GUICtrlTreeView_GetItemByIndex GUICtrlTreeView_GetItemHandle GUICtrlTreeView_GetItemParam GUICtrlTreeView_GetLastChild GUICtrlTreeView_GetLineColor GUICtrlTreeView_GetNext GUICtrlTreeView_GetNextChild GUICtrlTreeView_GetNextSibling GUICtrlTreeView_GetNextVisible GUICtrlTreeView_GetNormalImageList GUICtrlTreeView_GetParentHandle GUICtrlTreeView_GetParentParam GUICtrlTreeView_GetPrev GUICtrlTreeView_GetPrevChild GUICtrlTreeView_GetPrevSibling GUICtrlTreeView_GetPrevVisible GUICtrlTreeView_GetScrollTime GUICtrlTreeView_GetSelected GUICtrlTreeView_GetSelectedImageIndex GUICtrlTreeView_GetSelection GUICtrlTreeView_GetSiblingCount GUICtrlTreeView_GetState GUICtrlTreeView_GetStateImageIndex GUICtrlTreeView_GetStateImageList GUICtrlTreeView_GetText GUICtrlTreeView_GetTextColor GUICtrlTreeView_GetToolTips GUICtrlTreeView_GetTree GUICtrlTreeView_GetUnicodeFormat GUICtrlTreeView_GetVisible GUICtrlTreeView_GetVisibleCount GUICtrlTreeView_HitTest GUICtrlTreeView_HitTestEx GUICtrlTreeView_HitTestItem GUICtrlTreeView_Index GUICtrlTreeView_InsertItem GUICtrlTreeView_IsFirstItem GUICtrlTreeView_IsParent GUICtrlTreeView_Level GUICtrlTreeView_SelectItem GUICtrlTreeView_SelectItemByIndex GUICtrlTreeView_SetBkColor GUICtrlTreeView_SetBold GUICtrlTreeView_SetChecked GUICtrlTreeView_SetCheckedByIndex GUICtrlTreeView_SetChildren GUICtrlTreeView_SetCut GUICtrlTreeView_SetDropTarget GUICtrlTreeView_SetFocused GUICtrlTreeView_SetHeight GUICtrlTreeView_SetIcon GUICtrlTreeView_SetImageIndex GUICtrlTreeView_SetIndent GUICtrlTreeView_SetInsertMark GUICtrlTreeView_SetInsertMarkColor GUICtrlTreeView_SetItemHeight GUICtrlTreeView_SetItemParam GUICtrlTreeView_SetLineColor GUICtrlTreeView_SetNormalImageList GUICtrlTreeView_SetScrollTime GUICtrlTreeView_SetSelected GUICtrlTreeView_SetSelectedImageIndex GUICtrlTreeView_SetState GUICtrlTreeView_SetStateImageIndex GUICtrlTreeView_SetStateImageList GUICtrlTreeView_SetText GUICtrlTreeView_SetTextColor GUICtrlTreeView_SetToolTips GUICtrlTreeView_SetUnicodeFormat GUICtrlTreeView_Sort GUIImageList_Add GUIImageList_AddBitmap GUIImageList_AddIcon GUIImageList_AddMasked GUIImageList_BeginDrag GUIImageList_Copy GUIImageList_Create GUIImageList_Destroy GUIImageList_DestroyIcon GUIImageList_DragEnter GUIImageList_DragLeave GUIImageList_DragMove GUIImageList_Draw GUIImageList_DrawEx GUIImageList_Duplicate GUIImageList_EndDrag GUIImageList_GetBkColor GUIImageList_GetIcon GUIImageList_GetIconHeight GUIImageList_GetIconSize GUIImageList_GetIconSizeEx GUIImageList_GetIconWidth GUIImageList_GetImageCount GUIImageList_GetImageInfoEx GUIImageList_Remove GUIImageList_ReplaceIcon GUIImageList_SetBkColor GUIImageList_SetIconSize GUIImageList_SetImageCount GUIImageList_Swap GUIScrollBars_EnableScrollBar GUIScrollBars_GetScrollBarInfoEx GUIScrollBars_GetScrollBarRect GUIScrollBars_GetScrollBarRGState GUIScrollBars_GetScrollBarXYLineButton GUIScrollBars_GetScrollBarXYThumbBottom GUIScrollBars_GetScrollBarXYThumbTop GUIScrollBars_GetScrollInfo GUIScrollBars_GetScrollInfoEx GUIScrollBars_GetScrollInfoMax GUIScrollBars_GetScrollInfoMin GUIScrollBars_GetScrollInfoPage GUIScrollBars_GetScrollInfoPos GUIScrollBars_GetScrollInfoTrackPos GUIScrollBars_GetScrollPos GUIScrollBars_GetScrollRange GUIScrollBars_Init GUIScrollBars_ScrollWindow GUIScrollBars_SetScrollInfo GUIScrollBars_SetScrollInfoMax GUIScrollBars_SetScrollInfoMin GUIScrollBars_SetScrollInfoPage GUIScrollBars_SetScrollInfoPos GUIScrollBars_SetScrollRange GUIScrollBars_ShowScrollBar GUIToolTip_Activate GUIToolTip_AddTool GUIToolTip_AdjustRect GUIToolTip_BitsToTTF GUIToolTip_Create GUIToolTip_Deactivate GUIToolTip_DelTool GUIToolTip_Destroy GUIToolTip_EnumTools GUIToolTip_GetBubbleHeight GUIToolTip_GetBubbleSize GUIToolTip_GetBubbleWidth GUIToolTip_GetCurrentTool GUIToolTip_GetDelayTime GUIToolTip_GetMargin GUIToolTip_GetMarginEx GUIToolTip_GetMaxTipWidth GUIToolTip_GetText GUIToolTip_GetTipBkColor GUIToolTip_GetTipTextColor GUIToolTip_GetTitleBitMap GUIToolTip_GetTitleText GUIToolTip_GetToolCount GUIToolTip_GetToolInfo GUIToolTip_HitTest GUIToolTip_NewToolRect GUIToolTip_Pop GUIToolTip_PopUp GUIToolTip_SetDelayTime GUIToolTip_SetMargin GUIToolTip_SetMaxTipWidth GUIToolTip_SetTipBkColor GUIToolTip_SetTipTextColor GUIToolTip_SetTitle GUIToolTip_SetToolInfo GUIToolTip_SetWindowTheme GUIToolTip_ToolExists GUIToolTip_ToolToArray GUIToolTip_TrackActivate GUIToolTip_TrackPosition GUIToolTip_Update GUIToolTip_UpdateTipText HexToString IEAction IEAttach IEBodyReadHTML IEBodyReadText IEBodyWriteHTML IECreate IECreateEmbedded IEDocGetObj IEDocInsertHTML IEDocInsertText IEDocReadHTML IEDocWriteHTML IEErrorNotify IEFormElementCheckBoxSelect IEFormElementGetCollection IEFormElementGetObjByName IEFormElementGetValue IEFormElementOptionSelect IEFormElementRadioSelect IEFormElementSetValue IEFormGetCollection IEFormGetObjByName IEFormImageClick IEFormReset IEFormSubmit IEFrameGetCollection IEFrameGetObjByName IEGetObjById IEGetObjByName IEHeadInsertEventScript IEImgClick IEImgGetCollection IEIsFrameSet IELinkClickByIndex IELinkClickByText IELinkGetCollection IELoadWait IELoadWaitTimeout IENavigate IEPropertyGet IEPropertySet IEQuit IETableGetCollection IETableWriteToArray IETagNameAllGetCollection IETagNameGetCollection IE_Example IE_Introduction IE_VersionInfo INetExplorerCapable INetGetSource INetMail INetSmtpMail IsPressed MathCheckDiv Max MemGlobalAlloc MemGlobalFree MemGlobalLock MemGlobalSize MemGlobalUnlock MemMoveMemory MemVirtualAlloc MemVirtualAllocEx MemVirtualFree MemVirtualFreeEx Min MouseTrap NamedPipes_CallNamedPipe NamedPipes_ConnectNamedPipe NamedPipes_CreateNamedPipe NamedPipes_CreatePipe NamedPipes_DisconnectNamedPipe NamedPipes_GetNamedPipeHandleState NamedPipes_GetNamedPipeInfo NamedPipes_PeekNamedPipe NamedPipes_SetNamedPipeHandleState NamedPipes_TransactNamedPipe NamedPipes_WaitNamedPipe Net_Share_ConnectionEnum Net_Share_FileClose Net_Share_FileEnum Net_Share_FileGetInfo Net_Share_PermStr Net_Share_ResourceStr Net_Share_SessionDel Net_Share_SessionEnum Net_Share_SessionGetInfo Net_Share_ShareAdd Net_Share_ShareCheck Net_Share_ShareDel Net_Share_ShareEnum Net_Share_ShareGetInfo Net_Share_ShareSetInfo Net_Share_StatisticsGetSvr Net_Share_StatisticsGetWrk Now NowCalc NowCalcDate NowDate NowTime PathFull PathGetRelative PathMake PathSplit ProcessGetName ProcessGetPriority Radian ReplaceStringInFile RunDos ScreenCapture_Capture ScreenCapture_CaptureWnd ScreenCapture_SaveImage ScreenCapture_SetBMPFormat ScreenCapture_SetJPGQuality ScreenCapture_SetTIFColorDepth ScreenCapture_SetTIFCompression Security__AdjustTokenPrivileges Security__CreateProcessWithToken Security__DuplicateTokenEx Security__GetAccountSid Security__GetLengthSid Security__GetTokenInformation Security__ImpersonateSelf Security__IsValidSid Security__LookupAccountName Security__LookupAccountSid Security__LookupPrivilegeValue Security__OpenProcessToken Security__OpenThreadToken Security__OpenThreadTokenEx Security__SetPrivilege Security__SetTokenInformation Security__SidToStringSid Security__SidTypeStr Security__StringSidToSid SendMessage SendMessageA SetDate SetTime Singleton SoundClose SoundLength SoundOpen SoundPause SoundPlay SoundPos SoundResume SoundSeek SoundStatus SoundStop SQLite_Changes SQLite_Close SQLite_Display2DResult SQLite_Encode SQLite_ErrCode SQLite_ErrMsg SQLite_Escape SQLite_Exec SQLite_FastEncode SQLite_FastEscape SQLite_FetchData SQLite_FetchNames SQLite_GetTable SQLite_GetTable2d SQLite_LastInsertRowID SQLite_LibVersion SQLite_Open SQLite_Query SQLite_QueryFinalize SQLite_QueryReset SQLite_QuerySingleRow SQLite_SafeMode SQLite_SetTimeout SQLite_Shutdown SQLite_SQLiteExe SQLite_Startup SQLite_TotalChanges StringBetween StringExplode StringInsert StringProper StringRepeat StringTitleCase StringToHex TCPIpToName TempFile TicksToTime Timer_Diff Timer_GetIdleTime Timer_GetTimerID Timer_Init Timer_KillAllTimers Timer_KillTimer Timer_SetTimer TimeToTicks VersionCompare viClose viExecCommand viFindGpib viGpibBusReset viGTL viInteractiveControl viOpen viSetAttribute viSetTimeout WeekNumberISO WinAPI_AbortPath WinAPI_ActivateKeyboardLayout WinAPI_AddClipboardFormatListener WinAPI_AddFontMemResourceEx WinAPI_AddFontResourceEx WinAPI_AddIconOverlay WinAPI_AddIconTransparency WinAPI_AddMRUString WinAPI_AdjustBitmap WinAPI_AdjustTokenPrivileges WinAPI_AdjustWindowRectEx WinAPI_AlphaBlend WinAPI_AngleArc WinAPI_AnimateWindow WinAPI_Arc WinAPI_ArcTo WinAPI_ArrayToStruct WinAPI_AssignProcessToJobObject WinAPI_AssocGetPerceivedType WinAPI_AssocQueryString WinAPI_AttachConsole WinAPI_AttachThreadInput WinAPI_BackupRead WinAPI_BackupReadAbort WinAPI_BackupSeek WinAPI_BackupWrite WinAPI_BackupWriteAbort WinAPI_Beep WinAPI_BeginBufferedPaint WinAPI_BeginDeferWindowPos WinAPI_BeginPaint WinAPI_BeginPath WinAPI_BeginUpdateResource WinAPI_BitBlt WinAPI_BringWindowToTop WinAPI_BroadcastSystemMessage WinAPI_BrowseForFolderDlg WinAPI_BufferedPaintClear WinAPI_BufferedPaintInit WinAPI_BufferedPaintSetAlpha WinAPI_BufferedPaintUnInit WinAPI_CallNextHookEx WinAPI_CallWindowProc WinAPI_CallWindowProcW WinAPI_CascadeWindows WinAPI_ChangeWindowMessageFilterEx WinAPI_CharToOem WinAPI_ChildWindowFromPointEx WinAPI_ClientToScreen WinAPI_ClipCursor WinAPI_CloseDesktop WinAPI_CloseEnhMetaFile WinAPI_CloseFigure WinAPI_CloseHandle WinAPI_CloseThemeData WinAPI_CloseWindow WinAPI_CloseWindowStation WinAPI_CLSIDFromProgID WinAPI_CoInitialize WinAPI_ColorAdjustLuma WinAPI_ColorHLSToRGB WinAPI_ColorRGBToHLS WinAPI_CombineRgn WinAPI_CombineTransform WinAPI_CommandLineToArgv WinAPI_CommDlgExtendedError WinAPI_CommDlgExtendedErrorEx WinAPI_CompareString WinAPI_CompressBitmapBits WinAPI_CompressBuffer WinAPI_ComputeCrc32 WinAPI_ConfirmCredentials WinAPI_CopyBitmap WinAPI_CopyCursor WinAPI_CopyEnhMetaFile WinAPI_CopyFileEx WinAPI_CopyIcon WinAPI_CopyImage WinAPI_CopyRect WinAPI_CopyStruct WinAPI_CoTaskMemAlloc WinAPI_CoTaskMemFree WinAPI_CoTaskMemRealloc WinAPI_CoUninitialize WinAPI_Create32BitHBITMAP WinAPI_Create32BitHICON WinAPI_CreateANDBitmap WinAPI_CreateBitmap WinAPI_CreateBitmapIndirect WinAPI_CreateBrushIndirect WinAPI_CreateBuffer WinAPI_CreateBufferFromStruct WinAPI_CreateCaret WinAPI_CreateColorAdjustment WinAPI_CreateCompatibleBitmap WinAPI_CreateCompatibleBitmapEx WinAPI_CreateCompatibleDC WinAPI_CreateDesktop WinAPI_CreateDIB WinAPI_CreateDIBColorTable WinAPI_CreateDIBitmap WinAPI_CreateDIBSection WinAPI_CreateDirectory WinAPI_CreateDirectoryEx WinAPI_CreateEllipticRgn WinAPI_CreateEmptyIcon WinAPI_CreateEnhMetaFile WinAPI_CreateEvent WinAPI_CreateFile WinAPI_CreateFileEx WinAPI_CreateFileMapping WinAPI_CreateFont WinAPI_CreateFontEx WinAPI_CreateFontIndirect WinAPI_CreateGUID WinAPI_CreateHardLink WinAPI_CreateIcon WinAPI_CreateIconFromResourceEx WinAPI_CreateIconIndirect WinAPI_CreateJobObject WinAPI_CreateMargins WinAPI_CreateMRUList WinAPI_CreateMutex WinAPI_CreateNullRgn WinAPI_CreateNumberFormatInfo WinAPI_CreateObjectID WinAPI_CreatePen WinAPI_CreatePoint WinAPI_CreatePolygonRgn WinAPI_CreateProcess WinAPI_CreateProcessWithToken WinAPI_CreateRect WinAPI_CreateRectEx WinAPI_CreateRectRgn WinAPI_CreateRectRgnIndirect WinAPI_CreateRoundRectRgn WinAPI_CreateSemaphore WinAPI_CreateSize WinAPI_CreateSolidBitmap WinAPI_CreateSolidBrush WinAPI_CreateStreamOnHGlobal WinAPI_CreateString WinAPI_CreateSymbolicLink WinAPI_CreateTransform WinAPI_CreateWindowEx WinAPI_CreateWindowStation WinAPI_DecompressBuffer WinAPI_DecryptFile WinAPI_DeferWindowPos WinAPI_DefineDosDevice WinAPI_DefRawInputProc WinAPI_DefSubclassProc WinAPI_DefWindowProc WinAPI_DefWindowProcW WinAPI_DeleteDC WinAPI_DeleteEnhMetaFile WinAPI_DeleteFile WinAPI_DeleteObject WinAPI_DeleteObjectID WinAPI_DeleteVolumeMountPoint WinAPI_DeregisterShellHookWindow WinAPI_DestroyCaret WinAPI_DestroyCursor WinAPI_DestroyIcon WinAPI_DestroyWindow WinAPI_DeviceIoControl WinAPI_DisplayStruct WinAPI_DllGetVersion WinAPI_DllInstall WinAPI_DllUninstall WinAPI_DPtoLP WinAPI_DragAcceptFiles WinAPI_DragFinish WinAPI_DragQueryFileEx WinAPI_DragQueryPoint WinAPI_DrawAnimatedRects WinAPI_DrawBitmap WinAPI_DrawEdge WinAPI_DrawFocusRect WinAPI_DrawFrameControl WinAPI_DrawIcon WinAPI_DrawIconEx WinAPI_DrawLine WinAPI_DrawShadowText WinAPI_DrawText WinAPI_DrawThemeBackground WinAPI_DrawThemeEdge WinAPI_DrawThemeIcon WinAPI_DrawThemeParentBackground WinAPI_DrawThemeText WinAPI_DrawThemeTextEx WinAPI_DuplicateEncryptionInfoFile WinAPI_DuplicateHandle WinAPI_DuplicateTokenEx WinAPI_DwmDefWindowProc WinAPI_DwmEnableBlurBehindWindow WinAPI_DwmEnableComposition WinAPI_DwmExtendFrameIntoClientArea WinAPI_DwmGetColorizationColor WinAPI_DwmGetColorizationParameters WinAPI_DwmGetWindowAttribute WinAPI_DwmInvalidateIconicBitmaps WinAPI_DwmIsCompositionEnabled WinAPI_DwmQueryThumbnailSourceSize WinAPI_DwmRegisterThumbnail WinAPI_DwmSetColorizationParameters WinAPI_DwmSetIconicLivePreviewBitmap WinAPI_DwmSetIconicThumbnail WinAPI_DwmSetWindowAttribute WinAPI_DwmUnregisterThumbnail WinAPI_DwmUpdateThumbnailProperties WinAPI_DWordToFloat WinAPI_DWordToInt WinAPI_EjectMedia WinAPI_Ellipse WinAPI_EmptyWorkingSet WinAPI_EnableWindow WinAPI_EncryptFile WinAPI_EncryptionDisable WinAPI_EndBufferedPaint WinAPI_EndDeferWindowPos WinAPI_EndPaint WinAPI_EndPath WinAPI_EndUpdateResource WinAPI_EnumChildProcess WinAPI_EnumChildWindows WinAPI_EnumDesktops WinAPI_EnumDesktopWindows WinAPI_EnumDeviceDrivers WinAPI_EnumDisplayDevices WinAPI_EnumDisplayMonitors WinAPI_EnumDisplaySettings WinAPI_EnumDllProc WinAPI_EnumFiles WinAPI_EnumFileStreams WinAPI_EnumFontFamilies WinAPI_EnumHardLinks WinAPI_EnumMRUList WinAPI_EnumPageFiles WinAPI_EnumProcessHandles WinAPI_EnumProcessModules WinAPI_EnumProcessThreads WinAPI_EnumProcessWindows WinAPI_EnumRawInputDevices WinAPI_EnumResourceLanguages WinAPI_EnumResourceNames WinAPI_EnumResourceTypes WinAPI_EnumSystemGeoID WinAPI_EnumSystemLocales WinAPI_EnumUILanguages WinAPI_EnumWindows WinAPI_EnumWindowsPopup WinAPI_EnumWindowStations WinAPI_EnumWindowsTop WinAPI_EqualMemory WinAPI_EqualRect WinAPI_EqualRgn WinAPI_ExcludeClipRect WinAPI_ExpandEnvironmentStrings WinAPI_ExtCreatePen WinAPI_ExtCreateRegion WinAPI_ExtFloodFill WinAPI_ExtractIcon WinAPI_ExtractIconEx WinAPI_ExtSelectClipRgn WinAPI_FatalAppExit WinAPI_FatalExit WinAPI_FileEncryptionStatus WinAPI_FileExists WinAPI_FileIconInit WinAPI_FileInUse WinAPI_FillMemory WinAPI_FillPath WinAPI_FillRect WinAPI_FillRgn WinAPI_FindClose WinAPI_FindCloseChangeNotification WinAPI_FindExecutable WinAPI_FindFirstChangeNotification WinAPI_FindFirstFile WinAPI_FindFirstFileName WinAPI_FindFirstStream WinAPI_FindNextChangeNotification WinAPI_FindNextFile WinAPI_FindNextFileName WinAPI_FindNextStream WinAPI_FindResource WinAPI_FindResourceEx WinAPI_FindTextDlg WinAPI_FindWindow WinAPI_FlashWindow WinAPI_FlashWindowEx WinAPI_FlattenPath WinAPI_FloatToDWord WinAPI_FloatToInt WinAPI_FlushFileBuffers WinAPI_FlushFRBuffer WinAPI_FlushViewOfFile WinAPI_FormatDriveDlg WinAPI_FormatMessage WinAPI_FrameRect WinAPI_FrameRgn WinAPI_FreeLibrary WinAPI_FreeMemory WinAPI_FreeMRUList WinAPI_FreeResource WinAPI_GdiComment WinAPI_GetActiveWindow WinAPI_GetAllUsersProfileDirectory WinAPI_GetAncestor WinAPI_GetApplicationRestartSettings WinAPI_GetArcDirection WinAPI_GetAsyncKeyState WinAPI_GetBinaryType WinAPI_GetBitmapBits WinAPI_GetBitmapDimension WinAPI_GetBitmapDimensionEx WinAPI_GetBkColor WinAPI_GetBkMode WinAPI_GetBoundsRect WinAPI_GetBrushOrg WinAPI_GetBufferedPaintBits WinAPI_GetBufferedPaintDC WinAPI_GetBufferedPaintTargetDC WinAPI_GetBufferedPaintTargetRect WinAPI_GetBValue WinAPI_GetCaretBlinkTime WinAPI_GetCaretPos WinAPI_GetCDType WinAPI_GetClassInfoEx WinAPI_GetClassLongEx WinAPI_GetClassName WinAPI_GetClientHeight WinAPI_GetClientRect WinAPI_GetClientWidth WinAPI_GetClipboardSequenceNumber WinAPI_GetClipBox WinAPI_GetClipCursor WinAPI_GetClipRgn WinAPI_GetColorAdjustment WinAPI_GetCompressedFileSize WinAPI_GetCompression WinAPI_GetConnectedDlg WinAPI_GetCurrentDirectory WinAPI_GetCurrentHwProfile WinAPI_GetCurrentObject WinAPI_GetCurrentPosition WinAPI_GetCurrentProcess WinAPI_GetCurrentProcessExplicitAppUserModelID WinAPI_GetCurrentProcessID WinAPI_GetCurrentThemeName WinAPI_GetCurrentThread WinAPI_GetCurrentThreadId WinAPI_GetCursor WinAPI_GetCursorInfo WinAPI_GetDateFormat WinAPI_GetDC WinAPI_GetDCEx WinAPI_GetDefaultPrinter WinAPI_GetDefaultUserProfileDirectory WinAPI_GetDesktopWindow WinAPI_GetDeviceCaps WinAPI_GetDeviceDriverBaseName WinAPI_GetDeviceDriverFileName WinAPI_GetDeviceGammaRamp WinAPI_GetDIBColorTable WinAPI_GetDIBits WinAPI_GetDiskFreeSpaceEx WinAPI_GetDlgCtrlID WinAPI_GetDlgItem WinAPI_GetDllDirectory WinAPI_GetDriveBusType WinAPI_GetDriveGeometryEx WinAPI_GetDriveNumber WinAPI_GetDriveType WinAPI_GetDurationFormat WinAPI_GetEffectiveClientRect WinAPI_GetEnhMetaFile WinAPI_GetEnhMetaFileBits WinAPI_GetEnhMetaFileDescription WinAPI_GetEnhMetaFileDimension WinAPI_GetEnhMetaFileHeader WinAPI_GetErrorMessage WinAPI_GetErrorMode WinAPI_GetExitCodeProcess WinAPI_GetExtended WinAPI_GetFileAttributes WinAPI_GetFileID WinAPI_GetFileInformationByHandle WinAPI_GetFileInformationByHandleEx WinAPI_GetFilePointerEx WinAPI_GetFileSizeEx WinAPI_GetFileSizeOnDisk WinAPI_GetFileTitle WinAPI_GetFileType WinAPI_GetFileVersionInfo WinAPI_GetFinalPathNameByHandle WinAPI_GetFinalPathNameByHandleEx WinAPI_GetFocus WinAPI_GetFontMemoryResourceInfo WinAPI_GetFontName WinAPI_GetFontResourceInfo WinAPI_GetForegroundWindow WinAPI_GetFRBuffer WinAPI_GetFullPathName WinAPI_GetGeoInfo WinAPI_GetGlyphOutline WinAPI_GetGraphicsMode WinAPI_GetGuiResources WinAPI_GetGUIThreadInfo WinAPI_GetGValue WinAPI_GetHandleInformation WinAPI_GetHGlobalFromStream WinAPI_GetIconDimension WinAPI_GetIconInfo WinAPI_GetIconInfoEx WinAPI_GetIdleTime WinAPI_GetKeyboardLayout WinAPI_GetKeyboardLayoutList WinAPI_GetKeyboardState WinAPI_GetKeyboardType WinAPI_GetKeyNameText WinAPI_GetKeyState WinAPI_GetLastActivePopup WinAPI_GetLastError WinAPI_GetLastErrorMessage WinAPI_GetLayeredWindowAttributes WinAPI_GetLocaleInfo WinAPI_GetLogicalDrives WinAPI_GetMapMode WinAPI_GetMemorySize WinAPI_GetMessageExtraInfo WinAPI_GetModuleFileNameEx WinAPI_GetModuleHandle WinAPI_GetModuleHandleEx WinAPI_GetModuleInformation WinAPI_GetMonitorInfo WinAPI_GetMousePos WinAPI_GetMousePosX WinAPI_GetMousePosY WinAPI_GetMUILanguage WinAPI_GetNumberFormat WinAPI_GetObject WinAPI_GetObjectID WinAPI_GetObjectInfoByHandle WinAPI_GetObjectNameByHandle WinAPI_GetObjectType WinAPI_GetOpenFileName WinAPI_GetOutlineTextMetrics WinAPI_GetOverlappedResult WinAPI_GetParent WinAPI_GetParentProcess WinAPI_GetPerformanceInfo WinAPI_GetPEType WinAPI_GetPhysicallyInstalledSystemMemory WinAPI_GetPixel WinAPI_GetPolyFillMode WinAPI_GetPosFromRect WinAPI_GetPriorityClass WinAPI_GetProcAddress WinAPI_GetProcessAffinityMask WinAPI_GetProcessCommandLine WinAPI_GetProcessFileName WinAPI_GetProcessHandleCount WinAPI_GetProcessID WinAPI_GetProcessIoCounters WinAPI_GetProcessMemoryInfo WinAPI_GetProcessName WinAPI_GetProcessShutdownParameters WinAPI_GetProcessTimes WinAPI_GetProcessUser WinAPI_GetProcessWindowStation WinAPI_GetProcessWorkingDirectory WinAPI_GetProfilesDirectory WinAPI_GetPwrCapabilities WinAPI_GetRawInputBuffer WinAPI_GetRawInputBufferLength WinAPI_GetRawInputData WinAPI_GetRawInputDeviceInfo WinAPI_GetRegionData WinAPI_GetRegisteredRawInputDevices WinAPI_GetRegKeyNameByHandle WinAPI_GetRgnBox WinAPI_GetROP2 WinAPI_GetRValue WinAPI_GetSaveFileName WinAPI_GetShellWindow WinAPI_GetStartupInfo WinAPI_GetStdHandle WinAPI_GetStockObject WinAPI_GetStretchBltMode WinAPI_GetString WinAPI_GetSysColor WinAPI_GetSysColorBrush WinAPI_GetSystemDefaultLangID WinAPI_GetSystemDefaultLCID WinAPI_GetSystemDefaultUILanguage WinAPI_GetSystemDEPPolicy WinAPI_GetSystemInfo WinAPI_GetSystemMetrics WinAPI_GetSystemPowerStatus WinAPI_GetSystemTimes WinAPI_GetSystemWow64Directory WinAPI_GetTabbedTextExtent WinAPI_GetTempFileName WinAPI_GetTextAlign WinAPI_GetTextCharacterExtra WinAPI_GetTextColor WinAPI_GetTextExtentPoint32 WinAPI_GetTextFace WinAPI_GetTextMetrics WinAPI_GetThemeAppProperties WinAPI_GetThemeBackgroundContentRect WinAPI_GetThemeBackgroundExtent WinAPI_GetThemeBackgroundRegion WinAPI_GetThemeBitmap WinAPI_GetThemeBool WinAPI_GetThemeColor WinAPI_GetThemeDocumentationProperty WinAPI_GetThemeEnumValue WinAPI_GetThemeFilename WinAPI_GetThemeFont WinAPI_GetThemeInt WinAPI_GetThemeMargins WinAPI_GetThemeMetric WinAPI_GetThemePartSize WinAPI_GetThemePosition WinAPI_GetThemePropertyOrigin WinAPI_GetThemeRect WinAPI_GetThemeString WinAPI_GetThemeSysBool WinAPI_GetThemeSysColor WinAPI_GetThemeSysColorBrush WinAPI_GetThemeSysFont WinAPI_GetThemeSysInt WinAPI_GetThemeSysSize WinAPI_GetThemeSysString WinAPI_GetThemeTextExtent WinAPI_GetThemeTextMetrics WinAPI_GetThemeTransitionDuration WinAPI_GetThreadDesktop WinAPI_GetThreadErrorMode WinAPI_GetThreadLocale WinAPI_GetThreadUILanguage WinAPI_GetTickCount WinAPI_GetTickCount64 WinAPI_GetTimeFormat WinAPI_GetTopWindow WinAPI_GetUDFColorMode WinAPI_GetUpdateRect WinAPI_GetUpdateRgn WinAPI_GetUserDefaultLangID WinAPI_GetUserDefaultLCID WinAPI_GetUserDefaultUILanguage WinAPI_GetUserGeoID WinAPI_GetUserObjectInformation WinAPI_GetVersion WinAPI_GetVersionEx WinAPI_GetVolumeInformation WinAPI_GetVolumeInformationByHandle WinAPI_GetVolumeNameForVolumeMountPoint WinAPI_GetWindow WinAPI_GetWindowDC WinAPI_GetWindowDisplayAffinity WinAPI_GetWindowExt WinAPI_GetWindowFileName WinAPI_GetWindowHeight WinAPI_GetWindowInfo WinAPI_GetWindowLong WinAPI_GetWindowOrg WinAPI_GetWindowPlacement WinAPI_GetWindowRect WinAPI_GetWindowRgn WinAPI_GetWindowRgnBox WinAPI_GetWindowSubclass WinAPI_GetWindowText WinAPI_GetWindowTheme WinAPI_GetWindowThreadProcessId WinAPI_GetWindowWidth WinAPI_GetWorkArea WinAPI_GetWorldTransform WinAPI_GetXYFromPoint WinAPI_GlobalMemoryStatus WinAPI_GradientFill WinAPI_GUIDFromString WinAPI_GUIDFromStringEx WinAPI_HashData WinAPI_HashString WinAPI_HiByte WinAPI_HideCaret WinAPI_HiDWord WinAPI_HiWord WinAPI_InflateRect WinAPI_InitMUILanguage WinAPI_InProcess WinAPI_IntersectClipRect WinAPI_IntersectRect WinAPI_IntToDWord WinAPI_IntToFloat WinAPI_InvalidateRect WinAPI_InvalidateRgn WinAPI_InvertANDBitmap WinAPI_InvertColor WinAPI_InvertRect WinAPI_InvertRgn WinAPI_IOCTL WinAPI_IsAlphaBitmap WinAPI_IsBadCodePtr WinAPI_IsBadReadPtr WinAPI_IsBadStringPtr WinAPI_IsBadWritePtr WinAPI_IsChild WinAPI_IsClassName WinAPI_IsDoorOpen WinAPI_IsElevated WinAPI_IsHungAppWindow WinAPI_IsIconic WinAPI_IsInternetConnected WinAPI_IsLoadKBLayout WinAPI_IsMemory WinAPI_IsNameInExpression WinAPI_IsNetworkAlive WinAPI_IsPathShared WinAPI_IsProcessInJob WinAPI_IsProcessorFeaturePresent WinAPI_IsRectEmpty WinAPI_IsThemeActive WinAPI_IsThemeBackgroundPartiallyTransparent WinAPI_IsThemePartDefined WinAPI_IsValidLocale WinAPI_IsWindow WinAPI_IsWindowEnabled WinAPI_IsWindowUnicode WinAPI_IsWindowVisible WinAPI_IsWow64Process WinAPI_IsWritable WinAPI_IsZoomed WinAPI_Keybd_Event WinAPI_KillTimer WinAPI_LineDDA WinAPI_LineTo WinAPI_LoadBitmap WinAPI_LoadCursor WinAPI_LoadCursorFromFile WinAPI_LoadIcon WinAPI_LoadIconMetric WinAPI_LoadIconWithScaleDown WinAPI_LoadImage WinAPI_LoadIndirectString WinAPI_LoadKeyboardLayout WinAPI_LoadLibrary WinAPI_LoadLibraryEx WinAPI_LoadMedia WinAPI_LoadResource WinAPI_LoadShell32Icon WinAPI_LoadString WinAPI_LoadStringEx WinAPI_LoByte WinAPI_LocalFree WinAPI_LockDevice WinAPI_LockFile WinAPI_LockResource WinAPI_LockWindowUpdate WinAPI_LockWorkStation WinAPI_LoDWord WinAPI_LongMid WinAPI_LookupIconIdFromDirectoryEx WinAPI_LoWord WinAPI_LPtoDP WinAPI_MAKELANGID WinAPI_MAKELCID WinAPI_MakeLong WinAPI_MakeQWord WinAPI_MakeWord WinAPI_MapViewOfFile WinAPI_MapVirtualKey WinAPI_MaskBlt WinAPI_MessageBeep WinAPI_MessageBoxCheck WinAPI_MessageBoxIndirect WinAPI_MirrorIcon WinAPI_ModifyWorldTransform WinAPI_MonitorFromPoint WinAPI_MonitorFromRect WinAPI_MonitorFromWindow WinAPI_Mouse_Event WinAPI_MoveFileEx WinAPI_MoveMemory WinAPI_MoveTo WinAPI_MoveToEx WinAPI_MoveWindow WinAPI_MsgBox WinAPI_MulDiv WinAPI_MultiByteToWideChar WinAPI_MultiByteToWideCharEx WinAPI_NtStatusToDosError WinAPI_OemToChar WinAPI_OffsetClipRgn WinAPI_OffsetPoints WinAPI_OffsetRect WinAPI_OffsetRgn WinAPI_OffsetWindowOrg WinAPI_OpenDesktop WinAPI_OpenFileById WinAPI_OpenFileDlg WinAPI_OpenFileMapping WinAPI_OpenIcon WinAPI_OpenInputDesktop WinAPI_OpenJobObject WinAPI_OpenMutex WinAPI_OpenProcess WinAPI_OpenProcessToken WinAPI_OpenSemaphore WinAPI_OpenThemeData WinAPI_OpenWindowStation WinAPI_PageSetupDlg WinAPI_PaintDesktop WinAPI_PaintRgn WinAPI_ParseURL WinAPI_ParseUserName WinAPI_PatBlt WinAPI_PathAddBackslash WinAPI_PathAddExtension WinAPI_PathAppend WinAPI_PathBuildRoot WinAPI_PathCanonicalize WinAPI_PathCommonPrefix WinAPI_PathCompactPath WinAPI_PathCompactPathEx WinAPI_PathCreateFromUrl WinAPI_PathFindExtension WinAPI_PathFindFileName WinAPI_PathFindNextComponent WinAPI_PathFindOnPath WinAPI_PathGetArgs WinAPI_PathGetCharType WinAPI_PathGetDriveNumber WinAPI_PathIsContentType WinAPI_PathIsDirectory WinAPI_PathIsDirectoryEmpty WinAPI_PathIsExe WinAPI_PathIsFileSpec WinAPI_PathIsLFNFileSpec WinAPI_PathIsRelative WinAPI_PathIsRoot WinAPI_PathIsSameRoot WinAPI_PathIsSystemFolder WinAPI_PathIsUNC WinAPI_PathIsUNCServer WinAPI_PathIsUNCServerShare WinAPI_PathMakeSystemFolder WinAPI_PathMatchSpec WinAPI_PathParseIconLocation WinAPI_PathRelativePathTo WinAPI_PathRemoveArgs WinAPI_PathRemoveBackslash WinAPI_PathRemoveExtension WinAPI_PathRemoveFileSpec WinAPI_PathRenameExtension WinAPI_PathSearchAndQualify WinAPI_PathSkipRoot WinAPI_PathStripPath WinAPI_PathStripToRoot WinAPI_PathToRegion WinAPI_PathUndecorate WinAPI_PathUnExpandEnvStrings WinAPI_PathUnmakeSystemFolder WinAPI_PathUnquoteSpaces WinAPI_PathYetAnotherMakeUniqueName WinAPI_PickIconDlg WinAPI_PlayEnhMetaFile WinAPI_PlaySound WinAPI_PlgBlt WinAPI_PointFromRect WinAPI_PolyBezier WinAPI_PolyBezierTo WinAPI_PolyDraw WinAPI_Polygon WinAPI_PostMessage WinAPI_PrimaryLangId WinAPI_PrintDlg WinAPI_PrintDlgEx WinAPI_PrintWindow WinAPI_ProgIDFromCLSID WinAPI_PtInRect WinAPI_PtInRectEx WinAPI_PtInRegion WinAPI_PtVisible WinAPI_QueryDosDevice WinAPI_QueryInformationJobObject WinAPI_QueryPerformanceCounter WinAPI_QueryPerformanceFrequency WinAPI_RadialGradientFill WinAPI_ReadDirectoryChanges WinAPI_ReadFile WinAPI_ReadProcessMemory WinAPI_Rectangle WinAPI_RectInRegion WinAPI_RectIsEmpty WinAPI_RectVisible WinAPI_RedrawWindow WinAPI_RegCloseKey WinAPI_RegConnectRegistry WinAPI_RegCopyTree WinAPI_RegCopyTreeEx WinAPI_RegCreateKey WinAPI_RegDeleteEmptyKey WinAPI_RegDeleteKey WinAPI_RegDeleteKeyValue WinAPI_RegDeleteTree WinAPI_RegDeleteTreeEx WinAPI_RegDeleteValue WinAPI_RegDisableReflectionKey WinAPI_RegDuplicateHKey WinAPI_RegEnableReflectionKey WinAPI_RegEnumKey WinAPI_RegEnumValue WinAPI_RegFlushKey WinAPI_RegisterApplicationRestart WinAPI_RegisterClass WinAPI_RegisterClassEx WinAPI_RegisterHotKey WinAPI_RegisterPowerSettingNotification WinAPI_RegisterRawInputDevices WinAPI_RegisterShellHookWindow WinAPI_RegisterWindowMessage WinAPI_RegLoadMUIString WinAPI_RegNotifyChangeKeyValue WinAPI_RegOpenKey WinAPI_RegQueryInfoKey WinAPI_RegQueryLastWriteTime WinAPI_RegQueryMultipleValues WinAPI_RegQueryReflectionKey WinAPI_RegQueryValue WinAPI_RegRestoreKey WinAPI_RegSaveKey WinAPI_RegSetValue WinAPI_ReleaseCapture WinAPI_ReleaseDC WinAPI_ReleaseMutex WinAPI_ReleaseSemaphore WinAPI_ReleaseStream WinAPI_RemoveClipboardFormatListener WinAPI_RemoveDirectory WinAPI_RemoveFontMemResourceEx WinAPI_RemoveFontResourceEx WinAPI_RemoveWindowSubclass WinAPI_ReOpenFile WinAPI_ReplaceFile WinAPI_ReplaceTextDlg WinAPI_ResetEvent WinAPI_RestartDlg WinAPI_RestoreDC WinAPI_RGB WinAPI_RotatePoints WinAPI_RoundRect WinAPI_SaveDC WinAPI_SaveFileDlg WinAPI_SaveHBITMAPToFile WinAPI_SaveHICONToFile WinAPI_ScaleWindowExt WinAPI_ScreenToClient WinAPI_SearchPath WinAPI_SelectClipPath WinAPI_SelectClipRgn WinAPI_SelectObject WinAPI_SendMessageTimeout WinAPI_SetActiveWindow WinAPI_SetArcDirection WinAPI_SetBitmapBits WinAPI_SetBitmapDimensionEx WinAPI_SetBkColor WinAPI_SetBkMode WinAPI_SetBoundsRect WinAPI_SetBrushOrg WinAPI_SetCapture WinAPI_SetCaretBlinkTime WinAPI_SetCaretPos WinAPI_SetClassLongEx WinAPI_SetColorAdjustment WinAPI_SetCompression WinAPI_SetCurrentDirectory WinAPI_SetCurrentProcessExplicitAppUserModelID WinAPI_SetCursor WinAPI_SetDCBrushColor WinAPI_SetDCPenColor WinAPI_SetDefaultPrinter WinAPI_SetDeviceGammaRamp WinAPI_SetDIBColorTable WinAPI_SetDIBits WinAPI_SetDIBitsToDevice WinAPI_SetDllDirectory WinAPI_SetEndOfFile WinAPI_SetEnhMetaFileBits WinAPI_SetErrorMode WinAPI_SetEvent WinAPI_SetFileAttributes WinAPI_SetFileInformationByHandleEx WinAPI_SetFilePointer WinAPI_SetFilePointerEx WinAPI_SetFileShortName WinAPI_SetFileValidData WinAPI_SetFocus WinAPI_SetFont WinAPI_SetForegroundWindow WinAPI_SetFRBuffer WinAPI_SetGraphicsMode WinAPI_SetHandleInformation WinAPI_SetInformationJobObject WinAPI_SetKeyboardLayout WinAPI_SetKeyboardState WinAPI_SetLastError WinAPI_SetLayeredWindowAttributes WinAPI_SetLocaleInfo WinAPI_SetMapMode WinAPI_SetMessageExtraInfo WinAPI_SetParent WinAPI_SetPixel WinAPI_SetPolyFillMode WinAPI_SetPriorityClass WinAPI_SetProcessAffinityMask WinAPI_SetProcessShutdownParameters WinAPI_SetProcessWindowStation WinAPI_SetRectRgn WinAPI_SetROP2 WinAPI_SetSearchPathMode WinAPI_SetStretchBltMode WinAPI_SetSysColors WinAPI_SetSystemCursor WinAPI_SetTextAlign WinAPI_SetTextCharacterExtra WinAPI_SetTextColor WinAPI_SetTextJustification WinAPI_SetThemeAppProperties WinAPI_SetThreadDesktop WinAPI_SetThreadErrorMode WinAPI_SetThreadExecutionState WinAPI_SetThreadLocale WinAPI_SetThreadUILanguage WinAPI_SetTimer WinAPI_SetUDFColorMode WinAPI_SetUserGeoID WinAPI_SetUserObjectInformation WinAPI_SetVolumeMountPoint WinAPI_SetWindowDisplayAffinity WinAPI_SetWindowExt WinAPI_SetWindowLong WinAPI_SetWindowOrg WinAPI_SetWindowPlacement WinAPI_SetWindowPos WinAPI_SetWindowRgn WinAPI_SetWindowsHookEx WinAPI_SetWindowSubclass WinAPI_SetWindowText WinAPI_SetWindowTheme WinAPI_SetWinEventHook WinAPI_SetWorldTransform WinAPI_SfcIsFileProtected WinAPI_SfcIsKeyProtected WinAPI_ShellAboutDlg WinAPI_ShellAddToRecentDocs WinAPI_ShellChangeNotify WinAPI_ShellChangeNotifyDeregister WinAPI_ShellChangeNotifyRegister WinAPI_ShellCreateDirectory WinAPI_ShellEmptyRecycleBin WinAPI_ShellExecute WinAPI_ShellExecuteEx WinAPI_ShellExtractAssociatedIcon WinAPI_ShellExtractIcon WinAPI_ShellFileOperation WinAPI_ShellFlushSFCache WinAPI_ShellGetFileInfo WinAPI_ShellGetIconOverlayIndex WinAPI_ShellGetImageList WinAPI_ShellGetKnownFolderIDList WinAPI_ShellGetKnownFolderPath WinAPI_ShellGetLocalizedName WinAPI_ShellGetPathFromIDList WinAPI_ShellGetSetFolderCustomSettings WinAPI_ShellGetSettings WinAPI_ShellGetSpecialFolderLocation WinAPI_ShellGetSpecialFolderPath WinAPI_ShellGetStockIconInfo WinAPI_ShellILCreateFromPath WinAPI_ShellNotifyIcon WinAPI_ShellNotifyIconGetRect WinAPI_ShellObjectProperties WinAPI_ShellOpenFolderAndSelectItems WinAPI_ShellOpenWithDlg WinAPI_ShellQueryRecycleBin WinAPI_ShellQueryUserNotificationState WinAPI_ShellRemoveLocalizedName WinAPI_ShellRestricted WinAPI_ShellSetKnownFolderPath WinAPI_ShellSetLocalizedName WinAPI_ShellSetSettings WinAPI_ShellStartNetConnectionDlg WinAPI_ShellUpdateImage WinAPI_ShellUserAuthenticationDlg WinAPI_ShellUserAuthenticationDlgEx WinAPI_ShortToWord WinAPI_ShowCaret WinAPI_ShowCursor WinAPI_ShowError WinAPI_ShowLastError WinAPI_ShowMsg WinAPI_ShowOwnedPopups WinAPI_ShowWindow WinAPI_ShutdownBlockReasonCreate WinAPI_ShutdownBlockReasonDestroy WinAPI_ShutdownBlockReasonQuery WinAPI_SizeOfResource WinAPI_StretchBlt WinAPI_StretchDIBits WinAPI_StrFormatByteSize WinAPI_StrFormatByteSizeEx WinAPI_StrFormatKBSize WinAPI_StrFromTimeInterval WinAPI_StringFromGUID WinAPI_StringLenA WinAPI_StringLenW WinAPI_StrLen WinAPI_StrokeAndFillPath WinAPI_StrokePath WinAPI_StructToArray WinAPI_SubLangId WinAPI_SubtractRect WinAPI_SwapDWord WinAPI_SwapQWord WinAPI_SwapWord WinAPI_SwitchColor WinAPI_SwitchDesktop WinAPI_SwitchToThisWindow WinAPI_SystemParametersInfo WinAPI_TabbedTextOut WinAPI_TerminateJobObject WinAPI_TerminateProcess WinAPI_TextOut WinAPI_TileWindows WinAPI_TrackMouseEvent WinAPI_TransparentBlt WinAPI_TwipsPerPixelX WinAPI_TwipsPerPixelY WinAPI_UnhookWindowsHookEx WinAPI_UnhookWinEvent WinAPI_UnionRect WinAPI_UnionStruct WinAPI_UniqueHardwareID WinAPI_UnloadKeyboardLayout WinAPI_UnlockFile WinAPI_UnmapViewOfFile WinAPI_UnregisterApplicationRestart WinAPI_UnregisterClass WinAPI_UnregisterHotKey WinAPI_UnregisterPowerSettingNotification WinAPI_UpdateLayeredWindow WinAPI_UpdateLayeredWindowEx WinAPI_UpdateLayeredWindowIndirect WinAPI_UpdateResource WinAPI_UpdateWindow WinAPI_UrlApplyScheme WinAPI_UrlCanonicalize WinAPI_UrlCombine WinAPI_UrlCompare WinAPI_UrlCreateFromPath WinAPI_UrlFixup WinAPI_UrlGetPart WinAPI_UrlHash WinAPI_UrlIs WinAPI_UserHandleGrantAccess WinAPI_ValidateRect WinAPI_ValidateRgn WinAPI_VerQueryRoot WinAPI_VerQueryValue WinAPI_VerQueryValueEx WinAPI_WaitForInputIdle WinAPI_WaitForMultipleObjects WinAPI_WaitForSingleObject WinAPI_WideCharToMultiByte WinAPI_WidenPath WinAPI_WindowFromDC WinAPI_WindowFromPoint WinAPI_WordToShort WinAPI_Wow64EnableWow64FsRedirection WinAPI_WriteConsole WinAPI_WriteFile WinAPI_WriteProcessMemory WinAPI_ZeroMemory WinNet_AddConnection WinNet_AddConnection2 WinNet_AddConnection3 WinNet_CancelConnection WinNet_CancelConnection2 WinNet_CloseEnum WinNet_ConnectionDialog WinNet_ConnectionDialog1 WinNet_DisconnectDialog WinNet_DisconnectDialog1 WinNet_EnumResource WinNet_GetConnection WinNet_GetConnectionPerformance WinNet_GetLastError WinNet_GetNetworkInformation WinNet_GetProviderName WinNet_GetResourceInformation WinNet_GetResourceParent WinNet_GetUniversalName WinNet_GetUser WinNet_OpenEnum WinNet_RestoreConnection WinNet_UseConnection Word_Create Word_DocAdd Word_DocAttach Word_DocClose Word_DocExport Word_DocFind Word_DocFindReplace Word_DocGet Word_DocLinkAdd Word_DocLinkGet Word_DocOpen Word_DocPictureAdd Word_DocPrint Word_DocRangeSet Word_DocSave Word_DocSaveAs Word_DocTableRead Word_DocTableWrite Word_Quit\",I={\nv:[e.C(\";\",\"$\",{r:0}),e.C(\"#cs\",\"#ce\"),e.C(\"#comments-start\",\"#comments-end\")]},n={cN:\"variable\",b:\"\\\\$[A-z0-9_]+\"},l={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},o={v:[e.BNM,e.CNM]},a={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"include include-once NoTrayIcon OnAutoItStartRegister RequireAdmin pragma Au3Stripper_Ignore_Funcs Au3Stripper_Ignore_Variables Au3Stripper_Off Au3Stripper_On Au3Stripper_Parameters AutoIt3Wrapper_Add_Constants AutoIt3Wrapper_Au3Check_Parameters AutoIt3Wrapper_Au3Check_Stop_OnWarning AutoIt3Wrapper_Aut2Exe AutoIt3Wrapper_AutoIt3 AutoIt3Wrapper_AutoIt3Dir AutoIt3Wrapper_Change2CUI AutoIt3Wrapper_Compile_Both AutoIt3Wrapper_Compression AutoIt3Wrapper_EndIf AutoIt3Wrapper_Icon AutoIt3Wrapper_If_Compile AutoIt3Wrapper_If_Run AutoIt3Wrapper_Jump_To_First_Error AutoIt3Wrapper_OutFile AutoIt3Wrapper_OutFile_Type AutoIt3Wrapper_OutFile_X64 AutoIt3Wrapper_PlugIn_Funcs AutoIt3Wrapper_Res_Comment Autoit3Wrapper_Res_Compatibility AutoIt3Wrapper_Res_Description AutoIt3Wrapper_Res_Field AutoIt3Wrapper_Res_File_Add AutoIt3Wrapper_Res_FileVersion AutoIt3Wrapper_Res_FileVersion_AutoIncrement AutoIt3Wrapper_Res_Icon_Add AutoIt3Wrapper_Res_Language AutoIt3Wrapper_Res_LegalCopyright AutoIt3Wrapper_Res_ProductVersion AutoIt3Wrapper_Res_requestedExecutionLevel AutoIt3Wrapper_Res_SaveSource AutoIt3Wrapper_Run_After AutoIt3Wrapper_Run_Au3Check AutoIt3Wrapper_Run_Au3Stripper AutoIt3Wrapper_Run_Before AutoIt3Wrapper_Run_Debug_Mode AutoIt3Wrapper_Run_SciTE_Minimized AutoIt3Wrapper_Run_SciTE_OutputPane_Minimized AutoIt3Wrapper_Run_Tidy AutoIt3Wrapper_ShowProgress AutoIt3Wrapper_Testing AutoIt3Wrapper_Tidy_Stop_OnError AutoIt3Wrapper_UPX_Parameters AutoIt3Wrapper_UseUPX AutoIt3Wrapper_UseX64 AutoIt3Wrapper_Version AutoIt3Wrapper_Versioning AutoIt3Wrapper_Versioning_Parameters Tidy_Off Tidy_On Tidy_Parameters EndRegion Region\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[l,{cN:\"string\",v:[{b:\"<\",e:\">\"},{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]}]},l,I]},_={cN:\"constant\",b:\"@[A-z0-9_]+\"},G={cN:\"function\",bK:\"Func\",e:\"$\",eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[n,l,o]}]};return{cI:!0,i:/\\/\\*/,k:{keyword:t,built_in:i,literal:r},c:[I,n,l,o,a,_,G]}});hljs.registerLanguage(\"gams\",function(e){var s=\"abort acronym acronyms alias all and assign binary card diag display else1 eps eq equation equations file files for1 free ge gt if inf integer le loop lt maximizing minimizing model models na ne negative no not option options or ord parameter parameters positive prod putpage puttl repeat sameas scalar scalars semicont semiint set1 sets smax smin solve sos1 sos2 sum system table then until using variable variables while1 xor yes\";return{aliases:[\"gms\"],cI:!0,k:s,c:[{cN:\"section\",bK:\"sets parameters variables equations\",e:\";\",c:[{b:\"/\",e:\"/\",c:[e.NM]}]},{cN:\"string\",b:\"\\\\*{3}\",e:\"\\\\*{3}\"},e.NM,{cN:\"number\",b:\"\\\\$[a-zA-Z0-9]+\"}]}});hljs.registerLanguage(\"matlab\",function(e){var a=[e.CNM,{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]}],s={r:0,c:[{cN:\"operator\",b:/'['\\.]*/}]};return{k:{keyword:\"break case catch classdef continue else elseif end enumerated events for function global if methods otherwise parfor persistent properties return spmd switch try while\",built_in:\"sin sind sinh asin asind asinh cos cosd cosh acos acosd acosh tan tand tanh atan atand atan2 atanh sec secd sech asec asecd asech csc cscd csch acsc acscd acsch cot cotd coth acot acotd acoth hypot exp expm1 log log1p log10 log2 pow2 realpow reallog realsqrt sqrt nthroot nextpow2 abs angle complex conj imag real unwrap isreal cplxpair fix floor ceil round mod rem sign airy besselj bessely besselh besseli besselk beta betainc betaln ellipj ellipke erf erfc erfcx erfinv expint gamma gammainc gammaln psi legendre cross dot factor isprime primes gcd lcm rat rats perms nchoosek factorial cart2sph cart2pol pol2cart sph2cart hsv2rgb rgb2hsv zeros ones eye repmat rand randn linspace logspace freqspace meshgrid accumarray size length ndims numel disp isempty isequal isequalwithequalnans cat reshape diag blkdiag tril triu fliplr flipud flipdim rot90 find sub2ind ind2sub bsxfun ndgrid permute ipermute shiftdim circshift squeeze isscalar isvector ans eps realmax realmin pi i inf nan isnan isinf isfinite j why compan gallery hadamard hankel hilb invhilb magic pascal rosser toeplitz vander wilkinson\"},i:'(//|\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function\",e:\"$\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},{cN:\"params\",b:\"\\\\[\",e:\"\\\\]\"}]},{b:/[a-zA-Z_][a-zA-Z_0-9]*'['\\.]*/,rB:!0,r:0,c:[{b:/[a-zA-Z_][a-zA-Z_0-9]*/,r:0},s.c[0]]},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]\",c:a,r:0,starts:s},{cN:\"cell\",b:\"\\\\{\",e:/}/,c:a,r:0,starts:s},{b:/\\)/,r:0,starts:s},e.C(\"^\\\\s*\\\\%\\\\{\\\\s*$\",\"^\\\\s*\\\\%\\\\}\\\\s*$\"),e.C(\"\\\\%\",\"$\")].concat(a)}});hljs.registerLanguage(\"python\",function(e){var r={cN:\"prompt\",b:/^(>>>|\\.\\.\\.) /},b={cN:\"string\",c:[e.BE],v:[{b:/(u|b)?r?'''/,e:/'''/,c:[r],r:10},{b:/(u|b)?r?\"\"\"/,e:/\"\"\"/,c:[r],r:10},{b:/(u|r|ur)'/,e:/'/,r:10},{b:/(u|r|ur)\"/,e:/\"/,r:10},{b:/(b|br)'/,e:/'/},{b:/(b|br)\"/,e:/\"/},e.ASM,e.QSM]},a={cN:\"number\",r:0,v:[{b:e.BNR+\"[lLjJ]?\"},{b:\"\\\\b(0o[0-7]+)[lLjJ]?\"},{b:e.CNR+\"[lLjJ]?\"}]},l={cN:\"params\",b:/\\(/,e:/\\)/,c:[\"self\",r,a,b]};return{aliases:[\"py\",\"gyp\"],k:{keyword:\"and elif is global as in if from raise for except finally print import pass return exec else break not with class assert yield try while continue del or def lambda async await nonlocal|10 None True False\",built_in:\"Ellipsis NotImplemented\"},i:/(<\\/|->|\\?)/,c:[r,a,b,e.HCM,{v:[{cN:\"function\",bK:\"def\",r:10},{cN:\"class\",bK:\"class\"}],e:/:/,i:/[${=;\\n,]/,c:[e.UTM,l]},{cN:\"decorator\",b:/^[\\t ]*@/,e:/$/},{b:/\\b(print|exec)\\(/}]}});hljs.registerLanguage(\"lisp\",function(b){var e=\"[a-zA-Z_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#][a-zA-Z0-9_\\\\-\\\\+\\\\*\\\\/\\\\<\\\\=\\\\>\\\\&\\\\#!]*\",c=\"\\\\|[^]*?\\\\|\",r=\"(\\\\-|\\\\+)?\\\\d+(\\\\.\\\\d+|\\\\/\\\\d+)?((d|e|f|l|s|D|E|F|L|S)(\\\\+|\\\\-)?\\\\d+)?\",a={cN:\"shebang\",b:\"^#!\",e:\"$\"},i={cN:\"literal\",b:\"\\\\b(t{1}|nil)\\\\b\"},l={cN:\"number\",v:[{b:r,r:0},{b:\"#(b|B)[0-1]+(/[0-1]+)?\"},{b:\"#(o|O)[0-7]+(/[0-7]+)?\"},{b:\"#(x|X)[0-9a-fA-F]+(/[0-9a-fA-F]+)?\"},{b:\"#(c|C)\\\\(\"+r+\" +\"+r,e:\"\\\\)\"}]},t=b.inherit(b.QSM,{i:null}),d=b.C(\";\",\"$\",{r:0}),n={cN:\"variable\",b:\"\\\\*\",e:\"\\\\*\"},u={cN:\"keyword\",b:\"[:&]\"+e},N={b:e,r:0},o={b:c},s={b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,t,l,N]},v={cN:\"quoted\",c:[l,t,n,u,s,N],v:[{b:\"['`]\\\\(\",e:\"\\\\)\"},{b:\"\\\\(quote \",e:\"\\\\)\",k:\"quote\"},{b:\"'\"+c}]},f={cN:\"quoted\",v:[{b:\"'\"+e},{b:\"#'\"+e+\"(::\"+e+\")*\"}]},g={cN:\"list\",b:\"\\\\(\\\\s*\",e:\"\\\\)\"},q={eW:!0,r:0};return g.c=[{cN:\"keyword\",v:[{b:e},{b:c}]},q],q.c=[v,f,g,i,l,t,d,n,u,o,N],{i:/\\S/,c:[l,a,i,t,d,v,f,g,N]}});hljs.registerLanguage(\"golo\",function(e){return{k:{keyword:\"println readln print import module function local return let var while for foreach times in case when match with break continue augment augmentation each find filter reduce if then else otherwise try catch finally raise throw orIfNull\",typename:\"DynamicObject|10 DynamicVariable struct Observable map set vector list array\",literal:\"true false null\"},c:[e.HCM,e.QSM,e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"lua\",function(e){var t=\"\\\\[=*\\\\[\",a=\"\\\\]=*\\\\]\",r={b:t,e:a,c:[\"self\"]},n=[e.C(\"--(?!\"+t+\")\",\"$\"),e.C(\"--\"+t,a,{c:[r],r:10})];return{l:e.UIR,k:{keyword:\"and break do else elseif end false for if in local nil not or repeat return then true until while\",built_in:\"_G _VERSION assert collectgarbage dofile error getfenv getmetatable ipairs load loadfile loadstring module next pairs pcall print rawequal rawget rawset require select setfenv setmetatable tonumber tostring type unpack xpcall coroutine debug io math os package string table\"},c:n.concat([{cN:\"function\",bK:\"function\",e:\"\\\\)\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),{cN:\"params\",b:\"\\\\(\",eW:!0,c:n}].concat(n)},e.CNM,e.ASM,e.QSM,{cN:\"string\",b:t,e:a,c:[r],r:5}])}});hljs.registerLanguage(\"dos\",function(e){var r=e.C(/@?rem\\b/,/$/,{r:10}),t={cN:\"label\",b:\"^\\\\s*[A-Za-z._?][A-Za-z0-9_$#@~.?]*(:|\\\\s+label)\",r:0};return{aliases:[\"bat\",\"cmd\"],cI:!0,i:/\\/\\*/,k:{flow:\"if else goto for in do call exit not exist errorlevel defined\",operator:\"equ neq lss leq gtr geq\",keyword:\"shift cd dir echo setlocal endlocal set pause copy\",stream:\"prn nul lpt3 lpt2 lpt1 con com4 com3 com2 com1 aux\",winutils:\"ping net ipconfig taskkill xcopy ren del\",built_in:\"append assoc at attrib break cacls cd chcp chdir chkdsk chkntfs cls cmd color comp compact convert date dir diskcomp diskcopy doskey erase fs find findstr format ftype graftabl help keyb label md mkdir mode more move path pause print popd pushd promt rd recover rem rename replace restore rmdir shiftsort start subst time title tree type ver verify vol\"},c:[{cN:\"envvar\",b:/%%[^ ]|%[^ ]+?%|![^ ]+?!/},{cN:\"function\",b:t.b,e:\"goto:eof\",c:[e.inherit(e.TM,{b:\"([_a-zA-Z]\\\\w*\\\\.)*([_a-zA-Z]\\\\w*:)?[_a-zA-Z]\\\\w*\"}),r]},{cN:\"number\",b:\"\\\\b\\\\d+\",r:0},r]}});hljs.registerLanguage(\"perl\",function(e){var t=\"getpwent getservent quotemeta msgrcv scalar kill dbmclose undef lc ma syswrite tr send umask sysopen shmwrite vec qx utime local oct semctl localtime readpipe do return format read sprintf dbmopen pop getpgrp not getpwnam rewinddir qqfileno qw endprotoent wait sethostent bless s|0 opendir continue each sleep endgrent shutdown dump chomp connect getsockname die socketpair close flock exists index shmgetsub for endpwent redo lstat msgctl setpgrp abs exit select print ref gethostbyaddr unshift fcntl syscall goto getnetbyaddr join gmtime symlink semget splice x|0 getpeername recv log setsockopt cos last reverse gethostbyname getgrnam study formline endhostent times chop length gethostent getnetent pack getprotoent getservbyname rand mkdir pos chmod y|0 substr endnetent printf next open msgsnd readdir use unlink getsockopt getpriority rindex wantarray hex system getservbyport endservent int chr untie rmdir prototype tell listen fork shmread ucfirst setprotoent else sysseek link getgrgid shmctl waitpid unpack getnetbyname reset chdir grep split require caller lcfirst until warn while values shift telldir getpwuid my getprotobynumber delete and sort uc defined srand accept package seekdir getprotobyname semop our rename seek if q|0 chroot sysread setpwent no crypt getc chown sqrt write setnetent setpriority foreach tie sin msgget map stat getlogin unless elsif truncate exec keys glob tied closedirioctl socket readlink eval xor readline binmode setservent eof ord bind alarm pipe atan2 getgrent exp time push setgrent gt lt or ne m|0 break given say state when\",r={cN:\"subst\",b:\"[$@]\\\\{\",e:\"\\\\}\",k:t},s={b:\"->{\",e:\"}\"},n={cN:\"variable\",v:[{b:/\\$\\d/},{b:/[\\$%@](\\^\\w\\b|#\\w+(::\\w+)*|{\\w+}|\\w+(::\\w*)*)/},{b:/[\\$%@][^\\s\\w{]/,r:0}]},o=[e.BE,r,n],i=[n,e.HCM,e.C(\"^\\\\=\\\\w\",\"\\\\=cut\",{eW:!0}),s,{cN:\"string\",c:o,v:[{b:\"q[qwxr]?\\\\s*\\\\(\",e:\"\\\\)\",r:5},{b:\"q[qwxr]?\\\\s*\\\\[\",e:\"\\\\]\",r:5},{b:\"q[qwxr]?\\\\s*\\\\{\",e:\"\\\\}\",r:5},{b:\"q[qwxr]?\\\\s*\\\\|\",e:\"\\\\|\",r:5},{b:\"q[qwxr]?\\\\s*\\\\<\",e:\"\\\\>\",r:5},{b:\"qw\\\\s+q\",e:\"q\",r:5},{b:\"'\",e:\"'\",c:[e.BE]},{b:'\"',e:'\"'},{b:\"`\",e:\"`\",c:[e.BE]},{b:\"{\\\\w+}\",c:[],r:0},{b:\"-?\\\\w+\\\\s*\\\\=\\\\>\",c:[],r:0}]},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{b:\"(\\\\/\\\\/|\"+e.RSR+\"|\\\\b(split|return|print|reverse|grep)\\\\b)\\\\s*\",k:\"split return print reverse grep\",r:0,c:[e.HCM,{cN:\"regexp\",b:\"(s|tr|y)/(\\\\\\\\.|[^/])*/(\\\\\\\\.|[^/])*/[a-z]*\",r:10},{cN:\"regexp\",b:\"(m|qr)?/\",e:\"/[a-z]*\",c:[e.BE],r:0}]},{cN:\"sub\",bK:\"sub\",e:\"(\\\\s*\\\\(.*?\\\\))?[;{]\",r:5},{cN:\"operator\",b:\"-\\\\w\\\\b\",r:0},{b:\"^__DATA__$\",e:\"^__END__$\",sL:\"mojolicious\",c:[{b:\"^@@.*\",e:\"$\",cN:\"comment\"}]}];return r.c=i,s.c=i,{aliases:[\"pl\"],k:t,c:i}});hljs.registerLanguage(\"protobuf\",function(e){return{k:{keyword:\"package import option optional required repeated group\",built_in:\"double float int32 int64 uint32 uint64 sint32 sint64 fixed32 fixed64 sfixed32 sfixed64 bool string bytes\",literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,{cN:\"class\",bK:\"message enum service\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"function\",bK:\"rpc\",e:/;/,eE:!0,k:\"rpc returns\"},{cN:\"constant\",b:/^\\s*[A-Z_]+/,e:/\\s*=/,eE:!0}]}});hljs.registerLanguage(\"accesslog\",function(T){return{c:[{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+\\\\b\",r:0},{cN:\"string\",b:'\"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)',e:'\"',k:\"GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE\",i:\"\\\\n\",r:10},{cN:\"string\",b:/\\[/,e:/\\]/,i:\"\\\\n\"},{cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"}]}});hljs.registerLanguage(\"java\",function(e){var a=e.UIR+\"(<\"+e.UIR+\">)?\",t=\"false synchronized int abstract float private char boolean static null if const for true while long strictfp finally protected import native final void enum else break transient catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",c=\"\\\\b(0[bB]([01]+[01_]+[01]+|[01]+)|0[xX]([a-fA-F0-9]+[a-fA-F0-9_]+[a-fA-F0-9]+|[a-fA-F0-9]+)|(([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+)(\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))?|\\\\.([\\\\d]+[\\\\d_]+[\\\\d]+|[\\\\d]+))([eE][-+]?\\\\d+)?)[lLfF]?\",r={cN:\"number\",b:c,r:0};return{aliases:[\"jsp\"],k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+a+\"\\\\s+)+\"+e.UIR+\"\\\\s*\\\\(\",rB:!0,e:/[{;=]/,eE:!0,k:t,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,k:t,r:0,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},r,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"vala\",function(e){return{k:{keyword:\"char uchar unichar int uint long ulong short ushort int8 int16 int32 int64 uint8 uint16 uint32 uint64 float double bool struct enum string void weak unowned owned async signal static abstract interface override while do for foreach else switch case break default return try catch public private protected internal using new this get set const stdout stdin stderr var\",built_in:\"DBus GLib CCode Gee Object\",literal:\"false true null\"},c:[{cN:\"class\",bK:\"class interface delegate namespace\",e:\"{\",eE:!0,i:\"[^,:\\\\n\\\\s\\\\.]\",c:[e.UTM]},e.CLCM,e.CBCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:5},e.ASM,e.QSM,e.CNM,{cN:\"preprocessor\",b:\"^#\",e:\"$\",r:2},{cN:\"constant\",b:\" [A-Z_]+ \",r:0}]}});hljs.registerLanguage(\"tcl\",function(e){return{aliases:[\"tk\"],k:\"after append apply array auto_execok auto_import auto_load auto_mkindex auto_mkindex_old auto_qualify auto_reset bgerror binary break catch cd chan clock close concat continue dde dict encoding eof error eval exec exit expr fblocked fconfigure fcopy file fileevent filename flush for foreach format gets glob global history http if incr info interp join lappend|10 lassign|10 lindex|10 linsert|10 list llength|10 load lrange|10 lrepeat|10 lreplace|10 lreverse|10 lsearch|10 lset|10 lsort|10 mathfunc mathop memory msgcat namespace open package parray pid pkg::create pkg_mkIndex platform platform::shell proc puts pwd read refchan regexp registry regsub|10 rename return safe scan seek set socket source split string subst switch tcl_endOfWord tcl_findLibrary tcl_startOfNextWord tcl_startOfPreviousWord tcl_wordBreakAfter tcl_wordBreakBefore tcltest tclvars tell time tm trace unknown unload unset update uplevel upvar variable vwait while\",c:[e.C(\";[ \\\\t]*#\",\"$\"),e.C(\"^[ \\\\t]*#\",\"$\"),{bK:\"proc\",e:\"[\\\\{]\",eE:!0,c:[{cN:\"symbol\",b:\"[ \\\\t\\\\n\\\\r]+(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"[ \\\\t\\\\n\\\\r]\",eW:!0,eE:!0}]},{cN:\"variable\",eE:!0,v:[{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\\\\(([a-zA-Z0-9_])*\\\\)\",e:\"[^a-zA-Z0-9_\\\\}\\\\$]\"},{b:\"\\\\$(\\\\{)?(::)?[a-zA-Z_]((::)?[a-zA-Z0-9_])*\",e:\"(\\\\))?[^a-zA-Z0-9_\\\\}\\\\$]\"}]},{cN:\"string\",c:[e.BE],v:[e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},{cN:\"number\",v:[e.BNM,e.CNM]}]}});hljs.registerLanguage(\"haml\",function(s){return{cI:!0,c:[{cN:\"doctype\",b:\"^!!!( (5|1\\\\.1|Strict|Frameset|Basic|Mobile|RDFa|XML\\\\b.*))?$\",r:10},s.C(\"^\\\\s*(!=#|=#|-#|/).*$\",!1,{r:0}),{b:\"^\\\\s*(-|=|!=)(?!#)\",starts:{e:\"\\\\n\",sL:\"ruby\"}},{cN:\"tag\",b:\"^\\\\s*%\",c:[{cN:\"title\",b:\"\\\\w+\"},{cN:\"value\",b:\"[#\\\\.][\\\\w-]+\"},{b:\"{\\\\s*\",e:\"\\\\s*}\",eE:!0,c:[{b:\":\\\\w+\\\\s*=>\",e:\",\\\\s+\",rB:!0,eW:!0,c:[{cN:\"symbol\",b:\":\\\\w+\"},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]},{b:\"\\\\(\\\\s*\",e:\"\\\\s*\\\\)\",eE:!0,c:[{b:\"\\\\w+\\\\s*=\",e:\"\\\\s+\",rB:!0,eW:!0,c:[{cN:\"attribute\",b:\"\\\\w+\",r:0},s.ASM,s.QSM,{b:\"\\\\w+\",r:0}]}]}]},{cN:\"bullet\",b:\"^\\\\s*[=~]\\\\s*\",r:0},{b:\"#{\",starts:{e:\"}\",sL:\"ruby\"}}]}});hljs.registerLanguage(\"autohotkey\",function(e){var r={cN:\"escape\",b:\"`[\\\\s\\\\S]\"},c=e.C(\";\",\"$\",{r:0}),n=[{cN:\"built_in\",b:\"A_[a-zA-Z0-9]+\"},{cN:\"built_in\",bK:\"ComSpec Clipboard ClipboardAll ErrorLevel\"}];return{cI:!0,k:{keyword:\"Break Continue Else Gosub If Loop Return While\",literal:\"A true false NOT AND OR\"},c:n.concat([r,e.inherit(e.QSM,{c:[r]}),c,{cN:\"number\",b:e.NR,r:0},{cN:\"var_expand\",b:\"%\",e:\"%\",i:\"\\\\n\",c:[r]},{cN:\"label\",c:[r],v:[{b:'^[^\\\\n\";]+::(?!=)'},{b:'^[^\\\\n\";]+:(?!=)',r:0}]},{b:\",\\\\s*,\",r:10}])}});hljs.registerLanguage(\"nimrod\",function(t){return{aliases:[\"nim\"],k:{keyword:\"addr and as asm bind block break|0 case|0 cast const|0 continue|0 converter discard distinct|10 div do elif else|0 end|0 enum|0 except export finally for from generic if|0 import|0 in include|0 interface is isnot|10 iterator|10 let|0 macro method|10 mixin mod nil not notin|10 object|0 of or out proc|10 ptr raise ref|10 return shl shr static template try|0 tuple type|0 using|0 var|0 when while|0 with without xor yield\",literal:\"shared guarded stdin stdout stderr result|10 true false\"},c:[{cN:\"decorator\",b:/{\\./,e:/\\.}/,r:10},{cN:\"string\",b:/[a-zA-Z]\\w*\"/,e:/\"/,c:[{b:/\"\"/}]},{cN:\"string\",b:/([a-zA-Z]\\w*)?\"\"\"/,e:/\"\"\"/},t.QSM,{cN:\"type\",b:/\\b[A-Z]\\w+\\b/,r:0},{cN:\"type\",b:/\\b(int|int8|int16|int32|int64|uint|uint8|uint16|uint32|uint64|float|float32|float64|bool|char|string|cstring|pointer|expr|stmt|void|auto|any|range|array|openarray|varargs|seq|set|clong|culong|cchar|cschar|cshort|cint|csize|clonglong|cfloat|cdouble|clongdouble|cuchar|cushort|cuint|culonglong|cstringarray|semistatic)\\b/},{cN:\"number\",b:/\\b(0[xX][0-9a-fA-F][_0-9a-fA-F]*)('?[iIuU](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0o[0-7][_0-7]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(0(b|B)[01][_01]*)('?[iIuUfF](8|16|32|64))?/,r:0},{cN:\"number\",b:/\\b(\\d[_\\d]*)('?[iIuUfF](8|16|32|64))?/,r:0},t.HCM]}});hljs.registerLanguage(\"mizar\",function(e){return{k:\"environ vocabularies notations constructors definitions registrations theorems schemes requirements begin end definition registration cluster existence pred func defpred deffunc theorem proof let take assume then thus hence ex for st holds consider reconsider such that and in provided of as from be being by means equals implies iff redefine define now not or attr is mode suppose per cases set thesis contradiction scheme reserve struct correctness compatibility coherence symmetry assymetry reflexivity irreflexivity connectedness uniqueness commutativity idempotence involutiveness projectivity\",c:[e.C(\"::\",\"$\")]}});hljs.registerLanguage(\"markdown\",function(e){return{aliases:[\"md\",\"mkdown\",\"mkd\"],c:[{cN:\"header\",v:[{b:\"^#{1,6}\",e:\"$\"},{b:\"^.+?\\\\n[=-]{2,}$\"}]},{b:\"<\",e:\">\",sL:\"xml\",r:0},{cN:\"bullet\",b:\"^([*+-]|(\\\\d+\\\\.))\\\\s+\"},{cN:\"strong\",b:\"[*_]{2}.+?[*_]{2}\"},{cN:\"emphasis\",v:[{b:\"\\\\*.+?\\\\*\"},{b:\"_.+?_\",r:0}]},{cN:\"blockquote\",b:\"^>\\\\s+\",e:\"$\"},{cN:\"code\",v:[{b:\"`.+?`\"},{b:\"^( {4}|\t)\",e:\"$\",r:0}]},{cN:\"horizontal_rule\",b:\"^[-\\\\*]{3,}\",e:\"$\"},{b:\"\\\\[.+?\\\\][\\\\(\\\\[].*?[\\\\)\\\\]]\",rB:!0,c:[{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,rE:!0,r:0},{cN:\"link_url\",b:\"\\\\]\\\\(\",e:\"\\\\)\",eB:!0,eE:!0},{cN:\"link_reference\",b:\"\\\\]\\\\[\",e:\"\\\\]\",eB:!0,eE:!0}],r:10},{b:\"^\\\\[.+\\\\]:\",rB:!0,c:[{cN:\"link_reference\",b:\"\\\\[\",e:\"\\\\]:\",eB:!0,eE:!0,starts:{cN:\"link_url\",e:\"$\"}}]}]}});hljs.registerLanguage(\"aspectj\",function(e){var t=\"false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else extends implements break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws privileged aspectOf adviceexecution proceed cflowbelow cflow initialization preinitialization staticinitialization withincode target within execution getWithinTypeName handler thisJoinPoint thisJoinPointStaticPart thisEnclosingJoinPointStaticPart declare parents warning error soft precedence thisAspectInstance\",i=\"get set args call\";return{k:t,i:/<\\/|#/,c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,e.ASM,e.QSM,{cN:\"aspect\",bK:\"aspect\",e:/[{;=]/,eE:!0,i:/[:;\"\\[\\]]/,c:[{bK:\"extends implements pertypewithin perthis pertarget percflowbelow percflow issingleton\"},e.UTM,{b:/\\([^\\)]*/,e:/[)]+/,k:t+\" \"+i,eE:!1}]},{cN:\"class\",bK:\"class interface\",e:/[{;=]/,eE:!0,r:0,k:\"class interface\",i:/[:\"\\[\\]]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"pointcut after before around throwing returning\",e:/[)]/,eE:!1,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,c:[e.UTM]}]},{b:/[:]/,rB:!0,e:/[{;]/,r:0,eE:!1,k:t,i:/[\"\\[\\]]/,c:[{b:e.UIR+\"\\\\s*\\\\(\",k:t+\" \"+i},e.QSM]},{bK:\"new throw\",r:0},{cN:\"function\",b:/\\w+ +\\w+(\\.)?\\w+\\s*\\([^\\)]*\\)\\s*((throws)[\\w\\s,]+)?[\\{;]/,rB:!0,e:/[{;=]/,k:t,eE:!0,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"params\",b:/\\(/,e:/\\)/,r:0,k:t,c:[e.ASM,e.QSM,e.CNM,e.CBCM]},e.CLCM,e.CBCM]},e.CNM,{cN:\"annotation\",b:\"@[A-Za-z]+\"}]}});hljs.registerLanguage(\"dns\",function(d){return{aliases:[\"bind\",\"zone\"],k:{keyword:\"IN A AAAA AFSDB APL CAA CDNSKEY CDS CERT CNAME DHCID DLV DNAME DNSKEY DS HIP IPSECKEY KEY KX LOC MX NAPTR NS NSEC NSEC3 NSEC3PARAM PTR RRSIG RP SIG SOA SRV SSHFP TA TKEY TLSA TSIG TXT\"},c:[d.C(\";\",\"$\"),{cN:\"operator\",bK:\"$TTL $GENERATE $INCLUDE $ORIGIN\"},{cN:\"number\",b:\"((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)(\\\\.(25[0-5]|2[0-4]\\\\d|1\\\\d\\\\d|[1-9]?\\\\d)){3}))|:)))\"},{cN:\"number\",b:\"((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]).){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\"}]}});hljs.registerLanguage(\"django\",function(e){var t={cN:\"filter\",b:/\\|[A-Za-z]+:?/,k:\"truncatewords removetags linebreaksbr yesno get_digit timesince random striptags filesizeformat escape linebreaks length_is ljust rjust cut urlize fix_ampersands title floatformat capfirst pprint divisibleby add make_list unordered_list urlencode timeuntil urlizetrunc wordcount stringformat linenumbers slice date dictsort dictsortreversed default_if_none pluralize lower join center default truncatewords_html upper length phone2numeric wordwrap time addslashes slugify first escapejs force_escape iriencode last safe safeseq truncatechars localize unlocalize localtime utc timezone\",c:[{cN:\"argument\",b:/\"/,e:/\"/},{cN:\"argument\",b:/'/,e:/'/}]};return{aliases:[\"jinja\"],cI:!0,sL:\"xml\",c:[e.C(/\\{%\\s*comment\\s*%}/,/\\{%\\s*endcomment\\s*%}/),e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:\"comment endcomment load templatetag ifchanged endifchanged if endif firstof for endfor in ifnotequal endifnotequal widthratio extends include spaceless endspaceless regroup by as ifequal endifequal ssi now with cycle url filter endfilter debug block endblock else autoescape endautoescape csrf_token empty elif endwith static trans blocktrans endblocktrans get_static_prefix get_media_prefix plural get_current_language language get_available_languages get_current_language_bidi get_language_info get_language_info_list localize endlocalize localtime endlocaltime timezone endtimezone get_current_timezone verbatim\",c:[t]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[t]}]}});hljs.registerLanguage(\"step21\",function(e){var r=\"[A-Z_][A-Z0-9_.]*\",i=\"END-ISO-10303-21;\",l={literal:\"\",built_in:\"\",keyword:\"HEADER ENDSEC DATA\"},s={cN:\"preprocessor\",b:\"ISO-10303-21;\",r:10},t=[e.CLCM,e.CBCM,e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CNM,e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"label\",v:[{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"p21\",\"step\",\"stp\"],cI:!0,l:r,k:l,c:[{cN:\"preprocessor\",b:i,r:10},s].concat(t)}});hljs.registerLanguage(\"roboconf\",function(e){var n=\"[a-zA-Z-_][^\\n{\\r\\n]+\\\\{\";return{aliases:[\"graph\",\"instances\"],cI:!0,k:\"import\",c:[{cN:\"facet\",b:\"^facet \"+n,e:\"}\",k:\"facet installer exports children extends\",c:[e.HCM]},{cN:\"instance-of\",b:\"^instance of \"+n,e:\"}\",k:\"name count channels instance-data instance-state instance of\",c:[{cN:\"keyword\",b:\"[a-zA-Z-_]+( |\t)*:\"},e.HCM]},{cN:\"component\",b:\"^\"+n,e:\"}\",l:\"\\\\(?[a-zA-Z]+\\\\)?\",k:\"installer exports children extends imports facets alias (optional)\",c:[{cN:\"string\",b:\"\\\\.[a-zA-Z-_]+\",e:\"\\\\s|,|;\",eE:!0},e.HCM]},e.HCM]}});hljs.registerLanguage(\"capnproto\",function(t){return{aliases:[\"capnp\"],k:{keyword:\"struct enum interface union group import using const annotation extends in of on as with from fixed\",built_in:\"Void Bool Int8 Int16 Int32 Int64 UInt8 UInt16 UInt32 UInt64 Float32 Float64 Text Data AnyPointer AnyStruct Capability List\",literal:\"true false\"},c:[t.QSM,t.NM,t.HCM,{cN:\"shebang\",b:/@0x[\\w\\d]{16};/,i:/\\n/},{cN:\"number\",b:/@\\d+\\b/},{cN:\"class\",bK:\"struct enum\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]},{cN:\"class\",bK:\"interface\",e:/\\{/,i:/\\n/,c:[t.inherit(t.TM,{starts:{eW:!0,eE:!0}})]}]}});hljs.registerLanguage(\"livescript\",function(e){var t={keyword:\"in if for while finally new do return else break catch instanceof throw try this switch continue typeof delete debugger case default function var with then unless until loop of by when and or is isnt not it that otherwise from to til fallthrough super case default function var void const let enum export import native __hasProp __extends __slice __bind __indexOf\",literal:\"true false null undefined yes no on off it that void\",built_in:\"npm require console print module global window document\"},s=\"[A-Za-z$_](?:-[0-9A-Za-z$_]|[0-9A-Za-z$_])*\",i=e.inherit(e.TM,{b:s}),n={cN:\"subst\",b:/#\\{/,e:/}/,k:t},r={cN:\"subst\",b:/#[A-Za-z$_]/,e:/(?:\\-[0-9A-Za-z$_]|[0-9A-Za-z$_])*/,k:t},c=[e.BNM,{cN:\"number\",b:\"(\\\\b0[xX][a-fA-F0-9_]+)|(\\\\b\\\\d(\\\\d|_\\\\d)*(\\\\.(\\\\d(\\\\d|_\\\\d)*)?)?(_*[eE]([-+]\\\\d(_\\\\d|\\\\d)*)?)?[_a-z]*)\",r:0,starts:{e:\"(\\\\s*/)?\",r:0}},{cN:\"string\",v:[{b:/'''/,e:/'''/,c:[e.BE]},{b:/'/,e:/'/,c:[e.BE]},{b:/\"\"\"/,e:/\"\"\"/,c:[e.BE,n,r]},{b:/\"/,e:/\"/,c:[e.BE,n,r]},{b:/\\\\/,e:/(\\s|$)/,eE:!0}]},{cN:\"pi\",v:[{b:\"//\",e:\"//[gim]*\",c:[n,e.HCM]},{b:/\\/(?![ *])(\\\\\\/|.)*?\\/[gim]*(?=\\W|$)/}]},{cN:\"property\",b:\"@\"+s},{b:\"``\",e:\"``\",eB:!0,eE:!0,sL:\"javascript\"}];n.c=c;var a={cN:\"params\",b:\"\\\\(\",rB:!0,c:[{b:/\\(/,e:/\\)/,k:t,c:[\"self\"].concat(c)}]};return{aliases:[\"ls\"],k:t,i:/\\/\\*/,c:c.concat([e.C(\"\\\\/\\\\*\",\"\\\\*\\\\/\"),e.HCM,{cN:\"function\",c:[i,a],rB:!0,v:[{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B\\\\->\\\\*?\",e:\"\\\\->\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?!?(\\\\(.*\\\\))?\\\\s*\\\\B[-~]{1,2}>\\\\*?\",e:\"[-~]{1,2}>\\\\*?\"},{b:\"(\"+s+\"\\\\s*(?:=|:=)\\\\s*)?(\\\\(.*\\\\))?\\\\s*\\\\B!?[-~]{1,2}>\\\\*?\",e:\"!?[-~]{1,2}>\\\\*?\"}]},{cN:\"class\",bK:\"class\",e:\"$\",i:/[:=\"\\[\\]]/,c:[{bK:\"extends\",eW:!0,i:/[:=\"\\[\\]]/,c:[i]},i]},{cN:\"attribute\",b:s+\":\",e:\":\",rB:!0,rE:!0,r:0}])}});hljs.registerLanguage(\"crystal\",function(e){function b(e,b){var r=[{b:e,e:b}];return r[0].c=r,r}var r=\"(_[uif](8|16|32|64))?\",c=\"[a-zA-Z_]\\\\w*[!?=]?\",n=\"!=|!==|%|%=|&|&&|&=|\\\\*|\\\\*=|\\\\+|\\\\+=|,|-|-=|/=|/|:|;|<<|<<=|<=|<|===|==|=|>>>=|>>=|>=|>>>|>>|>|\\\\[|\\\\{|\\\\(|\\\\^|\\\\^=|\\\\||\\\\|=|\\\\|\\\\||~\",i=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\][=?]?\",s={keyword:\"abstract alias as asm begin break case class def do else elsif end ensure enum extend for fun if ifdef include instance_sizeof is_a? lib macro module next of out pointerof private protected rescue responds_to? return require self sizeof struct super then type typeof union unless until when while with yield __DIR__ __FILE__ __LINE__\",literal:\"false nil true\"},t={cN:\"subst\",b:\"#{\",e:\"}\",k:s},a={cN:\"expansion\",v:[{b:\"\\\\{\\\\{\",e:\"\\\\}\\\\}\"},{b:\"\\\\{%\",e:\"%\\\\}\"}],k:s,r:10},o={cN:\"string\",c:[e.BE,t],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%w?\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%w?\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%w?{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%w?<\",e:\">\",c:b(\"<\",\">\")},{b:\"%w?/\",e:\"/\"},{b:\"%w?%\",e:\"%\"},{b:\"%w?-\",e:\"-\"},{b:\"%w?\\\\|\",e:\"\\\\|\"}],r:0},u={b:\"(\"+n+\")\\\\s*\",c:[{cN:\"regexp\",c:[e.BE,t],v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}]}],r:0},l={cN:\"regexp\",c:[e.BE,t],v:[{b:\"%r\\\\(\",e:\"\\\\)\",c:b(\"\\\\(\",\"\\\\)\")},{b:\"%r\\\\[\",e:\"\\\\]\",c:b(\"\\\\[\",\"\\\\]\")},{b:\"%r{\",e:\"}\",c:b(\"{\",\"}\")},{b:\"%r<\",e:\">\",c:b(\"<\",\">\")},{b:\"%r/\",e:\"/\"},{b:\"%r%\",e:\"%\"},{b:\"%r-\",e:\"-\"},{b:\"%r\\\\|\",e:\"\\\\|\"}],r:0},_={cN:\"annotation\",b:\"@\\\\[\",e:\"\\\\]\",r:5},f=[a,o,u,l,_,e.HCM,{cN:\"class\",bK:\"class module struct\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}]},{cN:\"class\",bK:\"lib enum union\",e:\"$|;\",i:/=/,c:[e.HCM,e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"})],r:10},{cN:\"function\",bK:\"def\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})]},{cN:\"function\",bK:\"fun macro\",e:/\\B\\b/,c:[e.inherit(e.TM,{b:i,endsParent:!0})],r:5},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[o,{b:i}],r:0},{cN:\"number\",v:[{b:\"\\\\b0b([01_]*[01])\"+r},{b:\"\\\\b0o([0-7_]*[0-7])\"+r},{b:\"\\\\b0x([A-Fa-f0-9_]*[A-Fa-f0-9])\"+r},{b:\"\\\\b(([0-9][0-9_]*[0-9]|[0-9])(\\\\.[0-9_]*[0-9])?([eE][+-]?[0-9_]*[0-9])?)\"+r}],r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?|%)(\\\\w+))\"}];return t.c=f,_.c=f,a.c=f.slice(1),{aliases:[\"cr\"],l:c,k:s,c:f}});hljs.registerLanguage(\"powershell\",function(e){var t={b:\"`[\\\\s\\\\S]\",r:0},r={cN:\"variable\",v:[{b:/\\$[\\w\\d][\\w\\d_:]*/}]},o={cN:\"string\",b:/\"/,e:/\"/,c:[t,r,{cN:\"variable\",b:/\\$[A-z]/,e:/[^A-z]/}]},a={cN:\"string\",b:/'/,e:/'/};return{aliases:[\"ps\"],l:/-?[A-z\\.\\-]+/,cI:!0,k:{keyword:\"if else foreach return function do while until elseif begin for trap data dynamicparam end break throw param continue finally in switch exit filter try process catch\",literal:\"$null $true $false\",built_in:\"Add-Content Add-History Add-Member Add-PSSnapin Clear-Content Clear-Item Clear-Item Property Clear-Variable Compare-Object ConvertFrom-SecureString Convert-Path ConvertTo-Html ConvertTo-SecureString Copy-Item Copy-ItemProperty Export-Alias Export-Clixml Export-Console Export-Csv ForEach-Object Format-Custom Format-List Format-Table Format-Wide Get-Acl Get-Alias Get-AuthenticodeSignature Get-ChildItem Get-Command Get-Content Get-Credential Get-Culture Get-Date Get-EventLog Get-ExecutionPolicy Get-Help Get-History Get-Host Get-Item Get-ItemProperty Get-Location Get-Member Get-PfxCertificate Get-Process Get-PSDrive Get-PSProvider Get-PSSnapin Get-Service Get-TraceSource Get-UICulture Get-Unique Get-Variable Get-WmiObject Group-Object Import-Alias Import-Clixml Import-Csv Invoke-Expression Invoke-History Invoke-Item Join-Path Measure-Command Measure-Object Move-Item Move-ItemProperty New-Alias New-Item New-ItemProperty New-Object New-PSDrive New-Service New-TimeSpan New-Variable Out-Default Out-File Out-Host Out-Null Out-Printer Out-String Pop-Location Push-Location Read-Host Remove-Item Remove-ItemProperty Remove-PSDrive Remove-PSSnapin Remove-Variable Rename-Item Rename-ItemProperty Resolve-Path Restart-Service Resume-Service Select-Object Select-String Set-Acl Set-Alias Set-AuthenticodeSignature Set-Content Set-Date Set-ExecutionPolicy Set-Item Set-ItemProperty Set-Location Set-PSDebug Set-Service Set-TraceSource Set-Variable Sort-Object Split-Path Start-Service Start-Sleep Start-Transcript Stop-Process Stop-Service Stop-Transcript Suspend-Service Tee-Object Test-Path Trace-Command Update-FormatData Update-TypeData Where-Object Write-Debug Write-Error Write-Host Write-Output Write-Progress Write-Verbose Write-Warning\",operator:\"-ne -eq -lt -gt -ge -le -not -like -notlike -match -notmatch -contains -notcontains -in -notin -replace\"},c:[e.HCM,e.NM,o,a,r]}});hljs.registerLanguage(\"ruby\",function(e){var c=\"[a-zA-Z_]\\\\w*[!?=]?|[-+~]\\\\@|<<|>>|=~|===?|<=>|[<>]=?|\\\\*\\\\*|[-/+%^&*~`|]|\\\\[\\\\]=?\",r=\"and false then defined module in return redo if BEGIN retry end for true self when next until do begin unless END rescue nil else break undef not super class case require yield alias while ensure elsif or include attr_reader attr_writer attr_accessor\",b={cN:\"doctag\",b:\"@[A-Za-z]+\"},a={cN:\"value\",b:\"#<\",e:\">\"},n=[e.C(\"#\",\"$\",{c:[b]}),e.C(\"^\\\\=begin\",\"^\\\\=end\",{c:[b],r:10}),e.C(\"^__END__\",\"\\\\n$\")],s={cN:\"subst\",b:\"#\\\\{\",e:\"}\",k:r},t={cN:\"string\",c:[e.BE,s],v:[{b:/'/,e:/'/},{b:/\"/,e:/\"/},{b:/`/,e:/`/},{b:\"%[qQwWx]?\\\\(\",e:\"\\\\)\"},{b:\"%[qQwWx]?\\\\[\",e:\"\\\\]\"},{b:\"%[qQwWx]?{\",e:\"}\"},{b:\"%[qQwWx]?<\",e:\">\"},{b:\"%[qQwWx]?/\",e:\"/\"},{b:\"%[qQwWx]?%\",e:\"%\"},{b:\"%[qQwWx]?-\",e:\"-\"},{b:\"%[qQwWx]?\\\\|\",e:\"\\\\|\"},{b:/\\B\\?(\\\\\\d{1,3}|\\\\x[A-Fa-f0-9]{1,2}|\\\\u[A-Fa-f0-9]{4}|\\\\?\\S)\\b/}]},i={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r},d=[t,a,{cN:\"class\",bK:\"class module\",e:\"$|;\",i:/=/,c:[e.inherit(e.TM,{b:\"[A-Za-z_]\\\\w*(::\\\\w+)*(\\\\?|\\\\!)?\"}),{cN:\"inheritance\",b:\"<\\\\s*\",c:[{cN:\"parent\",b:\"(\"+e.IR+\"::)?\"+e.IR}]}].concat(n)},{cN:\"function\",bK:\"def\",e:\"$|;\",c:[e.inherit(e.TM,{b:c}),i].concat(n)},{cN:\"constant\",b:\"(::)?(\\\\b[A-Z]\\\\w*(::)?)+\",r:0},{cN:\"symbol\",b:e.UIR+\"(\\\\!|\\\\?)?:\",r:0},{cN:\"symbol\",b:\":\",c:[t,{b:c}],r:0},{cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},{cN:\"variable\",b:\"(\\\\$\\\\W)|((\\\\$|\\\\@\\\\@?)(\\\\w+))\"},{b:\"(\"+e.RSR+\")\\\\s*\",c:[a,{cN:\"regexp\",c:[e.BE,s],i:/\\n/,v:[{b:\"/\",e:\"/[a-z]*\"},{b:\"%r{\",e:\"}[a-z]*\"},{b:\"%r\\\\(\",e:\"\\\\)[a-z]*\"},{b:\"%r!\",e:\"![a-z]*\"},{b:\"%r\\\\[\",e:\"\\\\][a-z]*\"}]}].concat(n),r:0}].concat(n);s.c=d,i.c=d;var o=\"[>?]>\",l=\"[\\\\w#]+\\\\(\\\\w+\\\\):\\\\d+:\\\\d+>\",u=\"(\\\\w+-)?\\\\d+\\\\.\\\\d+\\\\.\\\\d(p\\\\d+)?[^>]+>\",N=[{b:/^\\s*=>/,cN:\"status\",starts:{e:\"$\",c:d}},{cN:\"prompt\",b:\"^(\"+o+\"|\"+l+\"|\"+u+\")\",starts:{e:\"$\",c:d}}];return{aliases:[\"rb\",\"gemspec\",\"podspec\",\"thor\",\"irb\"],k:r,i:/\\/\\*/,c:n.concat(N).concat(d)}});hljs.registerLanguage(\"brainfuck\",function(r){var n={cN:\"literal\",b:\"[\\\\+\\\\-]\",r:0};return{aliases:[\"bf\"],c:[r.C(\"[^\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",\"[\\\\[\\\\]\\\\.,\\\\+\\\\-<> \\r\\n]\",{rE:!0,r:0}),{cN:\"title\",b:\"[\\\\[\\\\]]\",r:0},{cN:\"string\",b:\"[\\\\.,]\",r:0},{b:/\\+\\+|\\-\\-/,rB:!0,c:[n]},n]}});hljs.registerLanguage(\"thrift\",function(e){var t=\"bool byte i16 i32 i64 double string binary\";return{k:{keyword:\"namespace const typedef struct enum service exception void oneway set list map required optional\",built_in:t,literal:\"true false\"},c:[e.QSM,e.NM,e.CLCM,e.CBCM,{cN:\"class\",bK:\"struct enum service exception\",e:/\\{/,i:/\\n/,c:[e.inherit(e.TM,{starts:{eW:!0,eE:!0}})]},{b:\"\\\\b(set|list|map)\\\\s*<\",e:\">\",k:t,c:[\"self\"]}]}});hljs.registerLanguage(\"less\",function(e){var r=\"[\\\\w-]+\",t=\"(\"+r+\"|@{\"+r+\"})\",a=[],c=[],n=function(e){return{cN:\"string\",b:\"~?\"+e+\".*?\"+e}},i=function(e,r,t){return{cN:e,b:r,r:t}},s=function(r,t,a){return e.inherit({cN:r,b:t+\"\\\\(\",e:\"\\\\(\",rB:!0,eE:!0,r:0},a)},b={b:\"\\\\(\",e:\"\\\\)\",c:c,r:0};c.push(e.CLCM,e.CBCM,n(\"'\"),n('\"'),e.CSSNM,i(\"hexcolor\",\"#[0-9A-Fa-f]+\\\\b\"),s(\"function\",\"(url|data-uri)\",{starts:{cN:\"string\",e:\"[\\\\)\\\\n]\",eE:!0}}),s(\"function\",r),b,i(\"variable\",\"@@?\"+r,10),i(\"variable\",\"@{\"+r+\"}\"),i(\"built_in\",\"~?`[^`]*?`\"),{cN:\"attribute\",b:r+\"\\\\s*:\",e:\":\",rB:!0,eE:!0});var o=c.concat({b:\"{\",e:\"}\",c:a}),u={bK:\"when\",eW:!0,c:[{bK:\"and not\"}].concat(c)},C={cN:\"attribute\",b:t,e:\":\",eE:!0,c:[e.CLCM,e.CBCM],i:/\\S/,starts:{e:\"[;}]\",rE:!0,c:c,i:\"[<=$]\"}},l={cN:\"at_rule\",b:\"@(import|media|charset|font-face|(-[a-z]+-)?keyframes|supports|document|namespace|page|viewport|host)\\\\b\",starts:{e:\"[;{}]\",rE:!0,c:c,r:0}},d={cN:\"variable\",v:[{b:\"@\"+r+\"\\\\s*:\",r:15},{b:\"@\"+r}],starts:{e:\"[;}]\",rE:!0,c:o}},p={v:[{b:\"[\\\\.#:&\\\\[]\",e:\"[;{}]\"},{b:t+\"[^;]*{\",e:\"{\"}],rB:!0,rE:!0,i:\"[<='$\\\"]\",c:[e.CLCM,e.CBCM,u,i(\"keyword\",\"all\\\\b\"),i(\"variable\",\"@{\"+r+\"}\"),i(\"tag\",t+\"%?\",0),i(\"id\",\"#\"+t),i(\"class\",\"\\\\.\"+t,0),i(\"keyword\",\"&\",0),s(\"pseudo\",\":not\"),s(\"keyword\",\":extend\"),i(\"pseudo\",\"::?\"+t),{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\"},{b:\"\\\\(\",e:\"\\\\)\",c:o},{b:\"!important\"}]};return a.push(e.CLCM,e.CBCM,l,d,p,C),{cI:!0,i:\"[=>'/<($\\\"]\",c:a}});hljs.registerLanguage(\"scilab\",function(e){var n=[e.CNM,{cN:\"string\",b:\"'|\\\"\",e:\"'|\\\"\",c:[e.BE,{b:\"''\"}]}];return{aliases:[\"sci\"],k:{keyword:\"abort break case clear catch continue do elseif else endfunction end for functionglobal if pause return resume select try then while%f %F %t %T %pi %eps %inf %nan %e %i %z %s\",built_in:\"abs and acos asin atan ceil cd chdir clearglobal cosh cos cumprod deff disp errorexec execstr exists exp eye gettext floor fprintf fread fsolve imag isdef isemptyisinfisnan isvector lasterror length load linspace list listfiles log10 log2 logmax min msprintf mclose mopen ones or pathconvert poly printf prod pwd rand realround sinh sin size gsort sprintf sqrt strcat strcmps tring sum system tanh tantype typename warning zeros matrix\"},i:'(\"|#|/\\\\*|\\\\s+/\\\\w+)',c:[{cN:\"function\",bK:\"function endfunction\",e:\"$\",k:\"function endfunction|10\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]},{cN:\"transposed_variable\",b:\"[a-zA-Z_][a-zA-Z_0-9]*('+[\\\\.']*|[\\\\.']+)\",e:\"\",r:0},{cN:\"matrix\",b:\"\\\\[\",e:\"\\\\]'*[\\\\.']*\",r:0,c:n},e.C(\"//\",\"$\")].concat(n)}});hljs.registerLanguage(\"oxygene\",function(e){var r=\"abstract add and array as asc aspect assembly async begin break block by case class concat const copy constructor continue create default delegate desc distinct div do downto dynamic each else empty end ensure enum equals event except exit extension external false final finalize finalizer finally flags for forward from function future global group has if implementation implements implies in index inherited inline interface into invariants is iterator join locked locking loop matching method mod module namespace nested new nil not notify nullable of old on operator or order out override parallel params partial pinned private procedure property protected public queryable raise read readonly record reintroduce remove repeat require result reverse sealed select self sequence set shl shr skip static step soft take then to true try tuple type union unit unsafe until uses using var virtual raises volatile where while with write xor yield await mapped deprecated stdcall cdecl pascal register safecall overload library platform reference packed strict published autoreleasepool selector strong weak unretained\",t=e.C(\"{\",\"}\",{r:0}),a=e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{r:10}),n={cN:\"string\",b:\"'\",e:\"'\",c:[{b:\"''\"}]},o={cN:\"string\",b:\"(#\\\\d+)+\"},i={cN:\"function\",bK:\"function constructor destructor procedure method\",e:\"[:;]\",k:\"function constructor|10 destructor|10 procedure|10 method|10\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",k:r,c:[n,o]},t,a]};return{cI:!0,k:r,i:'(\"|\\\\$[G-Zg-z]|\\\\/\\\\*|</|=>|->)',c:[t,a,e.CLCM,n,o,e.NM,i,{cN:\"class\",b:\"=\\\\bclass\\\\b\",e:\"end;\",k:r,c:[n,o,t,a,e.CLCM,i]}]}});hljs.registerLanguage(\"lasso\",function(e){var r=\"[a-zA-Z_][a-zA-Z0-9_.]*\",a=\"<\\\\?(lasso(script)?|=)\",t=\"\\\\]|\\\\?>\",s={literal:\"true false none minimal full all void bw nbw ew new cn ncn lt lte gt gte eq neq rx nrx ft\",built_in:\"array date decimal duration integer map pair string tag xml null boolean bytes keyword list locale queue set stack staticarray local var variable global data self inherited currentcapture givenblock\",keyword:\"error_code error_msg error_pop error_push error_reset cache database_names database_schemanames database_tablenames define_tag define_type email_batch encode_set html_comment handle handle_error header if inline iterate ljax_target link link_currentaction link_currentgroup link_currentrecord link_detail link_firstgroup link_firstrecord link_lastgroup link_lastrecord link_nextgroup link_nextrecord link_prevgroup link_prevrecord log loop namespace_using output_none portal private protect records referer referrer repeating resultset rows search_args search_arguments select sort_args sort_arguments thread_atomic value_list while abort case else if_empty if_false if_null if_true loop_abort loop_continue loop_count params params_up return return_value run_children soap_definetag soap_lastrequest soap_lastresponse tag_name ascending average by define descending do equals frozen group handle_failure import in into join let match max min on order parent protected provide public require returnhome skip split_thread sum take thread to trait type where with yield yieldhome\"},n=e.C(\"<!--\",\"-->\",{r:0}),i={cN:\"preprocessor\",b:\"\\\\[noprocess\\\\]\",starts:{cN:\"markup\",e:\"\\\\[/noprocess\\\\]\",rE:!0,c:[n]}},o={cN:\"preprocessor\",b:\"\\\\[/noprocess|\"+a},l={cN:\"variable\",b:\"'\"+r+\"'\"},c=[e.C(\"/\\\\*\\\\*!\",\"\\\\*/\"),e.CLCM,e.CBCM,e.inherit(e.CNM,{b:e.CNR+\"|(infinity|nan)\\\\b\"}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"string\",b:\"`\",e:\"`\"},{cN:\"variable\",v:[{b:\"[#$]\"+r},{b:\"#\",e:\"\\\\d+\",i:\"\\\\W\"}]},{cN:\"tag\",b:\"::\\\\s*\",e:r,i:\"\\\\W\"},{cN:\"attribute\",v:[{b:\"-(?!infinity)\"+e.UIR,r:0},{b:\"(\\\\.\\\\.\\\\.)\"}]},{cN:\"subst\",v:[{b:\"->\\\\s*\",c:[l]},{b:\"->|\\\\\\\\|&&?|\\\\|\\\\||!(?!=|>)|(and|or|not)\\\\b\",r:0}]},{cN:\"built_in\",b:\"\\\\.\\\\.?\\\\s*\",r:0,c:[l]},{cN:\"class\",bK:\"define\",rE:!0,e:\"\\\\(|=>\",c:[e.inherit(e.TM,{b:e.UIR+\"(=(?!>))?\"})]}];return{aliases:[\"ls\",\"lassoscript\"],cI:!0,l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[|\"+a,rE:!0,r:0,c:[n]}},i,o,{cN:\"preprocessor\",b:\"\\\\[no_square_brackets\",starts:{e:\"\\\\[/no_square_brackets\\\\]\",l:r+\"|&[lg]t;\",k:s,c:[{cN:\"preprocessor\",b:t,r:0,starts:{cN:\"markup\",e:\"\\\\[noprocess\\\\]|\"+a,rE:!0,c:[n]}},i,o].concat(c)}},{cN:\"preprocessor\",b:\"\\\\[\",r:0},{cN:\"shebang\",b:\"^#!.+lasso9\\\\b\",r:10}].concat(c)}});hljs.registerLanguage(\"gcode\",function(e){var N=\"[A-Z_][A-Z0-9_.]*\",i=\"\\\\%\",c={literal:\"\",built_in:\"\",keyword:\"IF DO WHILE ENDWHILE CALL ENDIF SUB ENDSUB GOTO REPEAT ENDREPEAT EQ LT GT NE GE LE OR XOR\"},r={cN:\"preprocessor\",b:\"([O])([0-9]+)\"},l=[e.CLCM,e.CBCM,e.C(/\\(/,/\\)/),e.inherit(e.CNM,{b:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))|\"+e.CNR}),e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null}),{cN:\"keyword\",b:\"([G])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"([M])([0-9]+\\\\.?[0-9]?)\"},{cN:\"title\",b:\"(VC|VS|#)\",e:\"(\\\\d+)\"},{cN:\"title\",b:\"(VZOFX|VZOFY|VZOFZ)\"},{cN:\"built_in\",b:\"(ATAN|ABS|ACOS|ASIN|SIN|COS|EXP|FIX|FUP|ROUND|LN|TAN)(\\\\[)\",e:\"([-+]?([0-9]*\\\\.?[0-9]+\\\\.?))(\\\\])\"},{cN:\"label\",v:[{b:\"N\",e:\"\\\\d+\",i:\"\\\\W\"}]}];return{aliases:[\"nc\"],cI:!0,l:N,k:c,c:[{cN:\"preprocessor\",b:i},r].concat(l)}});hljs.registerLanguage(\"scala\",function(e){var t={cN:\"annotation\",b:\"@[A-Za-z]+\"},r={cN:\"string\",b:'u?r?\"\"\"',e:'\"\"\"',r:10},a={cN:\"symbol\",b:\"'\\\\w[\\\\w\\\\d_]*(?!')\"},c={cN:\"type\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},i={cN:\"title\",b:/[^0-9\\n\\t \"'(),.`{}\\[\\]:;][^\\n\\t \"'(),.`{}\\[\\]:;]+|[^0-9\\n\\t \"'(),.`{}\\[\\]:;=]/,r:0},n={cN:\"class\",bK:\"class object trait type\",e:/[:={\\[(\\n;]/,c:[{cN:\"keyword\",bK:\"extends with\",r:10},i]},l={cN:\"function\",bK:\"def\",e:/[:={\\[(\\n;]/,c:[i]};return{k:{literal:\"true false null\",keyword:\"type yield lazy override def with val var sealed abstract private trait object if forSome for while throw finally protected extends import final return else break new catch super class case package default try this match continue throws implicit\"},c:[e.CLCM,e.CBCM,r,e.QSM,a,c,l,n,e.CNM,t]}});hljs.registerLanguage(\"armasm\",function(s){return{cI:!0,aliases:[\"arm\"],l:\"\\\\.?\"+s.IR,k:{literal:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 pc lr sp ip sl sb fp a1 a2 a3 a4 v1 v2 v3 v4 v5 v6 v7 v8 f0 f1 f2 f3 f4 f5 f6 f7 p0 p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 c0 c1 c2 c3 c4 c5 c6 c7 c8 c9 c10 c11 c12 c13 c14 c15 q0 q1 q2 q3 q4 q5 q6 q7 q8 q9 q10 q11 q12 q13 q14 q15 cpsr_c cpsr_x cpsr_s cpsr_f cpsr_cx cpsr_cxs cpsr_xs cpsr_xsf cpsr_sf cpsr_cxsf spsr_c spsr_x spsr_s spsr_f spsr_cx spsr_cxs spsr_xs spsr_xsf spsr_sf spsr_cxsf s0 s1 s2 s3 s4 s5 s6 s7 s8 s9 s10 s11 s12 s13 s14 s15 s16 s17 s18 s19 s20 s21 s22 s23 s24 s25 s26 s27 s28 s29 s30 s31 d0 d1 d2 d3 d4 d5 d6 d7 d8 d9 d10 d11 d12 d13 d14 d15 d16 d17 d18 d19 d20 d21 d22 d23 d24 d25 d26 d27 d28 d29 d30 d31 \",preprocessor:\".2byte .4byte .align .ascii .asciz .balign .byte .code .data .else .end .endif .endm .endr .equ .err .exitm .extern .global .hword .if .ifdef .ifndef .include .irp .long .macro .rept .req .section .set .skip .space .text .word .arm .thumb .code16 .code32 .force_thumb .thumb_func .ltorg ALIAS ALIGN ARM AREA ASSERT ATTR CN CODE CODE16 CODE32 COMMON CP DATA DCB DCD DCDU DCDO DCFD DCFDU DCI DCQ DCQU DCW DCWU DN ELIF ELSE END ENDFUNC ENDIF ENDP ENTRY EQU EXPORT EXPORTAS EXTERN FIELD FILL FUNCTION GBLA GBLL GBLS GET GLOBAL IF IMPORT INCBIN INCLUDE INFO KEEP LCLA LCLL LCLS LTORG MACRO MAP MEND MEXIT NOFP OPT PRESERVE8 PROC QN READONLY RELOC REQUIRE REQUIRE8 RLIST FN ROUT SETA SETL SETS SN SPACE SUBT THUMB THUMBX TTL WHILE WEND \",built_in:\"{PC} {VAR} {TRUE} {FALSE} {OPT} {CONFIG} {ENDIAN} {CODESIZE} {CPU} {FPU} {ARCHITECTURE} {PCSTOREOFFSET} {ARMASM_VERSION} {INTER} {ROPI} {RWPI} {SWST} {NOSWST} . @ \"},c:[{cN:\"keyword\",b:\"\\\\b(adc|(qd?|sh?|u[qh]?)?add(8|16)?|usada?8|(q|sh?|u[qh]?)?(as|sa)x|and|adrl?|sbc|rs[bc]|asr|b[lx]?|blx|bxj|cbn?z|tb[bh]|bic|bfc|bfi|[su]bfx|bkpt|cdp2?|clz|clrex|cmp|cmn|cpsi[ed]|cps|setend|dbg|dmb|dsb|eor|isb|it[te]{0,3}|lsl|lsr|ror|rrx|ldm(([id][ab])|f[ds])?|ldr((s|ex)?[bhd])?|movt?|mvn|mra|mar|mul|[us]mull|smul[bwt][bt]|smu[as]d|smmul|smmla|mla|umlaal|smlal?([wbt][bt]|d)|mls|smlsl?[ds]|smc|svc|sev|mia([bt]{2}|ph)?|mrr?c2?|mcrr2?|mrs|msr|orr|orn|pkh(tb|bt)|rbit|rev(16|sh)?|sel|[su]sat(16)?|nop|pop|push|rfe([id][ab])?|stm([id][ab])?|str(ex)?[bhd]?|(qd?)?sub|(sh?|q|u[qh]?)?sub(8|16)|[su]xt(a?h|a?b(16)?)|srs([id][ab])?|swpb?|swi|smi|tst|teq|wfe|wfi|yield)(eq|ne|cs|cc|mi|pl|vs|vc|hi|ls|ge|lt|gt|le|al|hs|lo)?[sptrx]?\",e:\"\\\\s\"},s.C(\"[;@]\",\"$\",{r:0}),s.CBCM,s.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",r:0},{cN:\"title\",b:\"\\\\|\",e:\"\\\\|\",i:\"\\\\n\",r:0},{cN:\"number\",v:[{b:\"[#$=]?0x[0-9a-f]+\"},{b:\"[#$=]?0b[01]+\"},{b:\"[#$=]\\\\d+\"},{b:\"\\\\b\\\\d+\"}],r:0},{cN:\"label\",v:[{b:\"^[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+\"},{b:\"^\\\\s*[a-z_\\\\.\\\\$][a-z0-9_\\\\.\\\\$]+:\"},{b:\"[=#]\\\\w+\"}],r:0}]}});hljs.registerLanguage(\"avrasm\",function(r){return{cI:!0,l:\"\\\\.?\"+r.IR,k:{keyword:\"adc add adiw and andi asr bclr bld brbc brbs brcc brcs break breq brge brhc brhs brid brie brlo brlt brmi brne brpl brsh brtc brts brvc brvs bset bst call cbi cbr clc clh cli cln clr cls clt clv clz com cp cpc cpi cpse dec eicall eijmp elpm eor fmul fmuls fmulsu icall ijmp in inc jmp ld ldd ldi lds lpm lsl lsr mov movw mul muls mulsu neg nop or ori out pop push rcall ret reti rjmp rol ror sbc sbr sbrc sbrs sec seh sbi sbci sbic sbis sbiw sei sen ser ses set sev sez sleep spm st std sts sub subi swap tst wdr\",built_in:\"r0 r1 r2 r3 r4 r5 r6 r7 r8 r9 r10 r11 r12 r13 r14 r15 r16 r17 r18 r19 r20 r21 r22 r23 r24 r25 r26 r27 r28 r29 r30 r31 x|0 xh xl y|0 yh yl z|0 zh zl ucsr1c udr1 ucsr1a ucsr1b ubrr1l ubrr1h ucsr0c ubrr0h tccr3c tccr3a tccr3b tcnt3h tcnt3l ocr3ah ocr3al ocr3bh ocr3bl ocr3ch ocr3cl icr3h icr3l etimsk etifr tccr1c ocr1ch ocr1cl twcr twdr twar twsr twbr osccal xmcra xmcrb eicra spmcsr spmcr portg ddrg ping portf ddrf sreg sph spl xdiv rampz eicrb eimsk gimsk gicr eifr gifr timsk tifr mcucr mcucsr tccr0 tcnt0 ocr0 assr tccr1a tccr1b tcnt1h tcnt1l ocr1ah ocr1al ocr1bh ocr1bl icr1h icr1l tccr2 tcnt2 ocr2 ocdr wdtcr sfior eearh eearl eedr eecr porta ddra pina portb ddrb pinb portc ddrc pinc portd ddrd pind spdr spsr spcr udr0 ucsr0a ucsr0b ubrr0l acsr admux adcsr adch adcl porte ddre pine pinf\",preprocessor:\".byte .cseg .db .def .device .dseg .dw .endmacro .equ .eseg .exit .include .list .listmac .macro .nolist .org .set\"},c:[r.CBCM,r.C(\";\",\"$\",{r:0}),r.CNM,r.BNM,{cN:\"number\",b:\"\\\\b(\\\\$[a-zA-Z0-9]+|0o[0-7]+)\"},r.QSM,{cN:\"string\",b:\"'\",e:\"[^\\\\\\\\]'\",i:\"[^\\\\\\\\][^']\"},{cN:\"label\",b:\"^[A-Za-z0-9_.$]+:\"},{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"localvars\",b:\"@[0-9]+\"}]}});hljs.registerLanguage(\"profile\",function(e){return{c:[e.CNM,{cN:\"built_in\",b:\"{\",e:\"}$\",eB:!0,eE:!0,c:[e.ASM,e.QSM],r:0},{cN:\"filename\",b:\"[a-zA-Z_][\\\\da-zA-Z_]+\\\\.[\\\\da-zA-Z_]{1,3}\",e:\":\",eE:!0},{cN:\"header\",b:\"(ncalls|tottime|cumtime)\",e:\"$\",k:\"ncalls tottime|10 cumtime|10 filename\",r:10},{cN:\"summary\",b:\"function calls\",e:\"$\",c:[e.CNM],r:10},e.ASM,e.QSM,{cN:\"function\",b:\"\\\\(\",e:\"\\\\)$\",c:[e.UTM],r:0}]}});hljs.registerLanguage(\"mercury\",function(e){var i={keyword:\"module use_module import_module include_module end_module initialise mutable initialize finalize finalise interface implementation pred mode func type inst solver any_pred any_func is semidet det nondet multi erroneous failure cc_nondet cc_multi typeclass instance where pragma promise external trace atomic or_else require_complete_switch require_det require_semidet require_multi require_nondet require_cc_multi require_cc_nondet require_erroneous require_failure\",pragma:\"inline no_inline type_spec source_file fact_table obsolete memo loop_check minimal_model terminates does_not_terminate check_termination promise_equivalent_clauses\",preprocessor:\"foreign_proc foreign_decl foreign_code foreign_type foreign_import_module foreign_export_enum foreign_export foreign_enum may_call_mercury will_not_call_mercury thread_safe not_thread_safe maybe_thread_safe promise_pure promise_semipure tabled_for_io local untrailed trailed attach_to_io_state can_pass_as_mercury_type stable will_not_throw_exception may_modify_trail will_not_modify_trail may_duplicate may_not_duplicate affects_liveness does_not_affect_liveness doesnt_affect_liveness no_sharing unknown_sharing sharing\",built_in:\"some all not if then else true fail false try catch catch_any semidet_true semidet_false semidet_fail impure_true impure semipure\"},r={cN:\"label\",b:\"XXX\",e:\"$\",eW:!0,r:0},t=e.inherit(e.CLCM,{b:\"%\"}),_=e.inherit(e.CBCM,{r:0});t.c.push(r),_.c.push(r);var n={cN:\"number\",b:\"0'.\\\\|0[box][0-9a-fA-F]*\"},a=e.inherit(e.ASM,{r:0}),o=e.inherit(e.QSM,{r:0}),l={cN:\"constant\",b:\"\\\\\\\\[abfnrtv]\\\\|\\\\\\\\x[0-9a-fA-F]*\\\\\\\\\\\\|%[-+# *.0-9]*[dioxXucsfeEgGp]\",r:0};o.c.push(l);var s={cN:\"built_in\",v:[{b:\"<=>\"},{b:\"<=\",r:0},{b:\"=>\",r:0},{b:\"/\\\\\\\\\"},{b:\"\\\\\\\\/\"}]},c={cN:\"built_in\",v:[{b:\":-\\\\|-->\"},{b:\"=\",r:0}]};return{aliases:[\"m\",\"moo\"],k:i,c:[s,c,t,_,n,e.NM,a,o,{b:/:-/}]}});hljs.registerLanguage(\"crmsh\",function(e){var t=\"primitive rsc_template\",r=\"group clone ms master location colocation order fencing_topology rsc_ticket acl_target acl_group user role tag xml\",a=\"property rsc_defaults op_defaults\",s=\"params meta operations op rule attributes utilization\",i=\"read write deny defined not_defined in_range date spec in ref reference attribute type xpath version and or lt gt tag lte gte eq ne \\\\\",o=\"number string\",n=\"Master Started Slave Stopped start promote demote stop monitor true false\";return{aliases:[\"crm\",\"pcmk\"],cI:!0,k:{keyword:s,operator:i,type:o,literal:n},c:[e.HCM,{bK:\"node\",starts:{cN:\"identifier\",e:\"\\\\s*([\\\\w_-]+:)?\",starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\"}}},{bK:t,starts:{cN:\"title\",e:\"\\\\s*[\\\\$\\\\w_][\\\\w_-]*\",starts:{cN:\"pragma\",e:\"\\\\s*@?[\\\\w_][\\\\w_\\\\.:-]*\"}}},{b:\"\\\\b(\"+r.split(\" \").join(\"|\")+\")\\\\s+\",k:r,starts:{cN:\"title\",e:\"[\\\\$\\\\w_][\\\\w_-]*\"}},{bK:a,starts:{cN:\"title\",e:\"\\\\s*([\\\\w_-]+:)?\"}},e.QSM,{cN:\"pragma\",b:\"(ocf|systemd|service|lsb):[\\\\w_:-]+\",r:0},{cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(ms|s|h|m)?\",r:0},{cN:\"number\",b:\"[-]?(infinity|inf)\",r:0},{cN:\"variable\",b:/([A-Za-z\\$_\\#][\\w_-]+)=/,r:0},{cN:\"tag\",b:\"</?\",e:\"/?>\",r:0}]}});hljs.registerLanguage(\"erlang\",function(e){var r=\"[a-z'][a-zA-Z0-9_']*\",c=\"(\"+r+\":\"+r+\"|\"+r+\")\",a={keyword:\"after and andalso|10 band begin bnot bor bsl bzr bxor case catch cond div end fun if let not of orelse|10 query receive rem try when xor\",literal:\"false true\"},n=e.C(\"%\",\"$\"),i={cN:\"number\",b:\"\\\\b(\\\\d+#[a-fA-F0-9]+|\\\\d+(\\\\.\\\\d+)?([eE][-+]?\\\\d+)?)\",r:0},b={b:\"fun\\\\s+\"+r+\"/\\\\d+\"},d={b:c+\"\\\\(\",e:\"\\\\)\",rB:!0,r:0,c:[{cN:\"function_name\",b:c,r:0},{b:\"\\\\(\",e:\"\\\\)\",eW:!0,rE:!0,r:0}]},o={cN:\"tuple\",b:\"{\",e:\"}\",r:0},t={cN:\"variable\",b:\"\\\\b_([A-Z][A-Za-z0-9_]*)?\",r:0},l={cN:\"variable\",b:\"[A-Z][a-zA-Z0-9_]*\",r:0},f={b:\"#\"+e.UIR,r:0,rB:!0,c:[{cN:\"record_name\",b:\"#\"+e.UIR,r:0},{b:\"{\",e:\"}\",r:0}]},s={bK:\"fun receive if try case\",e:\"end\",k:a};s.c=[n,b,e.inherit(e.ASM,{cN:\"\"}),s,d,e.QSM,i,o,t,l,f];var u=[n,b,s,d,e.QSM,i,o,t,l,f];d.c[1].c=u,o.c=u,f.c[1].c=u;var v={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:u};return{aliases:[\"erl\"],k:a,i:\"(</|\\\\*=|\\\\+=|-=|/\\\\*|\\\\*/|\\\\(\\\\*|\\\\*\\\\))\",c:[{cN:\"function\",b:\"^\"+r+\"\\\\s*\\\\(\",e:\"->\",rB:!0,i:\"\\\\(|#|//|/\\\\*|\\\\\\\\|:|;\",c:[v,e.inherit(e.TM,{b:r})],starts:{e:\";|\\\\.\",k:a,c:u}},n,{cN:\"pp\",b:\"^-\",e:\"\\\\.\",r:0,eE:!0,rB:!0,l:\"-\"+e.IR,k:\"-module -record -undef -export -ifdef -ifndef -author -copyright -doc -vsn -import -include -include_lib -compile -define -else -endif -file -behaviour -behavior -spec\",c:[v]},i,e.QSM,f,t,l,o,{b:/\\.$/}]}});hljs.registerLanguage(\"cpp\",function(t){var e={cN:\"keyword\",b:\"\\\\b[a-z\\\\d_]*_t\\\\b\"},r={cN:\"string\",v:[t.inherit(t.QSM,{b:'((u8?|U)|L)?\"'}),{b:'(u8?|U)?R\"',e:'\"',c:[t.BE]},{b:\"'\\\\\\\\?.\",e:\"'\",i:\".\"}]},s={cN:\"number\",v:[{b:\"\\\\b(\\\\d+(\\\\.\\\\d*)?|\\\\.\\\\d+)(u|U|l|L|ul|UL|f|F)\"},{b:t.CNR}]},i={cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elif endif define undef warning error line pragma ifdef ifndef\",c:[{b:/\\\\\\n/,r:0},{bK:\"include\",e:\"$\",c:[r,{cN:\"string\",b:\"<\",e:\">\",i:\"\\\\n\"}]},r,s,t.CLCM,t.CBCM]},a=t.IR+\"\\\\s*\\\\(\",c={keyword:\"int float while private char catch export virtual operator sizeof dynamic_cast|10 typedef const_cast|10 const struct for static_cast|10 union namespace unsigned long volatile static protected bool template mutable if public friend do goto auto void enum else break extern using class asm case typeid short reinterpret_cast|10 default double register explicit signed typename try this switch continue inline delete alignof constexpr decltype noexcept static_assert thread_local restrict _Bool complex _Complex _Imaginary atomic_bool atomic_char atomic_schar atomic_uchar atomic_short atomic_ushort atomic_int atomic_uint atomic_long atomic_ulong atomic_llong atomic_ullong\",built_in:\"std string cin cout cerr clog stdin stdout stderr stringstream istringstream ostringstream auto_ptr deque list queue stack vector map set bitset multiset multimap unordered_set unordered_map unordered_multiset unordered_multimap array shared_ptr abort abs acos asin atan2 atan calloc ceil cosh cos exit exp fabs floor fmod fprintf fputs free frexp fscanf isalnum isalpha iscntrl isdigit isgraph islower isprint ispunct isspace isupper isxdigit tolower toupper labs ldexp log10 log malloc realloc memchr memcmp memcpy memset modf pow printf putchar puts scanf sinh sin snprintf sprintf sqrt sscanf strcat strchr strcmp strcpy strcspn strlen strncat strncmp strncpy strpbrk strrchr strspn strstr tanh tan vfprintf vprintf vsprintf\",literal:\"true false nullptr NULL\"};return{aliases:[\"c\",\"cc\",\"h\",\"c++\",\"h++\",\"hpp\"],k:c,i:\"</\",c:[e,t.CLCM,t.CBCM,s,r,i,{b:\"\\\\b(deque|list|queue|stack|vector|map|set|bitset|multiset|multimap|unordered_map|unordered_set|unordered_multiset|unordered_multimap|array)\\\\s*<\",e:\">\",k:c,c:[\"self\",e]},{b:t.IR+\"::\",k:c},{bK:\"new throw return else\",r:0},{cN:\"function\",b:\"(\"+t.IR+\"[\\\\*&\\\\s]+)+\"+a,rB:!0,e:/[{;=]/,eE:!0,k:c,i:/[^\\w\\s\\*&]/,c:[{b:a,rB:!0,c:[t.TM],r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:c,r:0,c:[t.CLCM,t.CBCM,r,s]},t.CLCM,t.CBCM,i]}]}});hljs.registerLanguage(\"xquery\",function(e){var t=\"for let if while then else return where group by xquery encoding versionmodule namespace boundary-space preserve strip default collation base-uri orderingcopy-namespaces order declare import schema namespace function option in allowing emptyat tumbling window sliding window start when only end when previous next stable ascendingdescending empty greatest least some every satisfies switch case typeswitch try catch andor to union intersect instance of treat as castable cast map array delete insert intoreplace value rename copy modify update\",a=\"false true xs:string xs:integer element item xs:date xs:datetime xs:float xs:double xs:decimal QName xs:anyURI xs:long xs:int xs:short xs:byte attribute\",r={cN:\"variable\",b:/\\$[a-zA-Z0-9\\-]+/,r:5},s={cN:\"number\",b:\"(\\\\b0[0-7_]+)|(\\\\b0x[0-9a-fA-F_]+)|(\\\\b[1-9][0-9_]*(\\\\.[0-9_]+)?)|[0_]\\\\b\",r:0},n={cN:\"string\",v:[{b:/\"/,e:/\"/,c:[{b:/\"\"/,r:0}]},{b:/'/,e:/'/,c:[{b:/''/,r:0}]}]},i={cN:\"decorator\",b:\"%\\\\w+\"},c={cN:\"comment\",b:\"\\\\(:\",e:\":\\\\)\",r:10,c:[{cN:\"doc\",b:\"@\\\\w+\"}]},o={b:\"{\",e:\"}\"},l=[r,n,s,c,i,o];return o.c=l,{aliases:[\"xpath\",\"xq\"],cI:!1,l:/[a-zA-Z\\$][a-zA-Z0-9_:\\-]*/,i:/(proc)|(abstract)|(extends)|(until)|(#)/,k:{keyword:t,literal:a},c:l}});hljs.registerLanguage(\"dockerfile\",function(e){return{aliases:[\"docker\"],cI:!0,k:{built_ins:\"from maintainer cmd expose add copy entrypoint volume user workdir onbuild run env label\"},c:[e.HCM,{k:{built_in:\"run cmd entrypoint volume add copy workdir onbuild label\"},b:/^ *(onbuild +)?(run|cmd|entrypoint|volume|add|copy|workdir|label) +/,starts:{e:/[^\\\\]\\n/,sL:\"bash\"}},{k:{built_in:\"from maintainer expose env user onbuild\"},b:/^ *(onbuild +)?(from|maintainer|expose|env|user|onbuild) +/,e:/[^\\\\]\\n/,c:[e.ASM,e.QSM,e.NM,e.HCM]}]}});hljs.registerLanguage(\"scss\",function(e){var t=\"[a-zA-Z-][a-zA-Z0-9_-]*\",i={cN:\"variable\",b:\"(\\\\$\"+t+\")\\\\b\"},r={cN:\"function\",b:t+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},o={cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"};({cN:\"attribute\",b:\"[A-Z\\\\_\\\\.\\\\-]+\",e:\":\",eE:!0,i:\"[^\\\\s]\",starts:{cN:\"value\",eW:!0,eE:!0,c:[r,o,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"important\",b:\"!important\"}]}});return{cI:!0,i:\"[=/|']\",c:[e.CLCM,e.CBCM,r,{cN:\"id\",b:\"\\\\#[A-Za-z0-9_-]+\",r:0},{cN:\"class\",b:\"\\\\.[A-Za-z0-9_-]+\",r:0},{cN:\"attr_selector\",b:\"\\\\[\",e:\"\\\\]\",i:\"$\"},{cN:\"tag\",b:\"\\\\b(a|abbr|acronym|address|area|article|aside|audio|b|base|big|blockquote|body|br|button|canvas|caption|cite|code|col|colgroup|command|datalist|dd|del|details|dfn|div|dl|dt|em|embed|fieldset|figcaption|figure|footer|form|frame|frameset|(h[1-6])|head|header|hgroup|hr|html|i|iframe|img|input|ins|kbd|keygen|label|legend|li|link|map|mark|meta|meter|nav|noframes|noscript|object|ol|optgroup|option|output|p|param|pre|progress|q|rp|rt|ruby|samp|script|section|select|small|span|strike|strong|style|sub|sup|table|tbody|td|textarea|tfoot|th|thead|time|title|tr|tt|ul|var|video)\\\\b\",r:0},{cN:\"pseudo\",b:\":(visited|valid|root|right|required|read-write|read-only|out-range|optional|only-of-type|only-child|nth-of-type|nth-last-of-type|nth-last-child|nth-child|not|link|left|last-of-type|last-child|lang|invalid|indeterminate|in-range|hover|focus|first-of-type|first-line|first-letter|first-child|first|enabled|empty|disabled|default|checked|before|after|active)\"},{cN:\"pseudo\",b:\"::(after|before|choices|first-letter|first-line|repeat-index|repeat-item|selection|value)\"},i,{cN:\"attribute\",b:\"\\\\b(z-index|word-wrap|word-spacing|word-break|width|widows|white-space|visibility|vertical-align|unicode-bidi|transition-timing-function|transition-property|transition-duration|transition-delay|transition|transform-style|transform-origin|transform|top|text-underline-position|text-transform|text-shadow|text-rendering|text-overflow|text-indent|text-decoration-style|text-decoration-line|text-decoration-color|text-decoration|text-align-last|text-align|tab-size|table-layout|right|resize|quotes|position|pointer-events|perspective-origin|perspective|page-break-inside|page-break-before|page-break-after|padding-top|padding-right|padding-left|padding-bottom|padding|overflow-y|overflow-x|overflow-wrap|overflow|outline-width|outline-style|outline-offset|outline-color|outline|orphans|order|opacity|object-position|object-fit|normal|none|nav-up|nav-right|nav-left|nav-index|nav-down|min-width|min-height|max-width|max-height|mask|marks|margin-top|margin-right|margin-left|margin-bottom|margin|list-style-type|list-style-position|list-style-image|list-style|line-height|letter-spacing|left|justify-content|initial|inherit|ime-mode|image-orientation|image-resolution|image-rendering|icon|hyphens|height|font-weight|font-variant-ligatures|font-variant|font-style|font-stretch|font-size-adjust|font-size|font-language-override|font-kerning|font-feature-settings|font-family|font|float|flex-wrap|flex-shrink|flex-grow|flex-flow|flex-direction|flex-basis|flex|filter|empty-cells|display|direction|cursor|counter-reset|counter-increment|content|column-width|column-span|column-rule-width|column-rule-style|column-rule-color|column-rule|column-gap|column-fill|column-count|columns|color|clip-path|clip|clear|caption-side|break-inside|break-before|break-after|box-sizing|box-shadow|box-decoration-break|bottom|border-width|border-top-width|border-top-style|border-top-right-radius|border-top-left-radius|border-top-color|border-top|border-style|border-spacing|border-right-width|border-right-style|border-right-color|border-right|border-radius|border-left-width|border-left-style|border-left-color|border-left|border-image-width|border-image-source|border-image-slice|border-image-repeat|border-image-outset|border-image|border-color|border-collapse|border-bottom-width|border-bottom-style|border-bottom-right-radius|border-bottom-left-radius|border-bottom-color|border-bottom|border|background-size|background-repeat|background-position|background-origin|background-image|background-color|background-clip|background-attachment|background-blend-mode|background|backface-visibility|auto|animation-timing-function|animation-play-state|animation-name|animation-iteration-count|animation-fill-mode|animation-duration|animation-direction|animation-delay|animation|align-self|align-items|align-content)\\\\b\",i:\"[^\\\\s]\"},{cN:\"value\",b:\"\\\\b(whitespace|wait|w-resize|visible|vertical-text|vertical-ideographic|uppercase|upper-roman|upper-alpha|underline|transparent|top|thin|thick|text|text-top|text-bottom|tb-rl|table-header-group|table-footer-group|sw-resize|super|strict|static|square|solid|small-caps|separate|se-resize|scroll|s-resize|rtl|row-resize|ridge|right|repeat|repeat-y|repeat-x|relative|progress|pointer|overline|outside|outset|oblique|nowrap|not-allowed|normal|none|nw-resize|no-repeat|no-drop|newspaper|ne-resize|n-resize|move|middle|medium|ltr|lr-tb|lowercase|lower-roman|lower-alpha|loose|list-item|line|line-through|line-edge|lighter|left|keep-all|justify|italic|inter-word|inter-ideograph|inside|inset|inline|inline-block|inherit|inactive|ideograph-space|ideograph-parenthesis|ideograph-numeric|ideograph-alpha|horizontal|hidden|help|hand|groove|fixed|ellipsis|e-resize|double|dotted|distribute|distribute-space|distribute-letter|distribute-all-lines|disc|disabled|default|decimal|dashed|crosshair|collapse|col-resize|circle|char|center|capitalize|break-word|break-all|bottom|both|bolder|bold|block|bidi-override|below|baseline|auto|always|all-scroll|absolute|table|table-cell)\\\\b\"},{cN:\"value\",b:\":\",e:\";\",c:[r,i,o,e.CSSNM,e.QSM,e.ASM,{cN:\"important\",b:\"!important\"}]},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",k:\"mixin include extend for if else each while charset import debug media page content font-face namespace warn\",c:[r,i,e.QSM,e.ASM,o,e.CSSNM,{cN:\"preprocessor\",b:\"\\\\s[A-Za-z0-9_.-]+\",r:0}]}]}});hljs.registerLanguage(\"cmake\",function(e){return{aliases:[\"cmake.in\"],cI:!0,k:{keyword:\"add_custom_command add_custom_target add_definitions add_dependencies add_executable add_library add_subdirectory add_test aux_source_directory break build_command cmake_minimum_required cmake_policy configure_file create_test_sourcelist define_property else elseif enable_language enable_testing endforeach endfunction endif endmacro endwhile execute_process export find_file find_library find_package find_path find_program fltk_wrap_ui foreach function get_cmake_property get_directory_property get_filename_component get_property get_source_file_property get_target_property get_test_property if include include_directories include_external_msproject include_regular_expression install link_directories load_cache load_command macro mark_as_advanced message option output_required_files project qt_wrap_cpp qt_wrap_ui remove_definitions return separate_arguments set set_directory_properties set_property set_source_files_properties set_target_properties set_tests_properties site_name source_group string target_link_libraries try_compile try_run unset variable_watch while build_name exec_program export_library_dependencies install_files install_programs install_targets link_libraries make_directory remove subdir_depends subdirs use_mangled_mesa utility_source variable_requires write_file qt5_use_modules qt5_use_package qt5_wrap_cpp on off true false and or\",operator:\"equal less greater strless strgreater strequal matches\"},c:[{cN:\"envvar\",b:\"\\\\${\",e:\"}\"},e.HCM,e.QSM,e.NM]}});hljs.registerLanguage(\"nix\",function(e){var t={keyword:\"rec with let in inherit assert if else then\",constant:\"true false or and null\",built_in:\"import abort baseNameOf dirOf isNull builtins map removeAttrs throw toString derivation\"},i={cN:\"subst\",b:/\\$\\{/,e:/}/,k:t},r={cN:\"variable\",b:/[a-zA-Z0-9-_]+(\\s*=)/,r:0},n={cN:\"string\",b:\"''\",e:\"''\",c:[i]},s={cN:\"string\",b:'\"',e:'\"',c:[i]},a=[e.NM,e.HCM,e.CBCM,n,s,r];return i.c=a,{aliases:[\"nixos\"],k:t,c:a}});hljs.registerLanguage(\"mathematica\",function(e){return{aliases:[\"mma\"],l:\"(\\\\$|\\\\b)\"+e.IR+\"\\\\b\",k:\"AbelianGroup Abort AbortKernels AbortProtect Above Abs Absolute AbsoluteCorrelation AbsoluteCorrelationFunction AbsoluteCurrentValue AbsoluteDashing AbsoluteFileName AbsoluteOptions AbsolutePointSize AbsoluteThickness AbsoluteTime AbsoluteTiming AccountingForm Accumulate Accuracy AccuracyGoal ActionDelay ActionMenu ActionMenuBox ActionMenuBoxOptions Active ActiveItem ActiveStyle AcyclicGraphQ AddOnHelpPath AddTo AdjacencyGraph AdjacencyList AdjacencyMatrix AdjustmentBox AdjustmentBoxOptions AdjustTimeSeriesForecast AffineTransform After AiryAi AiryAiPrime AiryAiZero AiryBi AiryBiPrime AiryBiZero AlgebraicIntegerQ AlgebraicNumber AlgebraicNumberDenominator AlgebraicNumberNorm AlgebraicNumberPolynomial AlgebraicNumberTrace AlgebraicRules AlgebraicRulesData Algebraics AlgebraicUnitQ Alignment AlignmentMarker AlignmentPoint All AllowedDimensions AllowGroupClose AllowInlineCells AllowKernelInitialization AllowReverseGroupClose AllowScriptLevelChange AlphaChannel AlternatingGroup AlternativeHypothesis Alternatives AmbientLight Analytic AnchoredSearch And AndersonDarlingTest AngerJ AngleBracket AngularGauge Animate AnimationCycleOffset AnimationCycleRepetitions AnimationDirection AnimationDisplayTime AnimationRate AnimationRepetitions AnimationRunning Animator AnimatorBox AnimatorBoxOptions AnimatorElements Annotation Annuity AnnuityDue Antialiasing Antisymmetric Apart ApartSquareFree Appearance AppearanceElements AppellF1 Append AppendTo Apply ArcCos ArcCosh ArcCot ArcCoth ArcCsc ArcCsch ArcSec ArcSech ArcSin ArcSinDistribution ArcSinh ArcTan ArcTanh Arg ArgMax ArgMin ArgumentCountQ ARIMAProcess ArithmeticGeometricMean ARMAProcess ARProcess Array ArrayComponents ArrayDepth ArrayFlatten ArrayPad ArrayPlot ArrayQ ArrayReshape ArrayRules Arrays Arrow Arrow3DBox ArrowBox Arrowheads AspectRatio AspectRatioFixed Assert Assuming Assumptions AstronomicalData Asynchronous AsynchronousTaskObject AsynchronousTasks AtomQ Attributes AugmentedSymmetricPolynomial AutoAction AutoDelete AutoEvaluateEvents AutoGeneratedPackage AutoIndent AutoIndentSpacings AutoItalicWords AutoloadPath AutoMatch Automatic AutomaticImageSize AutoMultiplicationSymbol AutoNumberFormatting AutoOpenNotebooks AutoOpenPalettes AutorunSequencing AutoScaling AutoScroll AutoSpacing AutoStyleOptions AutoStyleWords Axes AxesEdge AxesLabel AxesOrigin AxesStyle Axis BabyMonsterGroupB Back Background BackgroundTasksSettings Backslash Backsubstitution Backward Band BandpassFilter BandstopFilter BarabasiAlbertGraphDistribution BarChart BarChart3D BarLegend BarlowProschanImportance BarnesG BarOrigin BarSpacing BartlettHannWindow BartlettWindow BaseForm Baseline BaselinePosition BaseStyle BatesDistribution BattleLemarieWavelet Because BeckmannDistribution Beep Before Begin BeginDialogPacket BeginFrontEndInteractionPacket BeginPackage BellB BellY Below BenfordDistribution BeniniDistribution BenktanderGibratDistribution BenktanderWeibullDistribution BernoulliB BernoulliDistribution BernoulliGraphDistribution BernoulliProcess BernsteinBasis BesselFilterModel BesselI BesselJ BesselJZero BesselK BesselY BesselYZero Beta BetaBinomialDistribution BetaDistribution BetaNegativeBinomialDistribution BetaPrimeDistribution BetaRegularized BetweennessCentrality BezierCurve BezierCurve3DBox BezierCurve3DBoxOptions BezierCurveBox BezierCurveBoxOptions BezierFunction BilateralFilter Binarize BinaryFormat BinaryImageQ BinaryRead BinaryReadList BinaryWrite BinCounts BinLists Binomial BinomialDistribution BinomialProcess BinormalDistribution BiorthogonalSplineWavelet BipartiteGraphQ BirnbaumImportance BirnbaumSaundersDistribution BitAnd BitClear BitGet BitLength BitNot BitOr BitSet BitShiftLeft BitShiftRight BitXor Black BlackmanHarrisWindow BlackmanNuttallWindow BlackmanWindow Blank BlankForm BlankNullSequence BlankSequence Blend Block BlockRandom BlomqvistBeta BlomqvistBetaTest Blue Blur BodePlot BohmanWindow Bold Bookmarks Boole BooleanConsecutiveFunction BooleanConvert BooleanCountingFunction BooleanFunction BooleanGraph BooleanMaxterms BooleanMinimize BooleanMinterms Booleans BooleanTable BooleanVariables BorderDimensions BorelTannerDistribution Bottom BottomHatTransform BoundaryStyle Bounds Box BoxBaselineShift BoxData BoxDimensions Boxed Boxes BoxForm BoxFormFormatTypes BoxFrame BoxID BoxMargins BoxMatrix BoxRatios BoxRotation BoxRotationPoint BoxStyle BoxWhiskerChart Bra BracketingBar BraKet BrayCurtisDistance BreadthFirstScan Break Brown BrownForsytheTest BrownianBridgeProcess BrowserCategory BSplineBasis BSplineCurve BSplineCurve3DBox BSplineCurveBox BSplineCurveBoxOptions BSplineFunction BSplineSurface BSplineSurface3DBox BubbleChart BubbleChart3D BubbleScale BubbleSizes BulletGauge BusinessDayQ ButterflyGraph ButterworthFilterModel Button ButtonBar ButtonBox ButtonBoxOptions ButtonCell ButtonContents ButtonData ButtonEvaluator ButtonExpandable ButtonFrame ButtonFunction ButtonMargins ButtonMinHeight ButtonNote ButtonNotebook ButtonSource ButtonStyle ButtonStyleMenuListing Byte ByteCount ByteOrdering C CachedValue CacheGraphics CalendarData CalendarType CallPacket CanberraDistance Cancel CancelButton CandlestickChart Cap CapForm CapitalDifferentialD CardinalBSplineBasis CarmichaelLambda Cases Cashflow Casoratian Catalan CatalanNumber Catch CauchyDistribution CauchyWindow CayleyGraph CDF CDFDeploy CDFInformation CDFWavelet Ceiling Cell CellAutoOverwrite CellBaseline CellBoundingBox CellBracketOptions CellChangeTimes CellContents CellContext CellDingbat CellDynamicExpression CellEditDuplicate CellElementsBoundingBox CellElementSpacings CellEpilog CellEvaluationDuplicate CellEvaluationFunction CellEventActions CellFrame CellFrameColor CellFrameLabelMargins CellFrameLabels CellFrameMargins CellGroup CellGroupData CellGrouping CellGroupingRules CellHorizontalScrolling CellID CellLabel CellLabelAutoDelete CellLabelMargins CellLabelPositioning CellMargins CellObject CellOpen CellPrint CellProlog Cells CellSize CellStyle CellTags CellularAutomaton CensoredDistribution Censoring Center CenterDot CentralMoment CentralMomentGeneratingFunction CForm ChampernowneNumber ChanVeseBinarize Character CharacterEncoding CharacterEncodingsPath CharacteristicFunction CharacteristicPolynomial CharacterRange Characters ChartBaseStyle ChartElementData ChartElementDataFunction ChartElementFunction ChartElements ChartLabels ChartLayout ChartLegends ChartStyle Chebyshev1FilterModel Chebyshev2FilterModel ChebyshevDistance ChebyshevT ChebyshevU Check CheckAbort CheckAll Checkbox CheckboxBar CheckboxBox CheckboxBoxOptions ChemicalData ChessboardDistance ChiDistribution ChineseRemainder ChiSquareDistribution ChoiceButtons ChoiceDialog CholeskyDecomposition Chop Circle CircleBox CircleDot CircleMinus CirclePlus CircleTimes CirculantGraph CityData Clear ClearAll ClearAttributes ClearSystemCache ClebschGordan ClickPane Clip ClipboardNotebook ClipFill ClippingStyle ClipPlanes ClipRange Clock ClockGauge ClockwiseContourIntegral Close Closed CloseKernels ClosenessCentrality Closing ClosingAutoSave ClosingEvent ClusteringComponents CMYKColor Coarse Coefficient CoefficientArrays CoefficientDomain CoefficientList CoefficientRules CoifletWavelet Collect Colon ColonForm ColorCombine ColorConvert ColorData ColorDataFunction ColorFunction ColorFunctionScaling Colorize ColorNegate ColorOutput ColorProfileData ColorQuantize ColorReplace ColorRules ColorSelectorSettings ColorSeparate ColorSetter ColorSetterBox ColorSetterBoxOptions ColorSlider ColorSpace Column ColumnAlignments ColumnBackgrounds ColumnForm ColumnLines ColumnsEqual ColumnSpacings ColumnWidths CommonDefaultFormatTypes Commonest CommonestFilter CommonUnits CommunityBoundaryStyle CommunityGraphPlot CommunityLabels CommunityRegionStyle CompatibleUnitQ CompilationOptions CompilationTarget Compile Compiled CompiledFunction Complement CompleteGraph CompleteGraphQ CompleteKaryTree CompletionsListPacket Complex Complexes ComplexExpand ComplexInfinity ComplexityFunction ComponentMeasurements ComponentwiseContextMenu Compose ComposeList ComposeSeries Composition CompoundExpression CompoundPoissonDistribution CompoundPoissonProcess CompoundRenewalProcess Compress CompressedData Condition ConditionalExpression Conditioned Cone ConeBox ConfidenceLevel ConfidenceRange ConfidenceTransform ConfigurationPath Congruent Conjugate ConjugateTranspose Conjunction Connect ConnectedComponents ConnectedGraphQ ConnesWindow ConoverTest ConsoleMessage ConsoleMessagePacket ConsolePrint Constant ConstantArray Constants ConstrainedMax ConstrainedMin ContentPadding ContentsBoundingBox ContentSelectable ContentSize Context ContextMenu Contexts ContextToFilename ContextToFileName Continuation Continue ContinuedFraction ContinuedFractionK ContinuousAction ContinuousMarkovProcess ContinuousTimeModelQ ContinuousWaveletData ContinuousWaveletTransform ContourDetect ContourGraphics ContourIntegral ContourLabels ContourLines ContourPlot ContourPlot3D Contours ContourShading ContourSmoothing ContourStyle ContraharmonicMean Control ControlActive ControlAlignment ControllabilityGramian ControllabilityMatrix ControllableDecomposition ControllableModelQ ControllerDuration ControllerInformation ControllerInformationData ControllerLinking ControllerManipulate ControllerMethod ControllerPath ControllerState ControlPlacement ControlsRendering ControlType Convergents ConversionOptions ConversionRules ConvertToBitmapPacket ConvertToPostScript ConvertToPostScriptPacket Convolve ConwayGroupCo1 ConwayGroupCo2 ConwayGroupCo3 CoordinateChartData CoordinatesToolOptions CoordinateTransform CoordinateTransformData CoprimeQ Coproduct CopulaDistribution Copyable CopyDirectory CopyFile CopyTag CopyToClipboard CornerFilter CornerNeighbors Correlation CorrelationDistance CorrelationFunction CorrelationTest Cos Cosh CoshIntegral CosineDistance CosineWindow CosIntegral Cot Coth Count CounterAssignments CounterBox CounterBoxOptions CounterClockwiseContourIntegral CounterEvaluator CounterFunction CounterIncrements CounterStyle CounterStyleMenuListing CountRoots CountryData Covariance CovarianceEstimatorFunction CovarianceFunction CoxianDistribution CoxIngersollRossProcess CoxModel CoxModelFit CramerVonMisesTest CreateArchive CreateDialog CreateDirectory CreateDocument CreateIntermediateDirectories CreatePalette CreatePalettePacket CreateScheduledTask CreateTemporary CreateWindow CriticalityFailureImportance CriticalitySuccessImportance CriticalSection Cross CrossingDetect CrossMatrix Csc Csch CubeRoot Cubics Cuboid CuboidBox Cumulant CumulantGeneratingFunction Cup CupCap Curl CurlyDoubleQuote CurlyQuote CurrentImage CurrentlySpeakingPacket CurrentValue CurvatureFlowFilter CurveClosed Cyan CycleGraph CycleIndexPolynomial Cycles CyclicGroup Cyclotomic Cylinder CylinderBox CylindricalDecomposition D DagumDistribution DamerauLevenshteinDistance DampingFactor Darker Dashed Dashing DataCompression DataDistribution DataRange DataReversed Date DateDelimiters DateDifference DateFunction DateList DateListLogPlot DateListPlot DatePattern DatePlus DateRange DateString DateTicksFormat DaubechiesWavelet DavisDistribution DawsonF DayCount DayCountConvention DayMatchQ DayName DayPlus DayRange DayRound DeBruijnGraph Debug DebugTag Decimal DeclareKnownSymbols DeclarePackage Decompose Decrement DedekindEta Default DefaultAxesStyle DefaultBaseStyle DefaultBoxStyle DefaultButton DefaultColor DefaultControlPlacement DefaultDuplicateCellStyle DefaultDuration DefaultElement DefaultFaceGridsStyle DefaultFieldHintStyle DefaultFont DefaultFontProperties DefaultFormatType DefaultFormatTypeForStyle DefaultFrameStyle DefaultFrameTicksStyle DefaultGridLinesStyle DefaultInlineFormatType DefaultInputFormatType DefaultLabelStyle DefaultMenuStyle DefaultNaturalLanguage DefaultNewCellStyle DefaultNewInlineCellStyle DefaultNotebook DefaultOptions DefaultOutputFormatType DefaultStyle DefaultStyleDefinitions DefaultTextFormatType DefaultTextInlineFormatType DefaultTicksStyle DefaultTooltipStyle DefaultValues Defer DefineExternal DefineInputStreamMethod DefineOutputStreamMethod Definition Degree DegreeCentrality DegreeGraphDistribution DegreeLexicographic DegreeReverseLexicographic Deinitialization Del Deletable Delete DeleteBorderComponents DeleteCases DeleteContents DeleteDirectory DeleteDuplicates DeleteFile DeleteSmallComponents DeleteWithContents DeletionWarning Delimiter DelimiterFlashTime DelimiterMatching Delimiters Denominator DensityGraphics DensityHistogram DensityPlot DependentVariables Deploy Deployed Depth DepthFirstScan Derivative DerivativeFilter DescriptorStateSpace DesignMatrix Det DGaussianWavelet DiacriticalPositioning Diagonal DiagonalMatrix Dialog DialogIndent DialogInput DialogLevel DialogNotebook DialogProlog DialogReturn DialogSymbols Diamond DiamondMatrix DiceDissimilarity DictionaryLookup DifferenceDelta DifferenceOrder DifferenceRoot DifferenceRootReduce Differences DifferentialD DifferentialRoot DifferentialRootReduce DifferentiatorFilter DigitBlock DigitBlockMinimum DigitCharacter DigitCount DigitQ DihedralGroup Dilation Dimensions DiracComb DiracDelta DirectedEdge DirectedEdges DirectedGraph DirectedGraphQ DirectedInfinity Direction Directive Directory DirectoryName DirectoryQ DirectoryStack DirichletCharacter DirichletConvolve DirichletDistribution DirichletL DirichletTransform DirichletWindow DisableConsolePrintPacket DiscreteChirpZTransform DiscreteConvolve DiscreteDelta DiscreteHadamardTransform DiscreteIndicator DiscreteLQEstimatorGains DiscreteLQRegulatorGains DiscreteLyapunovSolve DiscreteMarkovProcess DiscretePlot DiscretePlot3D DiscreteRatio DiscreteRiccatiSolve DiscreteShift DiscreteTimeModelQ DiscreteUniformDistribution DiscreteVariables DiscreteWaveletData DiscreteWaveletPacketTransform DiscreteWaveletTransform Discriminant Disjunction Disk DiskBox DiskMatrix Dispatch DispersionEstimatorFunction Display DisplayAllSteps DisplayEndPacket DisplayFlushImagePacket DisplayForm DisplayFunction DisplayPacket DisplayRules DisplaySetSizePacket DisplayString DisplayTemporary DisplayWith DisplayWithRef DisplayWithVariable DistanceFunction DistanceTransform Distribute Distributed DistributedContexts DistributeDefinitions DistributionChart DistributionDomain DistributionFitTest DistributionParameterAssumptions DistributionParameterQ Dithering Div Divergence Divide DivideBy Dividers Divisible Divisors DivisorSigma DivisorSum DMSList DMSString Do DockedCells DocumentNotebook DominantColors DOSTextFormat Dot DotDashed DotEqual Dotted DoubleBracketingBar DoubleContourIntegral DoubleDownArrow DoubleLeftArrow DoubleLeftRightArrow DoubleLeftTee DoubleLongLeftArrow DoubleLongLeftRightArrow DoubleLongRightArrow DoubleRightArrow DoubleRightTee DoubleUpArrow DoubleUpDownArrow DoubleVerticalBar DoublyInfinite Down DownArrow DownArrowBar DownArrowUpArrow DownLeftRightVector DownLeftTeeVector DownLeftVector DownLeftVectorBar DownRightTeeVector DownRightVector DownRightVectorBar Downsample DownTee DownTeeArrow DownValues DragAndDrop DrawEdges DrawFrontFaces DrawHighlighted Drop DSolve Dt DualLinearProgramming DualSystemsModel DumpGet DumpSave DuplicateFreeQ Dynamic DynamicBox DynamicBoxOptions DynamicEvaluationTimeout DynamicLocation DynamicModule DynamicModuleBox DynamicModuleBoxOptions DynamicModuleParent DynamicModuleValues DynamicName DynamicNamespace DynamicReference DynamicSetting DynamicUpdating DynamicWrapper DynamicWrapperBox DynamicWrapperBoxOptions E EccentricityCentrality EdgeAdd EdgeBetweennessCentrality EdgeCapacity EdgeCapForm EdgeColor EdgeConnectivity EdgeCost EdgeCount EdgeCoverQ EdgeDashing EdgeDelete EdgeDetect EdgeForm EdgeIndex EdgeJoinForm EdgeLabeling EdgeLabels EdgeLabelStyle EdgeList EdgeOpacity EdgeQ EdgeRenderingFunction EdgeRules EdgeShapeFunction EdgeStyle EdgeThickness EdgeWeight Editable EditButtonSettings EditCellTagsSettings EditDistance EffectiveInterest Eigensystem Eigenvalues EigenvectorCentrality Eigenvectors Element ElementData Eliminate EliminationOrder EllipticE EllipticExp EllipticExpPrime EllipticF EllipticFilterModel EllipticK EllipticLog EllipticNomeQ EllipticPi EllipticReducedHalfPeriods EllipticTheta EllipticThetaPrime EmitSound EmphasizeSyntaxErrors EmpiricalDistribution Empty EmptyGraphQ EnableConsolePrintPacket Enabled Encode End EndAdd EndDialogPacket EndFrontEndInteractionPacket EndOfFile EndOfLine EndOfString EndPackage EngineeringForm Enter EnterExpressionPacket EnterTextPacket Entropy EntropyFilter Environment Epilog Equal EqualColumns EqualRows EqualTilde EquatedTo Equilibrium EquirippleFilterKernel Equivalent Erf Erfc Erfi ErlangB ErlangC ErlangDistribution Erosion ErrorBox ErrorBoxOptions ErrorNorm ErrorPacket ErrorsDialogSettings EstimatedDistribution EstimatedProcess EstimatorGains EstimatorRegulator EuclideanDistance EulerE EulerGamma EulerianGraphQ EulerPhi Evaluatable Evaluate Evaluated EvaluatePacket EvaluationCell EvaluationCompletionAction EvaluationElements EvaluationMode EvaluationMonitor EvaluationNotebook EvaluationObject EvaluationOrder Evaluator EvaluatorNames EvenQ EventData EventEvaluator EventHandler EventHandlerTag EventLabels ExactBlackmanWindow ExactNumberQ ExactRootIsolation ExampleData Except ExcludedForms ExcludePods Exclusions ExclusionsStyle Exists Exit ExitDialog Exp Expand ExpandAll ExpandDenominator ExpandFileName ExpandNumerator Expectation ExpectationE ExpectedValue ExpGammaDistribution ExpIntegralE ExpIntegralEi Exponent ExponentFunction ExponentialDistribution ExponentialFamily ExponentialGeneratingFunction ExponentialMovingAverage ExponentialPowerDistribution ExponentPosition ExponentStep Export ExportAutoReplacements ExportPacket ExportString Expression ExpressionCell ExpressionPacket ExpToTrig ExtendedGCD Extension ExtentElementFunction ExtentMarkers ExtentSize ExternalCall ExternalDataCharacterEncoding Extract ExtractArchive ExtremeValueDistribution FaceForm FaceGrids FaceGridsStyle Factor FactorComplete Factorial Factorial2 FactorialMoment FactorialMomentGeneratingFunction FactorialPower FactorInteger FactorList FactorSquareFree FactorSquareFreeList FactorTerms FactorTermsList Fail FailureDistribution False FARIMAProcess FEDisableConsolePrintPacket FeedbackSector FeedbackSectorStyle FeedbackType FEEnableConsolePrintPacket Fibonacci FieldHint FieldHintStyle FieldMasked FieldSize File FileBaseName FileByteCount FileDate FileExistsQ FileExtension FileFormat FileHash FileInformation FileName FileNameDepth FileNameDialogSettings FileNameDrop FileNameJoin FileNames FileNameSetter FileNameSplit FileNameTake FilePrint FileType FilledCurve FilledCurveBox Filling FillingStyle FillingTransform FilterRules FinancialBond FinancialData FinancialDerivative FinancialIndicator Find FindArgMax FindArgMin FindClique FindClusters FindCurvePath FindDistributionParameters FindDivisions FindEdgeCover FindEdgeCut FindEulerianCycle FindFaces FindFile FindFit FindGeneratingFunction FindGeoLocation FindGeometricTransform FindGraphCommunities FindGraphIsomorphism FindGraphPartition FindHamiltonianCycle FindIndependentEdgeSet FindIndependentVertexSet FindInstance FindIntegerNullVector FindKClan FindKClique FindKClub FindKPlex FindLibrary FindLinearRecurrence FindList FindMaximum FindMaximumFlow FindMaxValue FindMinimum FindMinimumCostFlow FindMinimumCut FindMinValue FindPermutation FindPostmanTour FindProcessParameters FindRoot FindSequenceFunction FindSettings FindShortestPath FindShortestTour FindThreshold FindVertexCover FindVertexCut Fine FinishDynamic FiniteAbelianGroupCount FiniteGroupCount FiniteGroupData First FirstPassageTimeDistribution FischerGroupFi22 FischerGroupFi23 FischerGroupFi24Prime FisherHypergeometricDistribution FisherRatioTest FisherZDistribution Fit FitAll FittedModel FixedPoint FixedPointList FlashSelection Flat Flatten FlattenAt FlatTopWindow FlipView Floor FlushPrintOutputPacket Fold FoldList Font FontColor FontFamily FontForm FontName FontOpacity FontPostScriptName FontProperties FontReencoding FontSize FontSlant FontSubstitutions FontTracking FontVariations FontWeight For ForAll Format FormatRules FormatType FormatTypeAutoConvert FormatValues FormBox FormBoxOptions FortranForm Forward ForwardBackward Fourier FourierCoefficient FourierCosCoefficient FourierCosSeries FourierCosTransform FourierDCT FourierDCTFilter FourierDCTMatrix FourierDST FourierDSTMatrix FourierMatrix FourierParameters FourierSequenceTransform FourierSeries FourierSinCoefficient FourierSinSeries FourierSinTransform FourierTransform FourierTrigSeries FractionalBrownianMotionProcess FractionalPart FractionBox FractionBoxOptions FractionLine Frame FrameBox FrameBoxOptions Framed FrameInset FrameLabel Frameless FrameMargins FrameStyle FrameTicks FrameTicksStyle FRatioDistribution FrechetDistribution FreeQ FrequencySamplingFilterKernel FresnelC FresnelS Friday FrobeniusNumber FrobeniusSolve FromCharacterCode FromCoefficientRules FromContinuedFraction FromDate FromDigits FromDMS Front FrontEndDynamicExpression FrontEndEventActions FrontEndExecute FrontEndObject FrontEndResource FrontEndResourceString FrontEndStackSize FrontEndToken FrontEndTokenExecute FrontEndValueCache FrontEndVersion FrontFaceColor FrontFaceOpacity Full FullAxes FullDefinition FullForm FullGraphics FullOptions FullSimplify Function FunctionExpand FunctionInterpolation FunctionSpace FussellVeselyImportance GaborFilter GaborMatrix GaborWavelet GainMargins GainPhaseMargins Gamma GammaDistribution GammaRegularized GapPenalty Gather GatherBy GaugeFaceElementFunction GaugeFaceStyle GaugeFrameElementFunction GaugeFrameSize GaugeFrameStyle GaugeLabels GaugeMarkers GaugeStyle GaussianFilter GaussianIntegers GaussianMatrix GaussianWindow GCD GegenbauerC General GeneralizedLinearModelFit GenerateConditions GeneratedCell GeneratedParameters GeneratingFunction Generic GenericCylindricalDecomposition GenomeData GenomeLookup GeodesicClosing GeodesicDilation GeodesicErosion GeodesicOpening GeoDestination GeodesyData GeoDirection GeoDistance GeoGridPosition GeometricBrownianMotionProcess GeometricDistribution GeometricMean GeometricMeanFilter GeometricTransformation GeometricTransformation3DBox GeometricTransformation3DBoxOptions GeometricTransformationBox GeometricTransformationBoxOptions GeoPosition GeoPositionENU GeoPositionXYZ GeoProjectionData GestureHandler GestureHandlerTag Get GetBoundingBoxSizePacket GetContext GetEnvironment GetFileName GetFrontEndOptionsDataPacket GetLinebreakInformationPacket GetMenusPacket GetPageBreakInformationPacket Glaisher GlobalClusteringCoefficient GlobalPreferences GlobalSession Glow GoldenRatio GompertzMakehamDistribution GoodmanKruskalGamma GoodmanKruskalGammaTest Goto Grad Gradient GradientFilter GradientOrientationFilter Graph GraphAssortativity GraphCenter GraphComplement GraphData GraphDensity GraphDiameter GraphDifference GraphDisjointUnion GraphDistance GraphDistanceMatrix GraphElementData GraphEmbedding GraphHighlight GraphHighlightStyle GraphHub Graphics Graphics3D Graphics3DBox Graphics3DBoxOptions GraphicsArray GraphicsBaseline GraphicsBox GraphicsBoxOptions GraphicsColor GraphicsColumn GraphicsComplex GraphicsComplex3DBox GraphicsComplex3DBoxOptions GraphicsComplexBox GraphicsComplexBoxOptions GraphicsContents GraphicsData GraphicsGrid GraphicsGridBox GraphicsGroup GraphicsGroup3DBox GraphicsGroup3DBoxOptions GraphicsGroupBox GraphicsGroupBoxOptions GraphicsGrouping GraphicsHighlightColor GraphicsRow GraphicsSpacing GraphicsStyle GraphIntersection GraphLayout GraphLinkEfficiency GraphPeriphery GraphPlot GraphPlot3D GraphPower GraphPropertyDistribution GraphQ GraphRadius GraphReciprocity GraphRoot GraphStyle GraphUnion Gray GrayLevel GreatCircleDistance Greater GreaterEqual GreaterEqualLess GreaterFullEqual GreaterGreater GreaterLess GreaterSlantEqual GreaterTilde Green Grid GridBaseline GridBox GridBoxAlignment GridBoxBackground GridBoxDividers GridBoxFrame GridBoxItemSize GridBoxItemStyle GridBoxOptions GridBoxSpacings GridCreationSettings GridDefaultElement GridElementStyleOptions GridFrame GridFrameMargins GridGraph GridLines GridLinesStyle GroebnerBasis GroupActionBase GroupCentralizer GroupElementFromWord GroupElementPosition GroupElementQ GroupElements GroupElementToWord GroupGenerators GroupMultiplicationTable GroupOrbits GroupOrder GroupPageBreakWithin GroupSetwiseStabilizer GroupStabilizer GroupStabilizerChain Gudermannian GumbelDistribution HaarWavelet HadamardMatrix HalfNormalDistribution HamiltonianGraphQ HammingDistance HammingWindow HankelH1 HankelH2 HankelMatrix HannPoissonWindow HannWindow HaradaNortonGroupHN HararyGraph HarmonicMean HarmonicMeanFilter HarmonicNumber Hash HashTable Haversine HazardFunction Head HeadCompose Heads HeavisideLambda HeavisidePi HeavisideTheta HeldGroupHe HeldPart HelpBrowserLookup HelpBrowserNotebook HelpBrowserSettings HermiteDecomposition HermiteH HermitianMatrixQ HessenbergDecomposition Hessian HexadecimalCharacter Hexahedron HexahedronBox HexahedronBoxOptions HiddenSurface HighlightGraph HighlightImage HighpassFilter HigmanSimsGroupHS HilbertFilter HilbertMatrix Histogram Histogram3D HistogramDistribution HistogramList HistogramTransform HistogramTransformInterpolation HitMissTransform HITSCentrality HodgeDual HoeffdingD HoeffdingDTest Hold HoldAll HoldAllComplete HoldComplete HoldFirst HoldForm HoldPattern HoldRest HolidayCalendar HomeDirectory HomePage Horizontal HorizontalForm HorizontalGauge HorizontalScrollPosition HornerForm HotellingTSquareDistribution HoytDistribution HTMLSave Hue HumpDownHump HumpEqual HurwitzLerchPhi HurwitzZeta HyperbolicDistribution HypercubeGraph HyperexponentialDistribution Hyperfactorial Hypergeometric0F1 Hypergeometric0F1Regularized Hypergeometric1F1 Hypergeometric1F1Regularized Hypergeometric2F1 Hypergeometric2F1Regularized HypergeometricDistribution HypergeometricPFQ HypergeometricPFQRegularized HypergeometricU Hyperlink HyperlinkCreationSettings Hyphenation HyphenationOptions HypoexponentialDistribution HypothesisTestData I Identity IdentityMatrix If IgnoreCase Im Image Image3D Image3DSlices ImageAccumulate ImageAdd ImageAdjust ImageAlign ImageApply ImageAspectRatio ImageAssemble ImageCache ImageCacheValid ImageCapture ImageChannels ImageClip ImageColorSpace ImageCompose ImageConvolve ImageCooccurrence ImageCorners ImageCorrelate ImageCorrespondingPoints ImageCrop ImageData ImageDataPacket ImageDeconvolve ImageDemosaic ImageDifference ImageDimensions ImageDistance ImageEffect ImageFeatureTrack ImageFileApply ImageFileFilter ImageFileScan ImageFilter ImageForestingComponents ImageForwardTransformation ImageHistogram ImageKeypoints ImageLevels ImageLines ImageMargins ImageMarkers ImageMeasurements ImageMultiply ImageOffset ImagePad ImagePadding ImagePartition ImagePeriodogram ImagePerspectiveTransformation ImageQ ImageRangeCache ImageReflect ImageRegion ImageResize ImageResolution ImageRotate ImageRotated ImageScaled ImageScan ImageSize ImageSizeAction ImageSizeCache ImageSizeMultipliers ImageSizeRaw ImageSubtract ImageTake ImageTransformation ImageTrim ImageType ImageValue ImageValuePositions Implies Import ImportAutoReplacements ImportString ImprovementImportance In IncidenceGraph IncidenceList IncidenceMatrix IncludeConstantBasis IncludeFileExtension IncludePods IncludeSingularTerm Increment Indent IndentingNewlineSpacings IndentMaxFraction IndependenceTest IndependentEdgeSetQ IndependentUnit IndependentVertexSetQ Indeterminate IndexCreationOptions Indexed IndexGraph IndexTag Inequality InexactNumberQ InexactNumbers Infinity Infix Information Inherited InheritScope Initialization InitializationCell InitializationCellEvaluation InitializationCellWarning InlineCounterAssignments InlineCounterIncrements InlineRules Inner Inpaint Input InputAliases InputAssumptions InputAutoReplacements InputField InputFieldBox InputFieldBoxOptions InputForm InputGrouping InputNamePacket InputNotebook InputPacket InputSettings InputStream InputString InputStringPacket InputToBoxFormPacket Insert InsertionPointObject InsertResults Inset Inset3DBox Inset3DBoxOptions InsetBox InsetBoxOptions Install InstallService InString Integer IntegerDigits IntegerExponent IntegerLength IntegerPart IntegerPartitions IntegerQ Integers IntegerString Integral Integrate Interactive InteractiveTradingChart Interlaced Interleaving InternallyBalancedDecomposition InterpolatingFunction InterpolatingPolynomial Interpolation InterpolationOrder InterpolationPoints InterpolationPrecision Interpretation InterpretationBox InterpretationBoxOptions InterpretationFunction InterpretTemplate InterquartileRange Interrupt InterruptSettings Intersection Interval IntervalIntersection IntervalMemberQ IntervalUnion Inverse InverseBetaRegularized InverseCDF InverseChiSquareDistribution InverseContinuousWaveletTransform InverseDistanceTransform InverseEllipticNomeQ InverseErf InverseErfc InverseFourier InverseFourierCosTransform InverseFourierSequenceTransform InverseFourierSinTransform InverseFourierTransform InverseFunction InverseFunctions InverseGammaDistribution InverseGammaRegularized InverseGaussianDistribution InverseGudermannian InverseHaversine InverseJacobiCD InverseJacobiCN InverseJacobiCS InverseJacobiDC InverseJacobiDN InverseJacobiDS InverseJacobiNC InverseJacobiND InverseJacobiNS InverseJacobiSC InverseJacobiSD InverseJacobiSN InverseLaplaceTransform InversePermutation InverseRadon InverseSeries InverseSurvivalFunction InverseWaveletTransform InverseWeierstrassP InverseZTransform Invisible InvisibleApplication InvisibleTimes IrreduciblePolynomialQ IsolatingInterval IsomorphicGraphQ IsotopeData Italic Item ItemBox ItemBoxOptions ItemSize ItemStyle ItoProcess JaccardDissimilarity JacobiAmplitude Jacobian JacobiCD JacobiCN JacobiCS JacobiDC JacobiDN JacobiDS JacobiNC JacobiND JacobiNS JacobiP JacobiSC JacobiSD JacobiSN JacobiSymbol JacobiZeta JankoGroupJ1 JankoGroupJ2 JankoGroupJ3 JankoGroupJ4 JarqueBeraALMTest JohnsonDistribution Join Joined JoinedCurve JoinedCurveBox JoinForm JordanDecomposition JordanModelDecomposition K KagiChart KaiserBesselWindow KaiserWindow KalmanEstimator KalmanFilter KarhunenLoeveDecomposition KaryTree KatzCentrality KCoreComponents KDistribution KelvinBei KelvinBer KelvinKei KelvinKer KendallTau KendallTauTest KernelExecute KernelMixtureDistribution KernelObject Kernels Ket Khinchin KirchhoffGraph KirchhoffMatrix KleinInvariantJ KnightTourGraph KnotData KnownUnitQ KolmogorovSmirnovTest KroneckerDelta KroneckerModelDecomposition KroneckerProduct KroneckerSymbol KuiperTest KumaraswamyDistribution Kurtosis KuwaharaFilter Label Labeled LabeledSlider LabelingFunction LabelStyle LaguerreL LambdaComponents LambertW LanczosWindow LandauDistribution Language LanguageCategory LaplaceDistribution LaplaceTransform Laplacian LaplacianFilter LaplacianGaussianFilter Large Larger Last Latitude LatitudeLongitude LatticeData LatticeReduce Launch LaunchKernels LayeredGraphPlot LayerSizeFunction LayoutInformation LCM LeafCount LeapYearQ LeastSquares LeastSquaresFilterKernel Left LeftArrow LeftArrowBar LeftArrowRightArrow LeftDownTeeVector LeftDownVector LeftDownVectorBar LeftRightArrow LeftRightVector LeftTee LeftTeeArrow LeftTeeVector LeftTriangle LeftTriangleBar LeftTriangleEqual LeftUpDownVector LeftUpTeeVector LeftUpVector LeftUpVectorBar LeftVector LeftVectorBar LegendAppearance Legended LegendFunction LegendLabel LegendLayout LegendMargins LegendMarkers LegendMarkerSize LegendreP LegendreQ LegendreType Length LengthWhile LerchPhi Less LessEqual LessEqualGreater LessFullEqual LessGreater LessLess LessSlantEqual LessTilde LetterCharacter LetterQ Level LeveneTest LeviCivitaTensor LevyDistribution Lexicographic LibraryFunction LibraryFunctionError LibraryFunctionInformation LibraryFunctionLoad LibraryFunctionUnload LibraryLoad LibraryUnload LicenseID LiftingFilterData LiftingWaveletTransform LightBlue LightBrown LightCyan Lighter LightGray LightGreen Lighting LightingAngle LightMagenta LightOrange LightPink LightPurple LightRed LightSources LightYellow Likelihood Limit LimitsPositioning LimitsPositioningTokens LindleyDistribution Line Line3DBox LinearFilter LinearFractionalTransform LinearModelFit LinearOffsetFunction LinearProgramming LinearRecurrence LinearSolve LinearSolveFunction LineBox LineBreak LinebreakAdjustments LineBreakChart LineBreakWithin LineColor LineForm LineGraph LineIndent LineIndentMaxFraction LineIntegralConvolutionPlot LineIntegralConvolutionScale LineLegend LineOpacity LineSpacing LineWrapParts LinkActivate LinkClose LinkConnect LinkConnectedQ LinkCreate LinkError LinkFlush LinkFunction LinkHost LinkInterrupt LinkLaunch LinkMode LinkObject LinkOpen LinkOptions LinkPatterns LinkProtocol LinkRead LinkReadHeld LinkReadyQ Links LinkWrite LinkWriteHeld LiouvilleLambda List Listable ListAnimate ListContourPlot ListContourPlot3D ListConvolve ListCorrelate ListCurvePathPlot ListDeconvolve ListDensityPlot Listen ListFourierSequenceTransform ListInterpolation ListLineIntegralConvolutionPlot ListLinePlot ListLogLinearPlot ListLogLogPlot ListLogPlot ListPicker ListPickerBox ListPickerBoxBackground ListPickerBoxOptions ListPlay ListPlot ListPlot3D ListPointPlot3D ListPolarPlot ListQ ListStreamDensityPlot ListStreamPlot ListSurfacePlot3D ListVectorDensityPlot ListVectorPlot ListVectorPlot3D ListZTransform Literal LiteralSearch LocalClusteringCoefficient LocalizeVariables LocationEquivalenceTest LocationTest Locator LocatorAutoCreate LocatorBox LocatorBoxOptions LocatorCentering LocatorPane LocatorPaneBox LocatorPaneBoxOptions LocatorRegion Locked Log Log10 Log2 LogBarnesG LogGamma LogGammaDistribution LogicalExpand LogIntegral LogisticDistribution LogitModelFit LogLikelihood LogLinearPlot LogLogisticDistribution LogLogPlot LogMultinormalDistribution LogNormalDistribution LogPlot LogRankTest LogSeriesDistribution LongEqual Longest LongestAscendingSequence LongestCommonSequence LongestCommonSequencePositions LongestCommonSubsequence LongestCommonSubsequencePositions LongestMatch LongForm Longitude LongLeftArrow LongLeftRightArrow LongRightArrow Loopback LoopFreeGraphQ LowerCaseQ LowerLeftArrow LowerRightArrow LowerTriangularize LowpassFilter LQEstimatorGains LQGRegulator LQOutputRegulatorGains LQRegulatorGains LUBackSubstitution LucasL LuccioSamiComponents LUDecomposition LyapunovSolve LyonsGroupLy MachineID MachineName MachineNumberQ MachinePrecision MacintoshSystemPageSetup Magenta Magnification Magnify MainSolve MaintainDynamicCaches Majority MakeBoxes MakeExpression MakeRules MangoldtLambda ManhattanDistance Manipulate Manipulator MannWhitneyTest MantissaExponent Manual Map MapAll MapAt MapIndexed MAProcess MapThread MarcumQ MardiaCombinedTest MardiaKurtosisTest MardiaSkewnessTest MarginalDistribution MarkovProcessProperties Masking MatchingDissimilarity MatchLocalNameQ MatchLocalNames MatchQ Material MathematicaNotation MathieuC MathieuCharacteristicA MathieuCharacteristicB MathieuCharacteristicExponent MathieuCPrime MathieuGroupM11 MathieuGroupM12 MathieuGroupM22 MathieuGroupM23 MathieuGroupM24 MathieuS MathieuSPrime MathMLForm MathMLText Matrices MatrixExp MatrixForm MatrixFunction MatrixLog MatrixPlot MatrixPower MatrixQ MatrixRank Max MaxBend MaxDetect MaxExtraBandwidths MaxExtraConditions MaxFeatures MaxFilter Maximize MaxIterations MaxMemoryUsed MaxMixtureKernels MaxPlotPoints MaxPoints MaxRecursion MaxStableDistribution MaxStepFraction MaxSteps MaxStepSize MaxValue MaxwellDistribution McLaughlinGroupMcL Mean MeanClusteringCoefficient MeanDegreeConnectivity MeanDeviation MeanFilter MeanGraphDistance MeanNeighborDegree MeanShift MeanShiftFilter Median MedianDeviation MedianFilter Medium MeijerG MeixnerDistribution MemberQ MemoryConstrained MemoryInUse Menu MenuAppearance MenuCommandKey MenuEvaluator MenuItem MenuPacket MenuSortingValue MenuStyle MenuView MergeDifferences Mesh MeshFunctions MeshRange MeshShading MeshStyle Message MessageDialog MessageList MessageName MessageOptions MessagePacket Messages MessagesNotebook MetaCharacters MetaInformation Method MethodOptions MexicanHatWavelet MeyerWavelet Min MinDetect MinFilter MinimalPolynomial MinimalStateSpaceModel Minimize Minors MinRecursion MinSize MinStableDistribution Minus MinusPlus MinValue Missing MissingDataMethod MittagLefflerE MixedRadix MixedRadixQuantity MixtureDistribution Mod Modal Mode Modular ModularLambda Module Modulus MoebiusMu Moment Momentary MomentConvert MomentEvaluate MomentGeneratingFunction Monday Monitor MonomialList MonomialOrder MonsterGroupM MorletWavelet MorphologicalBinarize MorphologicalBranchPoints MorphologicalComponents MorphologicalEulerNumber MorphologicalGraph MorphologicalPerimeter MorphologicalTransform Most MouseAnnotation MouseAppearance MouseAppearanceTag MouseButtons Mouseover MousePointerNote MousePosition MovingAverage MovingMedian MoyalDistribution MultiedgeStyle MultilaunchWarning MultiLetterItalics MultiLetterStyle MultilineFunction Multinomial MultinomialDistribution MultinormalDistribution MultiplicativeOrder Multiplicity Multiselection MultivariateHypergeometricDistribution MultivariatePoissonDistribution MultivariateTDistribution N NakagamiDistribution NameQ Names NamespaceBox Nand NArgMax NArgMin NBernoulliB NCache NDSolve NDSolveValue Nearest NearestFunction NeedCurrentFrontEndPackagePacket NeedCurrentFrontEndSymbolsPacket NeedlemanWunschSimilarity Needs Negative NegativeBinomialDistribution NegativeMultinomialDistribution NeighborhoodGraph Nest NestedGreaterGreater NestedLessLess NestedScriptRules NestList NestWhile NestWhileList NevilleThetaC NevilleThetaD NevilleThetaN NevilleThetaS NewPrimitiveStyle NExpectation Next NextPrime NHoldAll NHoldFirst NHoldRest NicholsGridLines NicholsPlot NIntegrate NMaximize NMaxValue NMinimize NMinValue NominalVariables NonAssociative NoncentralBetaDistribution NoncentralChiSquareDistribution NoncentralFRatioDistribution NoncentralStudentTDistribution NonCommutativeMultiply NonConstants None NonlinearModelFit NonlocalMeansFilter NonNegative NonPositive Nor NorlundB Norm Normal NormalDistribution NormalGrouping Normalize NormalizedSquaredEuclideanDistance NormalsFunction NormFunction Not NotCongruent NotCupCap NotDoubleVerticalBar Notebook NotebookApply NotebookAutoSave NotebookClose NotebookConvertSettings NotebookCreate NotebookCreateReturnObject NotebookDefault NotebookDelete NotebookDirectory NotebookDynamicExpression NotebookEvaluate NotebookEventActions NotebookFileName NotebookFind NotebookFindReturnObject NotebookGet NotebookGetLayoutInformationPacket NotebookGetMisspellingsPacket NotebookInformation NotebookInterfaceObject NotebookLocate NotebookObject NotebookOpen NotebookOpenReturnObject NotebookPath NotebookPrint NotebookPut NotebookPutReturnObject NotebookRead NotebookResetGeneratedCells Notebooks NotebookSave NotebookSaveAs NotebookSelection NotebookSetupLayoutInformationPacket NotebooksMenu NotebookWrite NotElement NotEqualTilde NotExists NotGreater NotGreaterEqual NotGreaterFullEqual NotGreaterGreater NotGreaterLess NotGreaterSlantEqual NotGreaterTilde NotHumpDownHump NotHumpEqual NotLeftTriangle NotLeftTriangleBar NotLeftTriangleEqual NotLess NotLessEqual NotLessFullEqual NotLessGreater NotLessLess NotLessSlantEqual NotLessTilde NotNestedGreaterGreater NotNestedLessLess NotPrecedes NotPrecedesEqual NotPrecedesSlantEqual NotPrecedesTilde NotReverseElement NotRightTriangle NotRightTriangleBar NotRightTriangleEqual NotSquareSubset NotSquareSubsetEqual NotSquareSuperset NotSquareSupersetEqual NotSubset NotSubsetEqual NotSucceeds NotSucceedsEqual NotSucceedsSlantEqual NotSucceedsTilde NotSuperset NotSupersetEqual NotTilde NotTildeEqual NotTildeFullEqual NotTildeTilde NotVerticalBar NProbability NProduct NProductFactors NRoots NSolve NSum NSumTerms Null NullRecords NullSpace NullWords Number NumberFieldClassNumber NumberFieldDiscriminant NumberFieldFundamentalUnits NumberFieldIntegralBasis NumberFieldNormRepresentatives NumberFieldRegulator NumberFieldRootsOfUnity NumberFieldSignature NumberForm NumberFormat NumberMarks NumberMultiplier NumberPadding NumberPoint NumberQ NumberSeparator NumberSigns NumberString Numerator NumericFunction NumericQ NuttallWindow NValues NyquistGridLines NyquistPlot O ObservabilityGramian ObservabilityMatrix ObservableDecomposition ObservableModelQ OddQ Off Offset OLEData On ONanGroupON OneIdentity Opacity Open OpenAppend Opener OpenerBox OpenerBoxOptions OpenerView OpenFunctionInspectorPacket Opening OpenRead OpenSpecialOptions OpenTemporary OpenWrite Operate OperatingSystem OptimumFlowData Optional OptionInspectorSettings OptionQ Options OptionsPacket OptionsPattern OptionValue OptionValueBox OptionValueBoxOptions Or Orange Order OrderDistribution OrderedQ Ordering Orderless OrnsteinUhlenbeckProcess Orthogonalize Out Outer OutputAutoOverwrite OutputControllabilityMatrix OutputControllableModelQ OutputForm OutputFormData OutputGrouping OutputMathEditExpression OutputNamePacket OutputResponse OutputSizeLimit OutputStream Over OverBar OverDot Overflow OverHat Overlaps Overlay OverlayBox OverlayBoxOptions Overscript OverscriptBox OverscriptBoxOptions OverTilde OverVector OwenT OwnValues PackingMethod PaddedForm Padding PadeApproximant PadLeft PadRight PageBreakAbove PageBreakBelow PageBreakWithin PageFooterLines PageFooters PageHeaderLines PageHeaders PageHeight PageRankCentrality PageWidth PairedBarChart PairedHistogram PairedSmoothHistogram PairedTTest PairedZTest PaletteNotebook PalettePath Pane PaneBox PaneBoxOptions Panel PanelBox PanelBoxOptions Paneled PaneSelector PaneSelectorBox PaneSelectorBoxOptions PaperWidth ParabolicCylinderD ParagraphIndent ParagraphSpacing ParallelArray ParallelCombine ParallelDo ParallelEvaluate Parallelization Parallelize ParallelMap ParallelNeeds ParallelProduct ParallelSubmit ParallelSum ParallelTable ParallelTry Parameter ParameterEstimator ParameterMixtureDistribution ParameterVariables ParametricFunction ParametricNDSolve ParametricNDSolveValue ParametricPlot ParametricPlot3D ParentConnect ParentDirectory ParentForm Parenthesize ParentList ParetoDistribution Part PartialCorrelationFunction PartialD ParticleData Partition PartitionsP PartitionsQ ParzenWindow PascalDistribution PassEventsDown PassEventsUp Paste PasteBoxFormInlineCells PasteButton Path PathGraph PathGraphQ Pattern PatternSequence PatternTest PauliMatrix PaulWavelet Pause PausedTime PDF PearsonChiSquareTest PearsonCorrelationTest PearsonDistribution PerformanceGoal PeriodicInterpolation Periodogram PeriodogramArray PermutationCycles PermutationCyclesQ PermutationGroup PermutationLength PermutationList PermutationListQ PermutationMax PermutationMin PermutationOrder PermutationPower PermutationProduct PermutationReplace Permutations PermutationSupport Permute PeronaMalikFilter Perpendicular PERTDistribution PetersenGraph PhaseMargins Pi Pick PIDData PIDDerivativeFilter PIDFeedforward PIDTune Piecewise PiecewiseExpand PieChart PieChart3D PillaiTrace PillaiTraceTest Pink Pivoting PixelConstrained PixelValue PixelValuePositions Placed Placeholder PlaceholderReplace Plain PlanarGraphQ Play PlayRange Plot Plot3D Plot3Matrix PlotDivision PlotJoined PlotLabel PlotLayout PlotLegends PlotMarkers PlotPoints PlotRange PlotRangeClipping PlotRangePadding PlotRegion PlotStyle Plus PlusMinus Pochhammer PodStates PodWidth Point Point3DBox PointBox PointFigureChart PointForm PointLegend PointSize PoissonConsulDistribution PoissonDistribution PoissonProcess PoissonWindow PolarAxes PolarAxesOrigin PolarGridLines PolarPlot PolarTicks PoleZeroMarkers PolyaAeppliDistribution PolyGamma Polygon Polygon3DBox Polygon3DBoxOptions PolygonBox PolygonBoxOptions PolygonHoleScale PolygonIntersections PolygonScale PolyhedronData PolyLog PolynomialExtendedGCD PolynomialForm PolynomialGCD PolynomialLCM PolynomialMod PolynomialQ PolynomialQuotient PolynomialQuotientRemainder PolynomialReduce PolynomialRemainder Polynomials PopupMenu PopupMenuBox PopupMenuBoxOptions PopupView PopupWindow Position Positive PositiveDefiniteMatrixQ PossibleZeroQ Postfix PostScript Power PowerDistribution PowerExpand PowerMod PowerModList PowerSpectralDensity PowersRepresentations PowerSymmetricPolynomial Precedence PrecedenceForm Precedes PrecedesEqual PrecedesSlantEqual PrecedesTilde Precision PrecisionGoal PreDecrement PredictionRoot PreemptProtect PreferencesPath Prefix PreIncrement Prepend PrependTo PreserveImageOptions Previous PriceGraphDistribution PrimaryPlaceholder Prime PrimeNu PrimeOmega PrimePi PrimePowerQ PrimeQ Primes PrimeZetaP PrimitiveRoot PrincipalComponents PrincipalValue Print PrintAction PrintForm PrintingCopies PrintingOptions PrintingPageRange PrintingStartingPageNumber PrintingStyleEnvironment PrintPrecision PrintTemporary Prism PrismBox PrismBoxOptions PrivateCellOptions PrivateEvaluationOptions PrivateFontOptions PrivateFrontEndOptions PrivateNotebookOptions PrivatePaths Probability ProbabilityDistribution ProbabilityPlot ProbabilityPr ProbabilityScalePlot ProbitModelFit ProcessEstimator ProcessParameterAssumptions ProcessParameterQ ProcessStateDomain ProcessTimeDomain Product ProductDistribution ProductLog ProgressIndicator ProgressIndicatorBox ProgressIndicatorBoxOptions Projection Prolog PromptForm Properties Property PropertyList PropertyValue Proportion Proportional Protect Protected ProteinData Pruning PseudoInverse Purple Put PutAppend Pyramid PyramidBox PyramidBoxOptions QBinomial QFactorial QGamma QHypergeometricPFQ QPochhammer QPolyGamma QRDecomposition QuadraticIrrationalQ Quantile QuantilePlot Quantity QuantityForm QuantityMagnitude QuantityQ QuantityUnit Quartics QuartileDeviation Quartiles QuartileSkewness QueueingNetworkProcess QueueingProcess QueueProperties Quiet Quit Quotient QuotientRemainder RadialityCentrality RadicalBox RadicalBoxOptions RadioButton RadioButtonBar RadioButtonBox RadioButtonBoxOptions Radon RamanujanTau RamanujanTauL RamanujanTauTheta RamanujanTauZ Random RandomChoice RandomComplex RandomFunction RandomGraph RandomImage RandomInteger RandomPermutation RandomPrime RandomReal RandomSample RandomSeed RandomVariate RandomWalkProcess Range RangeFilter RangeSpecification RankedMax RankedMin Raster Raster3D Raster3DBox Raster3DBoxOptions RasterArray RasterBox RasterBoxOptions Rasterize RasterSize Rational RationalFunctions Rationalize Rationals Ratios Raw RawArray RawBoxes RawData RawMedium RayleighDistribution Re Read ReadList ReadProtected Real RealBlockDiagonalForm RealDigits RealExponent Reals Reap Record RecordLists RecordSeparators Rectangle RectangleBox RectangleBoxOptions RectangleChart RectangleChart3D RecurrenceFilter RecurrenceTable RecurringDigitsForm Red Reduce RefBox ReferenceLineStyle ReferenceMarkers ReferenceMarkerStyle Refine ReflectionMatrix ReflectionTransform Refresh RefreshRate RegionBinarize RegionFunction RegionPlot RegionPlot3D RegularExpression Regularization Reinstall Release ReleaseHold ReliabilityDistribution ReliefImage ReliefPlot Remove RemoveAlphaChannel RemoveAsynchronousTask Removed RemoveInputStreamMethod RemoveOutputStreamMethod RemoveProperty RemoveScheduledTask RenameDirectory RenameFile RenderAll RenderingOptions RenewalProcess RenkoChart Repeated RepeatedNull RepeatedString Replace ReplaceAll ReplaceHeldPart ReplaceImageValue ReplaceList ReplacePart ReplacePixelValue ReplaceRepeated Resampling Rescale RescalingTransform ResetDirectory ResetMenusPacket ResetScheduledTask Residue Resolve Rest Resultant ResumePacket Return ReturnExpressionPacket ReturnInputFormPacket ReturnPacket ReturnTextPacket Reverse ReverseBiorthogonalSplineWavelet ReverseElement ReverseEquilibrium ReverseGraph ReverseUpEquilibrium RevolutionAxis RevolutionPlot3D RGBColor RiccatiSolve RiceDistribution RidgeFilter RiemannR RiemannSiegelTheta RiemannSiegelZ Riffle Right RightArrow RightArrowBar RightArrowLeftArrow RightCosetRepresentative RightDownTeeVector RightDownVector RightDownVectorBar RightTee RightTeeArrow RightTeeVector RightTriangle RightTriangleBar RightTriangleEqual RightUpDownVector RightUpTeeVector RightUpVector RightUpVectorBar RightVector RightVectorBar RiskAchievementImportance RiskReductionImportance RogersTanimotoDissimilarity Root RootApproximant RootIntervals RootLocusPlot RootMeanSquare RootOfUnityQ RootReduce Roots RootSum Rotate RotateLabel RotateLeft RotateRight RotationAction RotationBox RotationBoxOptions RotationMatrix RotationTransform Round RoundImplies RoundingRadius Row RowAlignments RowBackgrounds RowBox RowHeights RowLines RowMinHeight RowReduce RowsEqual RowSpacings RSolve RudvalisGroupRu Rule RuleCondition RuleDelayed RuleForm RulerUnits Run RunScheduledTask RunThrough RuntimeAttributes RuntimeOptions RussellRaoDissimilarity SameQ SameTest SampleDepth SampledSoundFunction SampledSoundList SampleRate SamplingPeriod SARIMAProcess SARMAProcess SatisfiabilityCount SatisfiabilityInstances SatisfiableQ Saturday Save Saveable SaveAutoDelete SaveDefinitions SawtoothWave Scale Scaled ScaleDivisions ScaledMousePosition ScaleOrigin ScalePadding ScaleRanges ScaleRangeStyle ScalingFunctions ScalingMatrix ScalingTransform Scan ScheduledTaskActiveQ ScheduledTaskData ScheduledTaskObject ScheduledTasks SchurDecomposition ScientificForm ScreenRectangle ScreenStyleEnvironment ScriptBaselineShifts ScriptLevel ScriptMinSize ScriptRules ScriptSizeMultipliers Scrollbars ScrollingOptions ScrollPosition Sec Sech SechDistribution SectionGrouping SectorChart SectorChart3D SectorOrigin SectorSpacing SeedRandom Select Selectable SelectComponents SelectedCells SelectedNotebook Selection SelectionAnimate SelectionCell SelectionCellCreateCell SelectionCellDefaultStyle SelectionCellParentStyle SelectionCreateCell SelectionDebuggerTag SelectionDuplicateCell SelectionEvaluate SelectionEvaluateCreateCell SelectionMove SelectionPlaceholder SelectionSetStyle SelectWithContents SelfLoops SelfLoopStyle SemialgebraicComponentInstances SendMail Sequence SequenceAlignment SequenceForm SequenceHold SequenceLimit Series SeriesCoefficient SeriesData SessionTime Set SetAccuracy SetAlphaChannel SetAttributes Setbacks SetBoxFormNamesPacket SetDelayed SetDirectory SetEnvironment SetEvaluationNotebook SetFileDate SetFileLoadingContext SetNotebookStatusLine SetOptions SetOptionsPacket SetPrecision SetProperty SetSelectedNotebook SetSharedFunction SetSharedVariable SetSpeechParametersPacket SetStreamPosition SetSystemOptions Setter SetterBar SetterBox SetterBoxOptions Setting SetValue Shading Shallow ShannonWavelet ShapiroWilkTest Share Sharpen ShearingMatrix ShearingTransform ShenCastanMatrix Short ShortDownArrow Shortest ShortestMatch ShortestPathFunction ShortLeftArrow ShortRightArrow ShortUpArrow Show ShowAutoStyles ShowCellBracket ShowCellLabel ShowCellTags ShowClosedCellArea ShowContents ShowControls ShowCursorTracker ShowGroupOpenCloseIcon ShowGroupOpener ShowInvisibleCharacters ShowPageBreaks ShowPredictiveInterface ShowSelection ShowShortBoxForm ShowSpecialCharacters ShowStringCharacters ShowSyntaxStyles ShrinkingDelay ShrinkWrapBoundingBox SiegelTheta SiegelTukeyTest Sign Signature SignedRankTest SignificanceLevel SignPadding SignTest SimilarityRules SimpleGraph SimpleGraphQ Simplify Sin Sinc SinghMaddalaDistribution SingleEvaluation SingleLetterItalics SingleLetterStyle SingularValueDecomposition SingularValueList SingularValuePlot SingularValues Sinh SinhIntegral SinIntegral SixJSymbol Skeleton SkeletonTransform SkellamDistribution Skewness SkewNormalDistribution Skip SliceDistribution Slider Slider2D Slider2DBox Slider2DBoxOptions SliderBox SliderBoxOptions SlideView Slot SlotSequence Small SmallCircle Smaller SmithDelayCompensator SmithWatermanSimilarity SmoothDensityHistogram SmoothHistogram SmoothHistogram3D SmoothKernelDistribution SocialMediaData Socket SokalSneathDissimilarity Solve SolveAlways SolveDelayed Sort SortBy Sound SoundAndGraphics SoundNote SoundVolume Sow Space SpaceForm Spacer Spacings Span SpanAdjustments SpanCharacterRounding SpanFromAbove SpanFromBoth SpanFromLeft SpanLineThickness SpanMaxSize SpanMinSize SpanningCharacters SpanSymmetric SparseArray SpatialGraphDistribution Speak SpeakTextPacket SpearmanRankTest SpearmanRho Spectrogram SpectrogramArray Specularity SpellingCorrection SpellingDictionaries SpellingDictionariesPath SpellingOptions SpellingSuggestionsPacket Sphere SphereBox SphericalBesselJ SphericalBesselY SphericalHankelH1 SphericalHankelH2 SphericalHarmonicY SphericalPlot3D SphericalRegion SpheroidalEigenvalue SpheroidalJoiningFactor SpheroidalPS SpheroidalPSPrime SpheroidalQS SpheroidalQSPrime SpheroidalRadialFactor SpheroidalS1 SpheroidalS1Prime SpheroidalS2 SpheroidalS2Prime Splice SplicedDistribution SplineClosed SplineDegree SplineKnots SplineWeights Split SplitBy SpokenString Sqrt SqrtBox SqrtBoxOptions Square SquaredEuclideanDistance SquareFreeQ SquareIntersection SquaresR SquareSubset SquareSubsetEqual SquareSuperset SquareSupersetEqual SquareUnion SquareWave StabilityMargins StabilityMarginsStyle StableDistribution Stack StackBegin StackComplete StackInhibit StandardDeviation StandardDeviationFilter StandardForm Standardize StandbyDistribution Star StarGraph StartAsynchronousTask StartingStepSize StartOfLine StartOfString StartScheduledTask StartupSound StateDimensions StateFeedbackGains StateOutputEstimator StateResponse StateSpaceModel StateSpaceRealization StateSpaceTransform StationaryDistribution StationaryWaveletPacketTransform StationaryWaveletTransform StatusArea StatusCentrality StepMonitor StieltjesGamma StirlingS1 StirlingS2 StopAsynchronousTask StopScheduledTask StrataVariables StratonovichProcess StreamColorFunction StreamColorFunctionScaling StreamDensityPlot StreamPlot StreamPoints StreamPosition Streams StreamScale StreamStyle String StringBreak StringByteCount StringCases StringCount StringDrop StringExpression StringForm StringFormat StringFreeQ StringInsert StringJoin StringLength StringMatchQ StringPosition StringQ StringReplace StringReplaceList StringReplacePart StringReverse StringRotateLeft StringRotateRight StringSkeleton StringSplit StringTake StringToStream StringTrim StripBoxes StripOnInput StripWrapperBoxes StrokeForm StructuralImportance StructuredArray StructuredSelection StruveH StruveL Stub StudentTDistribution Style StyleBox StyleBoxAutoDelete StyleBoxOptions StyleData StyleDefinitions StyleForm StyleKeyMapping StyleMenuListing StyleNameDialogSettings StyleNames StylePrint StyleSheetPath Subfactorial Subgraph SubMinus SubPlus SubresultantPolynomialRemainders SubresultantPolynomials Subresultants Subscript SubscriptBox SubscriptBoxOptions Subscripted Subset SubsetEqual Subsets SubStar Subsuperscript SubsuperscriptBox SubsuperscriptBoxOptions Subtract SubtractFrom SubValues Succeeds SucceedsEqual SucceedsSlantEqual SucceedsTilde SuchThat Sum SumConvergence Sunday SuperDagger SuperMinus SuperPlus Superscript SuperscriptBox SuperscriptBoxOptions Superset SupersetEqual SuperStar Surd SurdForm SurfaceColor SurfaceGraphics SurvivalDistribution SurvivalFunction SurvivalModel SurvivalModelFit SuspendPacket SuzukiDistribution SuzukiGroupSuz SwatchLegend Switch Symbol SymbolName SymletWavelet Symmetric SymmetricGroup SymmetricMatrixQ SymmetricPolynomial SymmetricReduction Symmetrize SymmetrizedArray SymmetrizedArrayRules SymmetrizedDependentComponents SymmetrizedIndependentComponents SymmetrizedReplacePart SynchronousInitialization SynchronousUpdating Syntax SyntaxForm SyntaxInformation SyntaxLength SyntaxPacket SyntaxQ SystemDialogInput SystemException SystemHelpPath SystemInformation SystemInformationData SystemOpen SystemOptions SystemsModelDelay SystemsModelDelayApproximate SystemsModelDelete SystemsModelDimensions SystemsModelExtract SystemsModelFeedbackConnect SystemsModelLabels SystemsModelOrder SystemsModelParallelConnect SystemsModelSeriesConnect SystemsModelStateFeedbackConnect SystemStub Tab TabFilling Table TableAlignments TableDepth TableDirections TableForm TableHeadings TableSpacing TableView TableViewBox TabSpacings TabView TabViewBox TabViewBoxOptions TagBox TagBoxNote TagBoxOptions TaggingRules TagSet TagSetDelayed TagStyle TagUnset Take TakeWhile Tally Tan Tanh TargetFunctions TargetUnits TautologyQ TelegraphProcess TemplateBox TemplateBoxOptions TemplateSlotSequence TemporalData Temporary TemporaryVariable TensorContract TensorDimensions TensorExpand TensorProduct TensorQ TensorRank TensorReduce TensorSymmetry TensorTranspose TensorWedge Tetrahedron TetrahedronBox TetrahedronBoxOptions TeXForm TeXSave Text Text3DBox Text3DBoxOptions TextAlignment TextBand TextBoundingBox TextBox TextCell TextClipboardType TextData TextForm TextJustification TextLine TextPacket TextParagraph TextRecognize TextRendering TextStyle Texture TextureCoordinateFunction TextureCoordinateScaling Therefore ThermometerGauge Thick Thickness Thin Thinning ThisLink ThompsonGroupTh Thread ThreeJSymbol Threshold Through Throw Thumbnail Thursday Ticks TicksStyle Tilde TildeEqual TildeFullEqual TildeTilde TimeConstrained TimeConstraint Times TimesBy TimeSeriesForecast TimeSeriesInvertibility TimeUsed TimeValue TimeZone Timing Tiny TitleGrouping TitsGroupT ToBoxes ToCharacterCode ToColor ToContinuousTimeModel ToDate ToDiscreteTimeModel ToeplitzMatrix ToExpression ToFileName Together Toggle ToggleFalse Toggler TogglerBar TogglerBox TogglerBoxOptions ToHeldExpression ToInvertibleTimeSeries TokenWords Tolerance ToLowerCase ToNumberField TooBig Tooltip TooltipBox TooltipBoxOptions TooltipDelay TooltipStyle Top TopHatTransform TopologicalSort ToRadicals ToRules ToString Total TotalHeight TotalVariationFilter TotalWidth TouchscreenAutoZoom TouchscreenControlPlacement ToUpperCase Tr Trace TraceAbove TraceAction TraceBackward TraceDepth TraceDialog TraceForward TraceInternal TraceLevel TraceOff TraceOn TraceOriginal TracePrint TraceScan TrackedSymbols TradingChart TraditionalForm TraditionalFunctionNotation TraditionalNotation TraditionalOrder TransferFunctionCancel TransferFunctionExpand TransferFunctionFactor TransferFunctionModel TransferFunctionPoles TransferFunctionTransform TransferFunctionZeros TransformationFunction TransformationFunctions TransformationMatrix TransformedDistribution TransformedField Translate TranslationTransform TransparentColor Transpose TreeForm TreeGraph TreeGraphQ TreePlot TrendStyle TriangleWave TriangularDistribution Trig TrigExpand TrigFactor TrigFactorList Trigger TrigReduce TrigToExp TrimmedMean True TrueQ TruncatedDistribution TsallisQExponentialDistribution TsallisQGaussianDistribution TTest Tube TubeBezierCurveBox TubeBezierCurveBoxOptions TubeBox TubeBSplineCurveBox TubeBSplineCurveBoxOptions Tuesday TukeyLambdaDistribution TukeyWindow Tuples TuranGraph TuringMachine Transparent UnateQ Uncompress Undefined UnderBar Underflow Underlined Underoverscript UnderoverscriptBox UnderoverscriptBoxOptions Underscript UnderscriptBox UnderscriptBoxOptions UndirectedEdge UndirectedGraph UndirectedGraphQ UndocumentedTestFEParserPacket UndocumentedTestGetSelectionPacket Unequal Unevaluated UniformDistribution UniformGraphDistribution UniformSumDistribution Uninstall Union UnionPlus Unique UnitBox UnitConvert UnitDimensions Unitize UnitRootTest UnitSimplify UnitStep UnitTriangle UnitVector Unprotect UnsameQ UnsavedVariables Unset UnsetShared UntrackedVariables Up UpArrow UpArrowBar UpArrowDownArrow Update UpdateDynamicObjects UpdateDynamicObjectsSynchronous UpdateInterval UpDownArrow UpEquilibrium UpperCaseQ UpperLeftArrow UpperRightArrow UpperTriangularize Upsample UpSet UpSetDelayed UpTee UpTeeArrow UpValues URL URLFetch URLFetchAsynchronous URLSave URLSaveAsynchronous UseGraphicsRange Using UsingFrontEnd V2Get ValidationLength Value ValueBox ValueBoxOptions ValueForm ValueQ ValuesData Variables Variance VarianceEquivalenceTest VarianceEstimatorFunction VarianceGammaDistribution VarianceTest VectorAngle VectorColorFunction VectorColorFunctionScaling VectorDensityPlot VectorGlyphData VectorPlot VectorPlot3D VectorPoints VectorQ Vectors VectorScale VectorStyle Vee Verbatim Verbose VerboseConvertToPostScriptPacket VerifyConvergence VerifySolutions VerifyTestAssumptions Version VersionNumber VertexAdd VertexCapacity VertexColors VertexComponent VertexConnectivity VertexCoordinateRules VertexCoordinates VertexCorrelationSimilarity VertexCosineSimilarity VertexCount VertexCoverQ VertexDataCoordinates VertexDegree VertexDelete VertexDiceSimilarity VertexEccentricity VertexInComponent VertexInDegree VertexIndex VertexJaccardSimilarity VertexLabeling VertexLabels VertexLabelStyle VertexList VertexNormals VertexOutComponent VertexOutDegree VertexQ VertexRenderingFunction VertexReplace VertexShape VertexShapeFunction VertexSize VertexStyle VertexTextureCoordinates VertexWeight Vertical VerticalBar VerticalForm VerticalGauge VerticalSeparator VerticalSlider VerticalTilde ViewAngle ViewCenter ViewMatrix ViewPoint ViewPointSelectorSettings ViewPort ViewRange ViewVector ViewVertical VirtualGroupData Visible VisibleCell VoigtDistribution VonMisesDistribution WaitAll WaitAsynchronousTask WaitNext WaitUntil WakebyDistribution WalleniusHypergeometricDistribution WaringYuleDistribution WatershedComponents WatsonUSquareTest WattsStrogatzGraphDistribution WaveletBestBasis WaveletFilterCoefficients WaveletImagePlot WaveletListPlot WaveletMapIndexed WaveletMatrixPlot WaveletPhi WaveletPsi WaveletScale WaveletScalogram WaveletThreshold WeaklyConnectedComponents WeaklyConnectedGraphQ WeakStationarity WeatherData WeberE Wedge Wednesday WeibullDistribution WeierstrassHalfPeriods WeierstrassInvariants WeierstrassP WeierstrassPPrime WeierstrassSigma WeierstrassZeta WeightedAdjacencyGraph WeightedAdjacencyMatrix WeightedData WeightedGraphQ Weights WelchWindow WheelGraph WhenEvent Which While White Whitespace WhitespaceCharacter WhittakerM WhittakerW WienerFilter WienerProcess WignerD WignerSemicircleDistribution WilksW WilksWTest WindowClickSelect WindowElements WindowFloating WindowFrame WindowFrameElements WindowMargins WindowMovable WindowOpacity WindowSelected WindowSize WindowStatusArea WindowTitle WindowToolbars WindowWidth With WolframAlpha WolframAlphaDate WolframAlphaQuantity WolframAlphaResult Word WordBoundary WordCharacter WordData WordSearch WordSeparators WorkingPrecision Write WriteString Wronskian XMLElement XMLObject Xnor Xor Yellow YuleDissimilarity ZernikeR ZeroSymmetric ZeroTest ZeroWidthTimes Zeta ZetaZero ZipfDistribution ZTest ZTransform $Aborted $ActivationGroupID $ActivationKey $ActivationUserRegistered $AddOnsDirectory $AssertFunction $Assumptions $AsynchronousTask $BaseDirectory $BatchInput $BatchOutput $BoxForms $ByteOrdering $Canceled $CharacterEncoding $CharacterEncodings $CommandLine $CompilationTarget $ConditionHold $ConfiguredKernels $Context $ContextPath $ControlActiveSetting $CreationDate $CurrentLink $DateStringFormat $DefaultFont $DefaultFrontEnd $DefaultImagingDevice $DefaultPath $Display $DisplayFunction $DistributedContexts $DynamicEvaluation $Echo $Epilog $ExportFormats $Failed $FinancialDataSource $FormatType $FrontEnd $FrontEndSession $GeoLocation $HistoryLength $HomeDirectory $HTTPCookies $IgnoreEOF $ImagingDevices $ImportFormats $InitialDirectory $Input $InputFileName $InputStreamMethods $Inspector $InstallationDate $InstallationDirectory $InterfaceEnvironment $IterationLimit $KernelCount $KernelID $Language $LaunchDirectory $LibraryPath $LicenseExpirationDate $LicenseID $LicenseProcesses $LicenseServer $LicenseSubprocesses $LicenseType $Line $Linked $LinkSupported $LoadedFiles $MachineAddresses $MachineDomain $MachineDomains $MachineEpsilon $MachineID $MachineName $MachinePrecision $MachineType $MaxExtraPrecision $MaxLicenseProcesses $MaxLicenseSubprocesses $MaxMachineNumber $MaxNumber $MaxPiecewiseCases $MaxPrecision $MaxRootDegree $MessageGroups $MessageList $MessagePrePrint $Messages $MinMachineNumber $MinNumber $MinorReleaseNumber $MinPrecision $ModuleNumber $NetworkLicense $NewMessage $NewSymbol $Notebooks $NumberMarks $Off $OperatingSystem $Output $OutputForms $OutputSizeLimit $OutputStreamMethods $Packages $ParentLink $ParentProcessID $PasswordFile $PatchLevelID $Path $PathnameSeparator $PerformanceGoal $PipeSupported $Post $Pre $PreferencesDirectory $PrePrint $PreRead $PrintForms $PrintLiteral $ProcessID $ProcessorCount $ProcessorType $ProductInformation $ProgramName $RandomState $RecursionLimit $ReleaseNumber $RootDirectory $ScheduledTask $ScriptCommandLine $SessionID $SetParentLink $SharedFunctions $SharedVariables $SoundDisplay $SoundDisplayFunction $SuppressInputFormHeads $SynchronousEvaluation $SyntaxHandler $System $SystemCharacterEncoding $SystemID $SystemWordLength $TemporaryDirectory $TemporaryPrefix $TextStyle $TimedOut $TimeUnit $TimeZone $TopDirectory $TraceOff $TraceOn $TracePattern $TracePostAction $TracePreAction $Urgent $UserAddOnsDirectory $UserBaseDirectory $UserDocumentsDirectory $UserName $Version $VersionNumber\",\nc:[{cN:\"comment\",b:/\\(\\*/,e:/\\*\\)/},e.ASM,e.QSM,e.CNM,{cN:\"list\",b:/\\{/,e:/\\}/,i:/:/}]}});hljs.registerLanguage(\"julia\",function(r){var e={keyword:\"in abstract baremodule begin bitstype break catch ccall const continue do else elseif end export finally for function global if immutable import importall let local macro module quote return try type typealias using while\",literal:\"true false ANY ARGS CPU_CORES C_NULL DL_LOAD_PATH DevNull ENDIAN_BOM ENV I|0 Inf Inf16 Inf32 InsertionSort JULIA_HOME LOAD_PATH MS_ASYNC MS_INVALIDATE MS_SYNC MergeSort NaN NaN16 NaN32 OS_NAME QuickSort RTLD_DEEPBIND RTLD_FIRST RTLD_GLOBAL RTLD_LAZY RTLD_LOCAL RTLD_NODELETE RTLD_NOLOAD RTLD_NOW RoundDown RoundFromZero RoundNearest RoundToZero RoundUp STDERR STDIN STDOUT VERSION WORD_SIZE catalan cglobal e|0 eu|0 eulergamma golden im nothing pi γ π φ\",built_in:\"ASCIIString AbstractArray AbstractRNG AbstractSparseArray Any ArgumentError Array Associative Base64Pipe Bidiagonal BigFloat BigInt BitArray BitMatrix BitVector Bool BoundsError Box CFILE Cchar Cdouble Cfloat Char CharString Cint Clong Clonglong ClusterManager Cmd Coff_t Colon Complex Complex128 Complex32 Complex64 Condition Cptrdiff_t Cshort Csize_t Cssize_t Cuchar Cuint Culong Culonglong Cushort Cwchar_t DArray DataType DenseArray Diagonal Dict DimensionMismatch DirectIndexString Display DivideError DomainError EOFError EachLine Enumerate ErrorException Exception Expr Factorization FileMonitor FileOffset Filter Float16 Float32 Float64 FloatRange FloatingPoint Function GetfieldNode GotoNode Hermitian IO IOBuffer IOStream IPv4 IPv6 InexactError Int Int128 Int16 Int32 Int64 Int8 IntSet Integer InterruptException IntrinsicFunction KeyError LabelNode LambdaStaticData LineNumberNode LoadError LocalProcess MIME MathConst MemoryError MersenneTwister Method MethodError MethodTable Module NTuple NewvarNode Nothing Number ObjectIdDict OrdinalRange OverflowError ParseError PollingFileWatcher ProcessExitedException ProcessGroup Ptr QuoteNode Range Range1 Ranges Rational RawFD Real Regex RegexMatch RemoteRef RepString RevString RopeString RoundingMode Set SharedArray Signed SparseMatrixCSC StackOverflowError Stat StatStruct StepRange String SubArray SubString SymTridiagonal Symbol SymbolNode Symmetric SystemError Task TextDisplay Timer TmStruct TopNode Triangular Tridiagonal Type TypeConstructor TypeError TypeName TypeVar UTF16String UTF32String UTF8String UdpSocket Uint Uint128 Uint16 Uint32 Uint64 Uint8 UndefRefError UndefVarError UniformScaling UnionType UnitRange Unsigned Vararg VersionNumber WString WeakKeyDict WeakRef Woodbury Zip\"},t=\"[A-Za-z_\\\\u00A1-\\\\uFFFF][A-Za-z_0-9\\\\u00A1-\\\\uFFFF]*\",o={l:t,k:e},n={cN:\"type-annotation\",b:/::/},a={cN:\"subtype\",b:/<:/},i={cN:\"number\",b:/(\\b0x[\\d_]*(\\.[\\d_]*)?|0x\\.\\d[\\d_]*)p[-+]?\\d+|\\b0[box][a-fA-F0-9][a-fA-F0-9_]*|(\\b\\d[\\d_]*(\\.[\\d_]*)?|\\.\\d[\\d_]*)([eEfF][-+]?\\d+)?/,r:0},l={cN:\"char\",b:/'(.|\\\\[xXuU][a-zA-Z0-9]+)'/},c={cN:\"subst\",b:/\\$\\(/,e:/\\)/,k:e},u={cN:\"variable\",b:\"\\\\$\"+t},d={cN:\"string\",c:[r.BE,c,u],v:[{b:/\\w*\"/,e:/\"\\w*/},{b:/\\w*\"\"\"/,e:/\"\"\"\\w*/}]},g={cN:\"string\",c:[r.BE,c,u],b:\"`\",e:\"`\"},s={cN:\"macrocall\",b:\"@\"+t},S={cN:\"comment\",v:[{b:\"#=\",e:\"=#\",r:10},{b:\"#\",e:\"$\"}]};return o.c=[i,l,n,a,d,g,s,S,r.HCM],c.c=o.c,o});hljs.registerLanguage(\"rib\",function(e){return{k:\"ArchiveRecord AreaLightSource Atmosphere Attribute AttributeBegin AttributeEnd Basis Begin Blobby Bound Clipping ClippingPlane Color ColorSamples ConcatTransform Cone CoordinateSystem CoordSysTransform CropWindow Curves Cylinder DepthOfField Detail DetailRange Disk Displacement Display End ErrorHandler Exposure Exterior Format FrameAspectRatio FrameBegin FrameEnd GeneralPolygon GeometricApproximation Geometry Hider Hyperboloid Identity Illuminate Imager Interior LightSource MakeCubeFaceEnvironment MakeLatLongEnvironment MakeShadow MakeTexture Matte MotionBegin MotionEnd NuPatch ObjectBegin ObjectEnd ObjectInstance Opacity Option Orientation Paraboloid Patch PatchMesh Perspective PixelFilter PixelSamples PixelVariance Points PointsGeneralPolygons PointsPolygons Polygon Procedural Projection Quantize ReadArchive RelativeDetail ReverseOrientation Rotate Scale ScreenWindow ShadingInterpolation ShadingRate Shutter Sides Skew SolidBegin SolidEnd Sphere SubdivisionMesh Surface TextureCoordinates Torus Transform TransformBegin TransformEnd TransformPoints Translate TrimCurve WorldBegin WorldEnd\",i:\"</\",c:[e.HCM,e.CNM,e.ASM,e.QSM]}});hljs.registerLanguage(\"vim\",function(e){return{l:/[!#@\\w]+/,k:{keyword:\"N|0 P|0 X|0 a|0 ab abc abo al am an|0 ar arga argd arge argdo argg argl argu as au aug aun b|0 bN ba bad bd be bel bf bl bm bn bo bp br brea breaka breakd breakl bro bufdo buffers bun bw c|0 cN cNf ca cabc caddb cad caddf cal cat cb cc ccl cd ce cex cf cfir cgetb cgete cg changes chd che checkt cl cla clo cm cmapc cme cn cnew cnf cno cnorea cnoreme co col colo com comc comp con conf cope cp cpf cq cr cs cst cu cuna cunme cw d|0 delm deb debugg delc delf dif diffg diffo diffp diffpu diffs diffthis dig di dl dell dj dli do doautoa dp dr ds dsp e|0 ea ec echoe echoh echom echon el elsei em en endfo endf endt endw ene ex exe exi exu f|0 files filet fin fina fini fir fix fo foldc foldd folddoc foldo for fu g|0 go gr grepa gu gv ha h|0 helpf helpg helpt hi hid his i|0 ia iabc if ij il im imapc ime ino inorea inoreme int is isp iu iuna iunme j|0 ju k|0 keepa kee keepj lN lNf l|0 lad laddb laddf la lan lat lb lc lch lcl lcs le lefta let lex lf lfir lgetb lgete lg lgr lgrepa lh ll lla lli lmak lm lmapc lne lnew lnf ln loadk lo loc lockv lol lope lp lpf lr ls lt lu lua luad luaf lv lvimgrepa lw m|0 ma mak map mapc marks mat me menut mes mk mks mksp mkv mkvie mod mz mzf nbc nb nbs n|0 new nm nmapc nme nn nnoreme noa no noh norea noreme norm nu nun nunme ol o|0 om omapc ome on ono onoreme opt ou ounme ow p|0 profd prof pro promptr pc ped pe perld po popu pp pre prev ps pt ptN ptf ptj ptl ptn ptp ptr pts pu pw py3 python3 py3d py3f py pyd pyf q|0 quita qa r|0 rec red redi redr redraws reg res ret retu rew ri rightb rub rubyd rubyf rund ru rv s|0 sN san sa sal sav sb sbN sba sbf sbl sbm sbn sbp sbr scrip scripte scs se setf setg setl sf sfir sh sim sig sil sl sla sm smap smapc sme sn sni sno snor snoreme sor so spelld spe spelli spellr spellu spellw sp spr sre st sta startg startr star stopi stj sts sun sunm sunme sus sv sw sy synti sync t|0 tN tabN tabc tabdo tabe tabf tabfir tabl tabm tabnew tabn tabo tabp tabr tabs tab ta tags tc tcld tclf te tf th tj tl tm tn to tp tr try ts tu u|0 undoj undol una unh unl unlo unm unme uns up v|0 ve verb vert vim vimgrepa vi viu vie vm vmapc vme vne vn vnoreme vs vu vunme windo w|0 wN wa wh wi winc winp wn wp wq wqa ws wu wv x|0 xa xmapc xm xme xn xnoreme xu xunme y|0 z|0 ~ Next Print append abbreviate abclear aboveleft all amenu anoremenu args argadd argdelete argedit argglobal arglocal argument ascii autocmd augroup aunmenu buffer bNext ball badd bdelete behave belowright bfirst blast bmodified bnext botright bprevious brewind break breakadd breakdel breaklist browse bunload bwipeout change cNext cNfile cabbrev cabclear caddbuffer caddexpr caddfile call catch cbuffer cclose center cexpr cfile cfirst cgetbuffer cgetexpr cgetfile chdir checkpath checktime clist clast close cmap cmapclear cmenu cnext cnewer cnfile cnoremap cnoreabbrev cnoremenu copy colder colorscheme command comclear compiler continue confirm copen cprevious cpfile cquit crewind cscope cstag cunmap cunabbrev cunmenu cwindow delete delmarks debug debuggreedy delcommand delfunction diffupdate diffget diffoff diffpatch diffput diffsplit digraphs display deletel djump dlist doautocmd doautoall deletep drop dsearch dsplit edit earlier echo echoerr echohl echomsg else elseif emenu endif endfor endfunction endtry endwhile enew execute exit exusage file filetype find finally finish first fixdel fold foldclose folddoopen folddoclosed foldopen function global goto grep grepadd gui gvim hardcopy help helpfind helpgrep helptags highlight hide history insert iabbrev iabclear ijump ilist imap imapclear imenu inoremap inoreabbrev inoremenu intro isearch isplit iunmap iunabbrev iunmenu join jumps keepalt keepmarks keepjumps lNext lNfile list laddexpr laddbuffer laddfile last language later lbuffer lcd lchdir lclose lcscope left leftabove lexpr lfile lfirst lgetbuffer lgetexpr lgetfile lgrep lgrepadd lhelpgrep llast llist lmake lmap lmapclear lnext lnewer lnfile lnoremap loadkeymap loadview lockmarks lockvar lolder lopen lprevious lpfile lrewind ltag lunmap luado luafile lvimgrep lvimgrepadd lwindow move mark make mapclear match menu menutranslate messages mkexrc mksession mkspell mkvimrc mkview mode mzscheme mzfile nbclose nbkey nbsart next nmap nmapclear nmenu nnoremap nnoremenu noautocmd noremap nohlsearch noreabbrev noremenu normal number nunmap nunmenu oldfiles open omap omapclear omenu only onoremap onoremenu options ounmap ounmenu ownsyntax print profdel profile promptfind promptrepl pclose pedit perl perldo pop popup ppop preserve previous psearch ptag ptNext ptfirst ptjump ptlast ptnext ptprevious ptrewind ptselect put pwd py3do py3file python pydo pyfile quit quitall qall read recover redo redir redraw redrawstatus registers resize retab return rewind right rightbelow ruby rubydo rubyfile rundo runtime rviminfo substitute sNext sandbox sargument sall saveas sbuffer sbNext sball sbfirst sblast sbmodified sbnext sbprevious sbrewind scriptnames scriptencoding scscope set setfiletype setglobal setlocal sfind sfirst shell simalt sign silent sleep slast smagic smapclear smenu snext sniff snomagic snoremap snoremenu sort source spelldump spellgood spellinfo spellrepall spellundo spellwrong split sprevious srewind stop stag startgreplace startreplace startinsert stopinsert stjump stselect sunhide sunmap sunmenu suspend sview swapname syntax syntime syncbind tNext tabNext tabclose tabedit tabfind tabfirst tablast tabmove tabnext tabonly tabprevious tabrewind tag tcl tcldo tclfile tearoff tfirst throw tjump tlast tmenu tnext topleft tprevious trewind tselect tunmenu undo undojoin undolist unabbreviate unhide unlet unlockvar unmap unmenu unsilent update vglobal version verbose vertical vimgrep vimgrepadd visual viusage view vmap vmapclear vmenu vnew vnoremap vnoremenu vsplit vunmap vunmenu write wNext wall while winsize wincmd winpos wnext wprevious wqall wsverb wundo wviminfo xit xall xmapclear xmap xmenu xnoremap xnoremenu xunmap xunmenu yank\",built_in:\"abs acos add and append argc argidx argv asin atan atan2 browse browsedir bufexists buflisted bufloaded bufname bufnr bufwinnr byte2line byteidx call ceil changenr char2nr cindent clearmatches col complete complete_add complete_check confirm copy cos cosh count cscope_connection cursor deepcopy delete did_filetype diff_filler diff_hlID empty escape eval eventhandler executable exists exp expand extend feedkeys filereadable filewritable filter finddir findfile float2nr floor fmod fnameescape fnamemodify foldclosed foldclosedend foldlevel foldtext foldtextresult foreground function garbagecollect get getbufline getbufvar getchar getcharmod getcmdline getcmdpos getcmdtype getcwd getfontname getfperm getfsize getftime getftype getline getloclist getmatches getpid getpos getqflist getreg getregtype gettabvar gettabwinvar getwinposx getwinposy getwinvar glob globpath has has_key haslocaldir hasmapto histadd histdel histget histnr hlexists hlID hostname iconv indent index input inputdialog inputlist inputrestore inputsave inputsecret insert invert isdirectory islocked items join keys len libcall libcallnr line line2byte lispindent localtime log log10 luaeval map maparg mapcheck match matchadd matcharg matchdelete matchend matchlist matchstr max min mkdir mode mzeval nextnonblank nr2char or pathshorten pow prevnonblank printf pumvisible py3eval pyeval range readfile reltime reltimestr remote_expr remote_foreground remote_peek remote_read remote_send remove rename repeat resolve reverse round screenattr screenchar screencol screenrow search searchdecl searchpair searchpairpos searchpos server2client serverlist setbufvar setcmdpos setline setloclist setmatches setpos setqflist setreg settabvar settabwinvar setwinvar sha256 shellescape shiftwidth simplify sin sinh sort soundfold spellbadword spellsuggest split sqrt str2float str2nr strchars strdisplaywidth strftime stridx string strlen strpart strridx strtrans strwidth submatch substitute synconcealed synID synIDattr synIDtrans synstack system tabpagebuflist tabpagenr tabpagewinnr tagfiles taglist tan tanh tempname tolower toupper tr trunc type undofile undotree values virtcol visualmode wildmenumode winbufnr wincol winheight winline winnr winrestcmd winrestview winsaveview winwidth writefile xor\"},i:/[{:]/,c:[e.NM,e.ASM,{cN:\"string\",b:/\"((\\\\\")|[^\"\\n])*(\"|\\n)/},{cN:\"variable\",b:/[bwtglsav]:[\\w\\d_]*/},{cN:\"function\",bK:\"function function!\",e:\"$\",r:0,c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"}]}]}});hljs.registerLanguage(\"prolog\",function(c){var r={cN:\"atom\",b:/[a-z][A-Za-z0-9_]*/,r:0},b={cN:\"name\",v:[{b:/[A-Z][a-zA-Z0-9_]*/},{b:/_[A-Za-z0-9_]*/}],r:0},a={b:/\\(/,e:/\\)/,r:0},e={b:/\\[/,e:/\\]/},n={cN:\"comment\",b:/%/,e:/$/,c:[c.PWM]},t={cN:\"string\",b:/`/,e:/`/,c:[c.BE]},g={cN:\"string\",b:/0\\'(\\\\\\'|.)/},N={cN:\"string\",b:/0\\'\\\\s/},o={b:/:-/},s=[r,b,a,o,e,n,c.CBCM,c.QSM,c.ASM,t,g,N,c.CNM];return a.c=s,e.c=s,{c:s.concat([{b:/\\.$/}])}});hljs.registerLanguage(\"parser3\",function(r){var e=r.C(\"{\",\"}\",{c:[\"self\"]});return{sL:\"xml\",r:0,c:[r.C(\"^#\",\"$\"),r.C(\"\\\\^rem{\",\"}\",{r:10,c:[e]}),{cN:\"preprocessor\",b:\"^@(?:BASE|USE|CLASS|OPTIONS)$\",r:10},{cN:\"title\",b:\"@[\\\\w\\\\-]+\\\\[[\\\\w^;\\\\-]*\\\\](?:\\\\[[\\\\w^;\\\\-]*\\\\])?(?:.*)$\"},{cN:\"variable\",b:\"\\\\$\\\\{?[\\\\w\\\\-\\\\.\\\\:]+\\\\}?\"},{cN:\"keyword\",b:\"\\\\^[\\\\w\\\\-\\\\.\\\\:]+\"},{cN:\"number\",b:\"\\\\^#[0-9a-fA-F]+\"},r.CNM]}});hljs.registerLanguage(\"openscad\",function(e){var r={cN:\"keyword\",b:\"\\\\$(f[asn]|t|vp[rtd]|children)\"},n={cN:\"literal\",b:\"false|true|PI|undef\"},i={cN:\"number\",b:\"\\\\b\\\\d+(\\\\.\\\\d+)?(e-?\\\\d+)?\",r:0},o=e.inherit(e.QSM,{i:null}),s={cN:\"preprocessor\",k:\"include use\",b:\"include|use <\",e:\">\"},t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",i,o,r,n]},c={cN:\"built_in\",b:\"[*!#%]\",r:0},l={cN:\"function\",bK:\"module function\",e:\"\\\\=|\\\\{\",c:[t,e.UTM]};return{aliases:[\"scad\"],k:{keyword:\"function module include use for intersection_for if else \\\\%\",literal:\"false true PI undef\",built_in:\"circle square polygon text sphere cube cylinder polyhedron translate rotate scale resize mirror multmatrix color offset hull minkowski union difference intersection abs sign sin cos tan acos asin atan atan2 floor round ceil ln log pow sqrt exp rands min max concat lookup str chr search version version_num norm cross parent_module echo import import_dxf dxf_linear_extrude linear_extrude rotate_extrude surface projection render children dxf_cross dxf_dim let assign\"},c:[e.CLCM,e.CBCM,i,s,o,r,c,l]}});hljs.registerLanguage(\"ceylon\",function(e){var a=\"assembly module package import alias class interface object given value assign void function new of extends satisfies abstracts in out return break continue throw assert dynamic if else switch case for while try catch finally then let this outer super is exists nonempty\",t=\"shared abstract formal default actual variable late native deprecatedfinal sealed annotation suppressWarnings small\",s=\"doc by license see throws tagged\",n=t+\" \"+s,i={cN:\"subst\",eB:!0,eE:!0,b:/``/,e:/``/,k:a,r:10},r=[{cN:\"string\",b:'\"\"\"',e:'\"\"\"',r:10},{cN:\"string\",b:'\"',e:'\"',c:[i]},{cN:\"string\",b:\"'\",e:\"'\"},{cN:\"number\",b:\"#[0-9a-fA-F_]+|\\\\$[01_]+|[0-9_]+(?:\\\\.[0-9_](?:[eE][+-]?\\\\d+)?)?[kMGTPmunpf]?\",r:0}];return i.c=r,{k:{keyword:a,annotation:n},i:\"\\\\$[^01]|#[^0-9a-fA-F]\",c:[e.CLCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[\"self\"]}),{cN:\"annotation\",b:'@[a-z]\\\\w*(?:\\\\:\"[^\"]*\")?'}].concat(r)}});hljs.registerLanguage(\"nginx\",function(e){var r={cN:\"variable\",v:[{b:/\\$\\d+/},{b:/\\$\\{/,e:/}/},{b:\"[\\\\$\\\\@]\"+e.UIR}]},b={eW:!0,l:\"[a-z/_]+\",k:{built_in:\"on off yes no true false none blocked debug info notice warn error crit select break last permanent redirect kqueue rtsig epoll poll /dev/poll\"},r:0,i:\"=>\",c:[e.HCM,{cN:\"string\",c:[e.BE,r],v:[{b:/\"/,e:/\"/},{b:/'/,e:/'/}]},{cN:\"url\",b:\"([a-z]+):/\",e:\"\\\\s\",eW:!0,eE:!0,c:[r]},{cN:\"regexp\",c:[e.BE,r],v:[{b:\"\\\\s\\\\^\",e:\"\\\\s|{|;\",rE:!0},{b:\"~\\\\*?\\\\s+\",e:\"\\\\s|{|;\",rE:!0},{b:\"\\\\*(\\\\.[a-z\\\\-]+)+\"},{b:\"([a-z\\\\-]+\\\\.)+\\\\*\"}]},{cN:\"number\",b:\"\\\\b\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}\\\\.\\\\d{1,3}(:\\\\d{1,5})?\\\\b\"},{cN:\"number\",b:\"\\\\b\\\\d+[kKmMgGdshdwy]*\\\\b\",r:0},r]};return{aliases:[\"nginxconf\"],c:[e.HCM,{b:e.UIR+\"\\\\s\",e:\";|{\",rB:!0,c:[{cN:\"title\",b:e.UIR,starts:b}],r:0}],i:\"[^\\\\s\\\\}]\"}});hljs.registerLanguage(\"sml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"abstype and andalso as case datatype do else end eqtype exception fn fun functor handle if in include infix infixr let local nonfix of op open orelse raise rec sharing sig signature struct structure then type val with withtype where while\",built_in:\"array bool char exn int list option order real ref string substring vector unit word\",literal:\"true false NONE SOME LESS EQUAL GREATER nil\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\"},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"gherkin\",function(e){return{aliases:[\"feature\"],k:\"Feature Background Ability Business Need Scenario Scenarios Scenario Outline Scenario Template Examples Given And Then But When\",c:[{cN:\"keyword\",b:\"\\\\*\"},e.C(\"@[^@\\r\\n\t ]+\",\"$\"),{b:\"\\\\|\",e:\"\\\\|\\\\w*$\",c:[{cN:\"string\",b:\"[^|]+\"}]},{cN:\"variable\",b:\"<\",e:\">\"},e.HCM,{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.QSM]}});hljs.registerLanguage(\"vbnet\",function(e){return{aliases:[\"vb\"],cI:!0,k:{keyword:\"addhandler addressof alias and andalso aggregate ansi as assembly auto binary by byref byval call case catch class compare const continue custom declare default delegate dim distinct do each equals else elseif end enum erase error event exit explicit finally for friend from function get global goto group handles if implements imports in inherits interface into is isfalse isnot istrue join key let lib like loop me mid mod module mustinherit mustoverride mybase myclass namespace narrowing new next not notinheritable notoverridable of off on operator option optional or order orelse overloads overridable overrides paramarray partial preserve private property protected public raiseevent readonly redim rem removehandler resume return select set shadows shared skip static step stop structure strict sub synclock take text then throw to try unicode until using when where while widening with withevents writeonly xor\",built_in:\"boolean byte cbool cbyte cchar cdate cdec cdbl char cint clng cobj csbyte cshort csng cstr ctype date decimal directcast double gettype getxmlnamespace iif integer long object sbyte short single string trycast typeof uinteger ulong ushort\",literal:\"true false nothing\"},i:\"//|{|}|endif|gosub|variant|wend\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(\"'\",\"$\",{rB:!0,c:[{cN:\"xmlDocTag\",b:\"'''|<!--|-->\",c:[e.PWM]},{cN:\"xmlDocTag\",b:\"</?\",e:\">\",c:[e.PWM]}]}),e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\",k:\"if else elseif end region externalsource\"}]}});hljs.registerLanguage(\"pf\",function(t){var o={cN:\"variable\",b:/\\$[\\w\\d#@][\\w\\d_]*/},e={cN:\"variable\",b:/</,e:/>/};return{aliases:[\"pf.conf\"],l:/[a-z0-9_<>-]+/,k:{built_in:\"block match pass load anchor|5 antispoof|10 set table\",keyword:\"in out log quick on rdomain inet inet6 proto from port os to routeallow-opts divert-packet divert-reply divert-to flags group icmp-typeicmp6-type label once probability recieved-on rtable prio queuetos tag tagged user keep fragment for os dropaf-to|10 binat-to|10 nat-to|10 rdr-to|10 bitmask least-stats random round-robinsource-hash static-portdup-to reply-to route-toparent bandwidth default min max qlimitblock-policy debug fingerprints hostid limit loginterface optimizationreassemble ruleset-optimization basic none profile skip state-defaultsstate-policy timeoutconst counters persistno modulate synproxy state|5 floating if-bound no-sync pflow|10 sloppysource-track global rule max-src-nodes max-src-states max-src-connmax-src-conn-rate overload flushscrub|5 max-mss min-ttl no-df|10 random-id\",literal:\"all any no-route self urpf-failed egress|5 unknown\"},c:[t.HCM,t.NM,t.QSM,o,e]}});hljs.registerLanguage(\"r\",function(e){var r=\"([a-zA-Z]|\\\\.[a-zA-Z.])[a-zA-Z0-9._]*\";return{c:[e.HCM,{b:r,l:r,k:{keyword:\"function if in break next repeat else for return switch while try tryCatch stop warning require library attach detach source setMethod setGeneric setGroupGeneric setClass ...\",literal:\"NULL NA TRUE FALSE T F Inf NaN NA_integer_|10 NA_real_|10 NA_character_|10 NA_complex_|10\"},r:0},{cN:\"number\",b:\"0[xX][0-9a-fA-F]+[Li]?\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+(?:[eE][+\\\\-]?\\\\d*)?L\\\\b\",r:0},{cN:\"number\",b:\"\\\\d+\\\\.(?!\\\\d)(?:i\\\\b)?\",r:0},{cN:\"number\",b:\"\\\\d+(?:\\\\.\\\\d*)?(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{cN:\"number\",b:\"\\\\.\\\\d+(?:[eE][+\\\\-]?\\\\d*)?i?\\\\b\",r:0},{b:\"`\",e:\"`\",r:0},{cN:\"string\",c:[e.BE],v:[{b:'\"',e:'\"'},{b:\"'\",e:\"'\"}]}]}});hljs.registerLanguage(\"sql\",function(e){var t=e.C(\"--\",\"$\");return{cI:!0,i:/[<>{}*]/,c:[{cN:\"operator\",bK:\"begin end start commit rollback savepoint lock alter create drop rename call delete do handler insert load replace select truncate update set show pragma grant merge describe use explain help declare prepare execute deallocate release unlock purge reset change stop analyze cache flush optimize repair kill install uninstall checksum restore check backup revoke\",e:/;/,eW:!0,k:{keyword:\"abort abs absolute acc acce accep accept access accessed accessible account acos action activate add addtime admin administer advanced advise aes_decrypt aes_encrypt after agent aggregate ali alia alias allocate allow alter always analyze ancillary and any anydata anydataset anyschema anytype apply archive archived archivelog are as asc ascii asin assembly assertion associate asynchronous at atan atn2 attr attri attrib attribu attribut attribute attributes audit authenticated authentication authid authors auto autoallocate autodblink autoextend automatic availability avg backup badfile basicfile before begin beginning benchmark between bfile bfile_base big bigfile bin binary_double binary_float binlog bit_and bit_count bit_length bit_or bit_xor bitmap blob_base block blocksize body both bound buffer_cache buffer_pool build bulk by byte byteordermark bytes c cache caching call calling cancel capacity cascade cascaded case cast catalog category ceil ceiling chain change changed char_base char_length character_length characters characterset charindex charset charsetform charsetid check checksum checksum_agg child choose chr chunk class cleanup clear client clob clob_base clone close cluster_id cluster_probability cluster_set clustering coalesce coercibility col collate collation collect colu colum column column_value columns columns_updated comment commit compact compatibility compiled complete composite_limit compound compress compute concat concat_ws concurrent confirm conn connec connect connect_by_iscycle connect_by_isleaf connect_by_root connect_time connection consider consistent constant constraint constraints constructor container content contents context contributors controlfile conv convert convert_tz corr corr_k corr_s corresponding corruption cos cost count count_big counted covar_pop covar_samp cpu_per_call cpu_per_session crc32 create creation critical cross cube cume_dist curdate current current_date current_time current_timestamp current_user cursor curtime customdatum cycle d data database databases datafile datafiles datalength date_add date_cache date_format date_sub dateadd datediff datefromparts datename datepart datetime2fromparts day day_to_second dayname dayofmonth dayofweek dayofyear days db_role_change dbtimezone ddl deallocate declare decode decompose decrement decrypt deduplicate def defa defau defaul default defaults deferred defi defin define degrees delayed delegate delete delete_all delimited demand dense_rank depth dequeue des_decrypt des_encrypt des_key_file desc descr descri describ describe descriptor deterministic diagnostics difference dimension direct_load directory disable disable_all disallow disassociate discardfile disconnect diskgroup distinct distinctrow distribute distributed div do document domain dotnet double downgrade drop dumpfile duplicate duration e each edition editionable editions element ellipsis else elsif elt empty enable enable_all enclosed encode encoding encrypt end end-exec endian enforced engine engines enqueue enterprise entityescaping eomonth error errors escaped evalname evaluate event eventdata events except exception exceptions exchange exclude excluding execu execut execute exempt exists exit exp expire explain export export_set extended extent external external_1 external_2 externally extract f failed failed_login_attempts failover failure far fast feature_set feature_value fetch field fields file file_name_convert filesystem_like_logging final finish first first_value fixed flash_cache flashback floor flush following follows for forall force form forma format found found_rows freelist freelists freepools fresh from from_base64 from_days ftp full function g general generated get get_format get_lock getdate getutcdate global global_name globally go goto grant grants greatest group group_concat group_id grouping grouping_id groups gtid_subtract guarantee guard handler hash hashkeys having hea head headi headin heading heap help hex hierarchy high high_priority hosts hour http i id ident_current ident_incr ident_seed identified identity idle_time if ifnull ignore iif ilike ilm immediate import in include including increment index indexes indexing indextype indicator indices inet6_aton inet6_ntoa inet_aton inet_ntoa infile initial initialized initially initrans inmemory inner innodb input insert install instance instantiable instr interface interleaved intersect into invalidate invisible is is_free_lock is_ipv4 is_ipv4_compat is_not is_not_null is_used_lock isdate isnull isolation iterate java join json json_exists k keep keep_duplicates key keys kill l language large last last_day last_insert_id last_value lax lcase lead leading least leaves left len lenght length less level levels library like like2 like4 likec limit lines link list listagg little ln load load_file lob lobs local localtime localtimestamp locate locator lock locked log log10 log2 logfile logfiles logging logical logical_reads_per_call logoff logon logs long loop low low_priority lower lpad lrtrim ltrim m main make_set makedate maketime managed management manual map mapping mask master master_pos_wait match matched materialized max maxextents maximize maxinstances maxlen maxlogfiles maxloghistory maxlogmembers maxsize maxtrans md5 measures median medium member memcompress memory merge microsecond mid migration min minextents minimum mining minus minute minvalue missing mod mode model modification modify module monitoring month months mount move movement multiset mutex n name name_const names nan national native natural nav nchar nclob nested never new newline next nextval no no_write_to_binlog noarchivelog noaudit nobadfile nocheck nocompress nocopy nocycle nodelay nodiscardfile noentityescaping noguarantee nokeep nologfile nomapping nomaxvalue nominimize nominvalue nomonitoring none noneditionable nonschema noorder nopr nopro noprom nopromp noprompt norely noresetlogs noreverse normal norowdependencies noschemacheck noswitch not nothing notice notrim novalidate now nowait nth_value nullif nulls num numb numbe nvarchar nvarchar2 object ocicoll ocidate ocidatetime ociduration ociinterval ociloblocator ocinumber ociref ocirefcursor ocirowid ocistring ocitype oct octet_length of off offline offset oid oidindex old on online only opaque open operations operator optimal optimize option optionally or oracle oracle_date oradata ord ordaudio orddicom orddoc order ordimage ordinality ordvideo organization orlany orlvary out outer outfile outline output over overflow overriding p package pad parallel parallel_enable parameters parent parse partial partition partitions pascal passing password password_grace_time password_lock_time password_reuse_max password_reuse_time password_verify_function patch path patindex pctincrease pctthreshold pctused pctversion percent percent_rank percentile_cont percentile_disc performance period period_add period_diff permanent physical pi pipe pipelined pivot pluggable plugin policy position post_transaction pow power pragma prebuilt precedes preceding precision prediction prediction_cost prediction_details prediction_probability prediction_set prepare present preserve prior priority private private_sga privileges procedural procedure procedure_analyze processlist profiles project prompt protection public publishingservername purge quarter query quick quiesce quota quotename radians raise rand range rank raw read reads readsize rebuild record records recover recovery recursive recycle redo reduced ref reference referenced references referencing refresh regexp_like register regr_avgx regr_avgy regr_count regr_intercept regr_r2 regr_slope regr_sxx regr_sxy reject rekey relational relative relaylog release release_lock relies_on relocate rely rem remainder rename repair repeat replace replicate replication required reset resetlogs resize resource respect restore restricted result result_cache resumable resume retention return returning returns reuse reverse revoke right rlike role roles rollback rolling rollup round row row_count rowdependencies rowid rownum rows rtrim rules safe salt sample save savepoint sb1 sb2 sb4 scan schema schemacheck scn scope scroll sdo_georaster sdo_topo_geometry search sec_to_time second section securefile security seed segment select self sequence sequential serializable server servererror session session_user sessions_per_user set sets settings sha sha1 sha2 share shared shared_pool short show shrink shutdown si_averagecolor si_colorhistogram si_featurelist si_positionalcolor si_stillimage si_texture siblings sid sign sin size size_t sizes skip slave sleep smalldatetimefromparts smallfile snapshot some soname sort soundex source space sparse spfile split sql sql_big_result sql_buffer_result sql_cache sql_calc_found_rows sql_small_result sql_variant_property sqlcode sqldata sqlerror sqlname sqlstate sqrt square standalone standby start starting startup statement static statistics stats_binomial_test stats_crosstab stats_ks_test stats_mode stats_mw_test stats_one_way_anova stats_t_test_ stats_t_test_indep stats_t_test_one stats_t_test_paired stats_wsr_test status std stddev stddev_pop stddev_samp stdev stop storage store stored str str_to_date straight_join strcmp strict string struct stuff style subdate subpartition subpartitions substitutable substr substring subtime subtring_index subtype success sum suspend switch switchoffset switchover sync synchronous synonym sys sys_xmlagg sysasm sysaux sysdate sysdatetimeoffset sysdba sysoper system system_user sysutcdatetime t table tables tablespace tan tdo template temporary terminated tertiary_weights test than then thread through tier ties time time_format time_zone timediff timefromparts timeout timestamp timestampadd timestampdiff timezone_abbr timezone_minute timezone_region to to_base64 to_date to_days to_seconds todatetimeoffset trace tracking transaction transactional translate translation treat trigger trigger_nestlevel triggers trim truncate try_cast try_convert try_parse type ub1 ub2 ub4 ucase unarchived unbounded uncompress under undo unhex unicode uniform uninstall union unique unix_timestamp unknown unlimited unlock unpivot unrecoverable unsafe unsigned until untrusted unusable unused update updated upgrade upped upper upsert url urowid usable usage use use_stored_outlines user user_data user_resources users using utc_date utc_timestamp uuid uuid_short validate validate_password_strength validation valist value values var var_samp varcharc vari varia variab variabl variable variables variance varp varraw varrawc varray verify version versions view virtual visible void wait wallet warning warnings week weekday weekofyear wellformed when whene whenev wheneve whenever where while whitespace with within without work wrapped xdb xml xmlagg xmlattributes xmlcast xmlcolattval xmlelement xmlexists xmlforest xmlindex xmlnamespaces xmlpi xmlquery xmlroot xmlschema xmlserialize xmltable xmltype xor year year_to_month years yearweek\",literal:\"true false null\",built_in:\"array bigint binary bit blob boolean char character date dec decimal float int int8 integer interval number numeric real record serial serial8 smallint text varchar varying void\"},c:[{cN:\"string\",b:\"'\",e:\"'\",c:[e.BE,{b:\"''\"}]},{cN:\"string\",b:'\"',e:'\"',c:[e.BE,{b:'\"\"'}]},{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},e.CNM,e.CBCM,t]},e.CBCM,t]}});hljs.registerLanguage(\"kotlin\",function(e){var r=\"val var get set class trait object public open private protected final enum if else do while for when break continue throw try catch finally import package is as in return fun override default companion reified inline volatile transient native\";return{k:{typename:\"Byte Short Char Int Long Boolean Float Double Void Unit Nothing\",literal:\"true false null\",keyword:r},c:[e.C(\"/\\\\*\\\\*\",\"\\\\*/\",{r:0,c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.CLCM,e.CBCM,{cN:\"type\",b:/</,e:/>/,rB:!0,eE:!1,r:0},{cN:\"function\",bK:\"fun\",e:\"[(]|$\",rB:!0,eE:!0,k:r,i:/fun\\s+(<.*>)?[^\\s\\(]+(\\s+[^\\s\\(]+)\\s*=/,r:5,c:[{b:e.UIR+\"\\\\s*\\\\(\",rB:!0,r:0,c:[e.UTM]},{cN:\"type\",b:/</,e:/>/,k:\"reified\",r:0},{cN:\"params\",b:/\\(/,e:/\\)/,k:r,r:0,i:/\\([^\\(,\\s:]+,/,c:[{cN:\"typename\",b:/:\\s*/,e:/\\s*[=\\)]/,eB:!0,rE:!0,r:0}]},e.CLCM,e.CBCM]},{cN:\"class\",bK:\"class trait\",e:/[:\\{(]|$/,eE:!0,i:\"extends implements\",c:[e.UTM,{cN:\"type\",b:/</,e:/>/,eB:!0,eE:!0,r:0},{cN:\"typename\",b:/[,:]\\s*/,e:/[<\\(,]|$/,eB:!0,rE:!0}]},{cN:\"variable\",bK:\"var val\",e:/\\s*[=:$]/,eE:!0},e.QSM,{cN:\"shebang\",b:\"^#!/usr/bin/env\",e:\"$\",i:\"\\n\"},e.CNM]}});hljs.registerLanguage(\"clojure-repl\",function(r){return{c:[{cN:\"prompt\",b:/^([\\w.-]+|\\s*#_)=>/,starts:{e:/$/,sL:\"clojure\"}}]}});hljs.registerLanguage(\"twig\",function(e){var t={cN:\"params\",b:\"\\\\(\",e:\"\\\\)\"},a=\"attribute block constant cycle date dump include max min parent random range source template_from_string\",r={cN:\"function\",bK:a,r:0,c:[t]},c={cN:\"filter\",b:/\\|[A-Za-z_]+:?/,k:\"abs batch capitalize convert_encoding date date_modify default escape first format join json_encode keys last length lower merge nl2br number_format raw replace reverse round slice sort split striptags title trim upper url_encode\",c:[r]},n=\"autoescape block do embed extends filter flush for if import include macro sandbox set spaceless use verbatim\";return n=n+\" \"+n.split(\" \").map(function(e){return\"end\"+e}).join(\" \"),{aliases:[\"craftcms\"],cI:!0,sL:\"xml\",c:[e.C(/\\{#/,/#}/),{cN:\"template_tag\",b:/\\{%/,e:/%}/,k:n,c:[c,r]},{cN:\"variable\",b:/\\{\\{/,e:/}}/,c:[c,r]}]}});hljs.registerLanguage(\"vbscript\",function(e){return{aliases:[\"vbs\"],cI:!0,k:{keyword:\"call class const dim do loop erase execute executeglobal exit for each next function if then else on error option explicit new private property let get public randomize redim rem select case set stop sub while wend with end to elseif is or xor and not class_initialize class_terminate default preserve in me byval byref step resume goto\",built_in:\"lcase month vartype instrrev ubound setlocale getobject rgb getref string weekdayname rnd dateadd monthname now day minute isarray cbool round formatcurrency conversions csng timevalue second year space abs clng timeserial fixs len asc isempty maths dateserial atn timer isobject filter weekday datevalue ccur isdate instr datediff formatdatetime replace isnull right sgn array snumeric log cdbl hex chr lbound msgbox ucase getlocale cos cdate cbyte rtrim join hour oct typename trim strcomp int createobject loadpicture tan formatnumber mid scriptenginebuildversion scriptengine split scriptengineminorversion cint sin datepart ltrim sqr scriptenginemajorversion time derived eval date formatpercent exp inputbox left ascw chrw regexp server response request cstr err\",literal:\"true false null nothing empty\"},i:\"//\",c:[e.inherit(e.QSM,{c:[{b:'\"\"'}]}),e.C(/'/,/$/,{r:0}),e.CNM]}});hljs.registerLanguage(\"css\",function(e){var c=\"[a-zA-Z-][a-zA-Z0-9_-]*\",a={cN:\"function\",b:c+\"\\\\(\",rB:!0,eE:!0,e:\"\\\\(\"},r={cN:\"rule\",b:/[A-Z\\_\\.\\-]+\\s*:/,rB:!0,e:\";\",eW:!0,c:[{cN:\"attribute\",b:/\\S/,e:\":\",eE:!0,starts:{cN:\"value\",eW:!0,eE:!0,c:[a,e.CSSNM,e.QSM,e.ASM,e.CBCM,{cN:\"hexcolor\",b:\"#[0-9A-Fa-f]+\"},{cN:\"important\",b:\"!important\"}]}}]};return{cI:!0,i:/[=\\/|'\\$]/,c:[e.CBCM,{cN:\"id\",b:/\\#[A-Za-z0-9_-]+/},{cN:\"class\",b:/\\.[A-Za-z0-9_-]+/},{cN:\"attr_selector\",b:/\\[/,e:/\\]/,i:\"$\"},{cN:\"pseudo\",b:/:(:)?[a-zA-Z0-9\\_\\-\\+\\(\\)\"']+/},{cN:\"at_rule\",b:\"@(font-face|page)\",l:\"[a-z-]+\",k:\"font-face page\"},{cN:\"at_rule\",b:\"@\",e:\"[{;]\",c:[{cN:\"keyword\",b:/\\S+/},{b:/\\s/,eW:!0,eE:!0,r:0,c:[a,e.ASM,e.QSM,e.CSSNM]}]},{cN:\"tag\",b:c,r:0},{cN:\"rules\",b:\"{\",e:\"}\",i:/\\S/,c:[e.CBCM,r]}]}});hljs.registerLanguage(\"mel\",function(e){return{k:\"int float string vector matrix if else switch case default while do for in break continue global proc return about abs addAttr addAttributeEditorNodeHelp addDynamic addNewShelfTab addPP addPanelCategory addPrefixToName advanceToNextDrivenKey affectedNet affects aimConstraint air alias aliasAttr align alignCtx alignCurve alignSurface allViewFit ambientLight angle angleBetween animCone animCurveEditor animDisplay animView annotate appendStringArray applicationName applyAttrPreset applyTake arcLenDimContext arcLengthDimension arclen arrayMapper art3dPaintCtx artAttrCtx artAttrPaintVertexCtx artAttrSkinPaintCtx artAttrTool artBuildPaintMenu artFluidAttrCtx artPuttyCtx artSelectCtx artSetPaintCtx artUserPaintCtx assignCommand assignInputDevice assignViewportFactories attachCurve attachDeviceAttr attachSurface attrColorSliderGrp attrCompatibility attrControlGrp attrEnumOptionMenu attrEnumOptionMenuGrp attrFieldGrp attrFieldSliderGrp attrNavigationControlGrp attrPresetEditWin attributeExists attributeInfo attributeMenu attributeQuery autoKeyframe autoPlace bakeClip bakeFluidShading bakePartialHistory bakeResults bakeSimulation basename basenameEx batchRender bessel bevel bevelPlus binMembership bindSkin blend2 blendShape blendShapeEditor blendShapePanel blendTwoAttr blindDataType boneLattice boundary boxDollyCtx boxZoomCtx bufferCurve buildBookmarkMenu buildKeyframeMenu button buttonManip CBG cacheFile cacheFileCombine cacheFileMerge cacheFileTrack camera cameraView canCreateManip canvas capitalizeString catch catchQuiet ceil changeSubdivComponentDisplayLevel changeSubdivRegion channelBox character characterMap characterOutlineEditor characterize chdir checkBox checkBoxGrp checkDefaultRenderGlobals choice circle circularFillet clamp clear clearCache clip clipEditor clipEditorCurrentTimeCtx clipSchedule clipSchedulerOutliner clipTrimBefore closeCurve closeSurface cluster cmdFileOutput cmdScrollFieldExecuter cmdScrollFieldReporter cmdShell coarsenSubdivSelectionList collision color colorAtPoint colorEditor colorIndex colorIndexSliderGrp colorSliderButtonGrp colorSliderGrp columnLayout commandEcho commandLine commandPort compactHairSystem componentEditor compositingInterop computePolysetVolume condition cone confirmDialog connectAttr connectControl connectDynamic connectJoint connectionInfo constrain constrainValue constructionHistory container containsMultibyte contextInfo control convertFromOldLayers convertIffToPsd convertLightmap convertSolidTx convertTessellation convertUnit copyArray copyFlexor copyKey copySkinWeights cos cpButton cpCache cpClothSet cpCollision cpConstraint cpConvClothToMesh cpForces cpGetSolverAttr cpPanel cpProperty cpRigidCollisionFilter cpSeam cpSetEdit cpSetSolverAttr cpSolver cpSolverTypes cpTool cpUpdateClothUVs createDisplayLayer createDrawCtx createEditor createLayeredPsdFile createMotionField createNewShelf createNode createRenderLayer createSubdivRegion cross crossProduct ctxAbort ctxCompletion ctxEditMode ctxTraverse currentCtx currentTime currentTimeCtx currentUnit curve curveAddPtCtx curveCVCtx curveEPCtx curveEditorCtx curveIntersect curveMoveEPCtx curveOnSurface curveSketchCtx cutKey cycleCheck cylinder dagPose date defaultLightListCheckBox defaultNavigation defineDataServer defineVirtualDevice deformer deg_to_rad delete deleteAttr deleteShadingGroupsAndMaterials deleteShelfTab deleteUI deleteUnusedBrushes delrandstr detachCurve detachDeviceAttr detachSurface deviceEditor devicePanel dgInfo dgdirty dgeval dgtimer dimWhen directKeyCtx directionalLight dirmap dirname disable disconnectAttr disconnectJoint diskCache displacementToPoly displayAffected displayColor displayCull displayLevelOfDetail displayPref displayRGBColor displaySmoothness displayStats displayString displaySurface distanceDimContext distanceDimension doBlur dolly dollyCtx dopeSheetEditor dot dotProduct doubleProfileBirailSurface drag dragAttrContext draggerContext dropoffLocator duplicate duplicateCurve duplicateSurface dynCache dynControl dynExport dynExpression dynGlobals dynPaintEditor dynParticleCtx dynPref dynRelEdPanel dynRelEditor dynamicLoad editAttrLimits editDisplayLayerGlobals editDisplayLayerMembers editRenderLayerAdjustment editRenderLayerGlobals editRenderLayerMembers editor editorTemplate effector emit emitter enableDevice encodeString endString endsWith env equivalent equivalentTol erf error eval evalDeferred evalEcho event exactWorldBoundingBox exclusiveLightCheckBox exec executeForEachObject exists exp expression expressionEditorListen extendCurve extendSurface extrude fcheck fclose feof fflush fgetline fgetword file fileBrowserDialog fileDialog fileExtension fileInfo filetest filletCurve filter filterCurve filterExpand filterStudioImport findAllIntersections findAnimCurves findKeyframe findMenuItem findRelatedSkinCluster finder firstParentOf fitBspline flexor floatEq floatField floatFieldGrp floatScrollBar floatSlider floatSlider2 floatSliderButtonGrp floatSliderGrp floor flow fluidCacheInfo fluidEmitter fluidVoxelInfo flushUndo fmod fontDialog fopen formLayout format fprint frameLayout fread freeFormFillet frewind fromNativePath fwrite gamma gauss geometryConstraint getApplicationVersionAsFloat getAttr getClassification getDefaultBrush getFileList getFluidAttr getInputDeviceRange getMayaPanelTypes getModifiers getPanel getParticleAttr getPluginResource getenv getpid glRender glRenderEditor globalStitch gmatch goal gotoBindPose grabColor gradientControl gradientControlNoAttr graphDollyCtx graphSelectContext graphTrackCtx gravity grid gridLayout group groupObjectsByName HfAddAttractorToAS HfAssignAS HfBuildEqualMap HfBuildFurFiles HfBuildFurImages HfCancelAFR HfConnectASToHF HfCreateAttractor HfDeleteAS HfEditAS HfPerformCreateAS HfRemoveAttractorFromAS HfSelectAttached HfSelectAttractors HfUnAssignAS hardenPointCurve hardware hardwareRenderPanel headsUpDisplay headsUpMessage help helpLine hermite hide hilite hitTest hotBox hotkey hotkeyCheck hsv_to_rgb hudButton hudSlider hudSliderButton hwReflectionMap hwRender hwRenderLoad hyperGraph hyperPanel hyperShade hypot iconTextButton iconTextCheckBox iconTextRadioButton iconTextRadioCollection iconTextScrollList iconTextStaticLabel ikHandle ikHandleCtx ikHandleDisplayScale ikSolver ikSplineHandleCtx ikSystem ikSystemInfo ikfkDisplayMethod illustratorCurves image imfPlugins inheritTransform insertJoint insertJointCtx insertKeyCtx insertKnotCurve insertKnotSurface instance instanceable instancer intField intFieldGrp intScrollBar intSlider intSliderGrp interToUI internalVar intersect iprEngine isAnimCurve isConnected isDirty isParentOf isSameObject isTrue isValidObjectName isValidString isValidUiName isolateSelect itemFilter itemFilterAttr itemFilterRender itemFilterType joint jointCluster jointCtx jointDisplayScale jointLattice keyTangent keyframe keyframeOutliner keyframeRegionCurrentTimeCtx keyframeRegionDirectKeyCtx keyframeRegionDollyCtx keyframeRegionInsertKeyCtx keyframeRegionMoveKeyCtx keyframeRegionScaleKeyCtx keyframeRegionSelectKeyCtx keyframeRegionSetKeyCtx keyframeRegionTrackCtx keyframeStats lassoContext lattice latticeDeformKeyCtx launch launchImageEditor layerButton layeredShaderPort layeredTexturePort layout layoutDialog lightList lightListEditor lightListPanel lightlink lineIntersection linearPrecision linstep listAnimatable listAttr listCameras listConnections listDeviceAttachments listHistory listInputDeviceAxes listInputDeviceButtons listInputDevices listMenuAnnotation listNodeTypes listPanelCategories listRelatives listSets listTransforms listUnselected listerEditor loadFluid loadNewShelf loadPlugin loadPluginLanguageResources loadPrefObjects localizedPanelLabel lockNode loft log longNameOf lookThru ls lsThroughFilter lsType lsUI Mayatomr mag makeIdentity makeLive makePaintable makeRoll makeSingleSurface makeTubeOn makebot manipMoveContext manipMoveLimitsCtx manipOptions manipRotateContext manipRotateLimitsCtx manipScaleContext manipScaleLimitsCtx marker match max memory menu menuBarLayout menuEditor menuItem menuItemToShelf menuSet menuSetPref messageLine min minimizeApp mirrorJoint modelCurrentTimeCtx modelEditor modelPanel mouse movIn movOut move moveIKtoFK moveKeyCtx moveVertexAlongDirection multiProfileBirailSurface mute nParticle nameCommand nameField namespace namespaceInfo newPanelItems newton nodeCast nodeIconButton nodeOutliner nodePreset nodeType noise nonLinear normalConstraint normalize nurbsBoolean nurbsCopyUVSet nurbsCube nurbsEditUV nurbsPlane nurbsSelect nurbsSquare nurbsToPoly nurbsToPolygonsPref nurbsToSubdiv nurbsToSubdivPref nurbsUVSet nurbsViewDirectionVector objExists objectCenter objectLayer objectType objectTypeUI obsoleteProc oceanNurbsPreviewPlane offsetCurve offsetCurveOnSurface offsetSurface openGLExtension openMayaPref optionMenu optionMenuGrp optionVar orbit orbitCtx orientConstraint outlinerEditor outlinerPanel overrideModifier paintEffectsDisplay pairBlend palettePort paneLayout panel panelConfiguration panelHistory paramDimContext paramDimension paramLocator parent parentConstraint particle particleExists particleInstancer particleRenderInfo partition pasteKey pathAnimation pause pclose percent performanceOptions pfxstrokes pickWalk picture pixelMove planarSrf plane play playbackOptions playblast plugAttr plugNode pluginInfo pluginResourceUtil pointConstraint pointCurveConstraint pointLight pointMatrixMult pointOnCurve pointOnSurface pointPosition poleVectorConstraint polyAppend polyAppendFacetCtx polyAppendVertex polyAutoProjection polyAverageNormal polyAverageVertex polyBevel polyBlendColor polyBlindData polyBoolOp polyBridgeEdge polyCacheMonitor polyCheck polyChipOff polyClipboard polyCloseBorder polyCollapseEdge polyCollapseFacet polyColorBlindData polyColorDel polyColorPerVertex polyColorSet polyCompare polyCone polyCopyUV polyCrease polyCreaseCtx polyCreateFacet polyCreateFacetCtx polyCube polyCut polyCutCtx polyCylinder polyCylindricalProjection polyDelEdge polyDelFacet polyDelVertex polyDuplicateAndConnect polyDuplicateEdge polyEditUV polyEditUVShell polyEvaluate polyExtrudeEdge polyExtrudeFacet polyExtrudeVertex polyFlipEdge polyFlipUV polyForceUV polyGeoSampler polyHelix polyInfo polyInstallAction polyLayoutUV polyListComponentConversion polyMapCut polyMapDel polyMapSew polyMapSewMove polyMergeEdge polyMergeEdgeCtx polyMergeFacet polyMergeFacetCtx polyMergeUV polyMergeVertex polyMirrorFace polyMoveEdge polyMoveFacet polyMoveFacetUV polyMoveUV polyMoveVertex polyNormal polyNormalPerVertex polyNormalizeUV polyOptUvs polyOptions polyOutput polyPipe polyPlanarProjection polyPlane polyPlatonicSolid polyPoke polyPrimitive polyPrism polyProjection polyPyramid polyQuad polyQueryBlindData polyReduce polySelect polySelectConstraint polySelectConstraintMonitor polySelectCtx polySelectEditCtx polySeparate polySetToFaceNormal polySewEdge polyShortestPathCtx polySmooth polySoftEdge polySphere polySphericalProjection polySplit polySplitCtx polySplitEdge polySplitRing polySplitVertex polyStraightenUVBorder polySubdivideEdge polySubdivideFacet polyToSubdiv polyTorus polyTransfer polyTriangulate polyUVSet polyUnite polyWedgeFace popen popupMenu pose pow preloadRefEd print progressBar progressWindow projFileViewer projectCurve projectTangent projectionContext projectionManip promptDialog propModCtx propMove psdChannelOutliner psdEditTextureFile psdExport psdTextureFile putenv pwd python querySubdiv quit rad_to_deg radial radioButton radioButtonGrp radioCollection radioMenuItemCollection rampColorPort rand randomizeFollicles randstate rangeControl readTake rebuildCurve rebuildSurface recordAttr recordDevice redo reference referenceEdit referenceQuery refineSubdivSelectionList refresh refreshAE registerPluginResource rehash reloadImage removeJoint removeMultiInstance removePanelCategory rename renameAttr renameSelectionList renameUI render renderGlobalsNode renderInfo renderLayerButton renderLayerParent renderLayerPostProcess renderLayerUnparent renderManip renderPartition renderQualityNode renderSettings renderThumbnailUpdate renderWindowEditor renderWindowSelectContext renderer reorder reorderDeformers requires reroot resampleFluid resetAE resetPfxToPolyCamera resetTool resolutionNode retarget reverseCurve reverseSurface revolve rgb_to_hsv rigidBody rigidSolver roll rollCtx rootOf rot rotate rotationInterpolation roundConstantRadius rowColumnLayout rowLayout runTimeCommand runup sampleImage saveAllShelves saveAttrPreset saveFluid saveImage saveInitialState saveMenu savePrefObjects savePrefs saveShelf saveToolSettings scale scaleBrushBrightness scaleComponents scaleConstraint scaleKey scaleKeyCtx sceneEditor sceneUIReplacement scmh scriptCtx scriptEditorInfo scriptJob scriptNode scriptTable scriptToShelf scriptedPanel scriptedPanelType scrollField scrollLayout sculpt searchPathArray seed selLoadSettings select selectContext selectCurveCV selectKey selectKeyCtx selectKeyframeRegionCtx selectMode selectPref selectPriority selectType selectedNodes selectionConnection separator setAttr setAttrEnumResource setAttrMapping setAttrNiceNameResource setConstraintRestPosition setDefaultShadingGroup setDrivenKeyframe setDynamic setEditCtx setEditor setFluidAttr setFocus setInfinity setInputDeviceMapping setKeyCtx setKeyPath setKeyframe setKeyframeBlendshapeTargetWts setMenuMode setNodeNiceNameResource setNodeTypeFlag setParent setParticleAttr setPfxToPolyCamera setPluginResource setProject setStampDensity setStartupMessage setState setToolTo setUITemplate setXformManip sets shadingConnection shadingGeometryRelCtx shadingLightRelCtx shadingNetworkCompare shadingNode shapeCompare shelfButton shelfLayout shelfTabLayout shellField shortNameOf showHelp showHidden showManipCtx showSelectionInTitle showShadingGroupAttrEditor showWindow sign simplify sin singleProfileBirailSurface size sizeBytes skinCluster skinPercent smoothCurve smoothTangentSurface smoothstep snap2to2 snapKey snapMode snapTogetherCtx snapshot soft softMod softModCtx sort sound soundControl source spaceLocator sphere sphrand spotLight spotLightPreviewPort spreadSheetEditor spring sqrt squareSurface srtContext stackTrace startString startsWith stitchAndExplodeShell stitchSurface stitchSurfacePoints strcmp stringArrayCatenate stringArrayContains stringArrayCount stringArrayInsertAtIndex stringArrayIntersector stringArrayRemove stringArrayRemoveAtIndex stringArrayRemoveDuplicates stringArrayRemoveExact stringArrayToString stringToStringArray strip stripPrefixFromName stroke subdAutoProjection subdCleanTopology subdCollapse subdDuplicateAndConnect subdEditUV subdListComponentConversion subdMapCut subdMapSewMove subdMatchTopology subdMirror subdToBlind subdToPoly subdTransferUVsToCache subdiv subdivCrease subdivDisplaySmoothness substitute substituteAllString substituteGeometry substring surface surfaceSampler surfaceShaderList swatchDisplayPort switchTable symbolButton symbolCheckBox sysFile system tabLayout tan tangentConstraint texLatticeDeformContext texManipContext texMoveContext texMoveUVShellContext texRotateContext texScaleContext texSelectContext texSelectShortestPathCtx texSmudgeUVContext texWinToolCtx text textCurves textField textFieldButtonGrp textFieldGrp textManip textScrollList textToShelf textureDisplacePlane textureHairColor texturePlacementContext textureWindow threadCount threePointArcCtx timeControl timePort timerX toNativePath toggle toggleAxis toggleWindowVisibility tokenize tokenizeList tolerance tolower toolButton toolCollection toolDropped toolHasOptions toolPropertyWindow torus toupper trace track trackCtx transferAttributes transformCompare transformLimits translator trim trunc truncateFluidCache truncateHairCache tumble tumbleCtx turbulence twoPointArcCtx uiRes uiTemplate unassignInputDevice undo undoInfo ungroup uniform unit unloadPlugin untangleUV untitledFileName untrim upAxis updateAE userCtx uvLink uvSnapshot validateShelfName vectorize view2dToolCtx viewCamera viewClipPlane viewFit viewHeadOn viewLookAt viewManip viewPlace viewSet visor volumeAxis vortex waitCursor warning webBrowser webBrowserPrefs whatIs window windowPref wire wireContext workspace wrinkle wrinkleContext writeTake xbmLangPathList xform\",i:\"</\",c:[e.CNM,e.ASM,e.QSM,{cN:\"string\",b:\"`\",e:\"`\",c:[e.BE]},{cN:\"variable\",v:[{b:\"\\\\$\\\\d\"},{b:\"[\\\\$\\\\%\\\\@](\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\"},{b:\"\\\\*(\\\\^\\\\w\\\\b|#\\\\w+|[^\\\\s\\\\w{]|{\\\\w+}|\\\\w+)\",r:0}]},e.CLCM,e.CBCM]}});hljs.registerLanguage(\"monkey\",function(e){var n={cN:\"number\",r:0,v:[{b:\"[$][a-fA-F0-9]+\"},e.NM]};return{cI:!0,k:{keyword:\"public private property continue exit extern new try catch eachin not abstract final select case default const local global field end if then else elseif endif while wend repeat until forever for to step next return module inline throw\",built_in:\"DebugLog DebugStop Error Print ACos ACosr ASin ASinr ATan ATan2 ATan2r ATanr Abs Abs Ceil Clamp Clamp Cos Cosr Exp Floor Log Max Max Min Min Pow Sgn Sgn Sin Sinr Sqrt Tan Tanr Seed PI HALFPI TWOPI\",literal:\"true false null and or shl shr mod\"},i:/\\/\\*/,c:[e.C(\"#rem\",\"#end\"),e.C(\"'\",\"$\",{r:0}),{cN:\"function\",bK:\"function method\",e:\"[(=:]|$\",i:/\\n/,c:[e.UTM]},{cN:\"class\",bK:\"class interface\",e:\"$\",c:[{bK:\"extends implements\"},e.UTM]},{cN:\"variable\",b:\"\\\\b(self|super)\\\\b\"},{cN:\"preprocessor\",bK:\"import\",e:\"$\"},{cN:\"preprocessor\",b:\"\\\\s*#\",e:\"$\",k:\"if else elseif endif end then\"},{cN:\"pi\",b:\"^\\\\s*strict\\\\b\"},{bK:\"alias\",e:\"=\",c:[e.UTM]},e.QSM,n]}});hljs.registerLanguage(\"smali\",function(r){var t=[\"add\",\"and\",\"cmp\",\"cmpg\",\"cmpl\",\"const\",\"div\",\"double\",\"float\",\"goto\",\"if\",\"int\",\"long\",\"move\",\"mul\",\"neg\",\"new\",\"nop\",\"not\",\"or\",\"rem\",\"return\",\"shl\",\"shr\",\"sput\",\"sub\",\"throw\",\"ushr\",\"xor\"],n=[\"aget\",\"aput\",\"array\",\"check\",\"execute\",\"fill\",\"filled\",\"goto/16\",\"goto/32\",\"iget\",\"instance\",\"invoke\",\"iput\",\"monitor\",\"packed\",\"sget\",\"sparse\"],s=[\"transient\",\"constructor\",\"abstract\",\"final\",\"synthetic\",\"public\",\"private\",\"protected\",\"static\",\"bridge\",\"system\"];return{aliases:[\"smali\"],c:[{cN:\"string\",b:'\"',e:'\"',r:0},r.C(\"#\",\"$\",{r:0}),{cN:\"keyword\",b:\"\\\\s*\\\\.end\\\\s[a-zA-Z0-9]*\",r:1},{cN:\"keyword\",b:\"^[ ]*\\\\.[a-zA-Z]*\",r:0},{cN:\"keyword\",b:\"\\\\s:[a-zA-Z_0-9]*\",r:0},{cN:\"keyword\",b:\"\\\\s(\"+s.join(\"|\")+\")\",r:1},{cN:\"keyword\",b:\"\\\\[\",r:0},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")\\\\s\",r:1},{cN:\"instruction\",b:\"\\\\s(\"+t.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)+\\\\s\",r:10},{cN:\"instruction\",b:\"\\\\s(\"+n.join(\"|\")+\")((\\\\-|/)[a-zA-Z0-9]+)*\\\\s\",r:10},{cN:\"class\",b:\"L[^(;:\\n]*;\",r:0},{cN:\"function\",b:'( |->)[^(\\n ;\"]*\\\\(',r:0},{cN:\"function\",b:\"\\\\)\",r:0},{cN:\"variable\",b:\"[vp][0-9]+\",r:0}]}});hljs.registerLanguage(\"livecodeserver\",function(e){var r={cN:\"variable\",b:\"\\\\b[gtps][A-Z]+[A-Za-z0-9_\\\\-]*\\\\b|\\\\$_[A-Z]+\",r:0},t=[e.CBCM,e.HCM,e.C(\"--\",\"$\"),e.C(\"[^:]//\",\"$\")],a=e.inherit(e.TM,{v:[{b:\"\\\\b_*rig[A-Z]+[A-Za-z0-9_\\\\-]*\"},{b:\"\\\\b_[a-z0-9\\\\-]+\"}]}),o=e.inherit(e.TM,{b:\"\\\\b([A-Za-z0-9_\\\\-]+)\\\\b\"});return{cI:!1,k:{keyword:\"$_COOKIE $_FILES $_GET $_GET_BINARY $_GET_RAW $_POST $_POST_BINARY $_POST_RAW $_SESSION $_SERVER codepoint codepoints segment segments codeunit codeunits sentence sentences trueWord trueWords paragraph after byte bytes english the until http forever descending using line real8 with seventh for stdout finally element word words fourth before black ninth sixth characters chars stderr uInt1 uInt1s uInt2 uInt2s stdin string lines relative rel any fifth items from middle mid at else of catch then third it file milliseconds seconds second secs sec int1 int1s int4 int4s internet int2 int2s normal text item last long detailed effective uInt4 uInt4s repeat end repeat URL in try into switch to words https token binfile each tenth as ticks tick system real4 by dateItems without char character ascending eighth whole dateTime numeric short first ftp integer abbreviated abbr abbrev private case while if\",constant:\"SIX TEN FORMFEED NINE ZERO NONE SPACE FOUR FALSE COLON CRLF PI COMMA ENDOFFILE EOF EIGHT FIVE QUOTE EMPTY ONE TRUE RETURN CR LINEFEED RIGHT BACKSLASH NULL SEVEN TAB THREE TWO six ten formfeed nine zero none space four false colon crlf pi comma endoffile eof eight five quote empty one true return cr linefeed right backslash null seven tab three two RIVERSION RISTATE FILE_READ_MODE FILE_WRITE_MODE FILE_WRITE_MODE DIR_WRITE_MODE FILE_READ_UMASK FILE_WRITE_UMASK DIR_READ_UMASK DIR_WRITE_UMASK\",operator:\"div mod wrap and or bitAnd bitNot bitOr bitXor among not in a an within contains ends with begins the keys of keys\",built_in:\"put abs acos aliasReference annuity arrayDecode arrayEncode asin atan atan2 average avg avgDev base64Decode base64Encode baseConvert binaryDecode binaryEncode byteOffset byteToNum cachedURL cachedURLs charToNum cipherNames codepointOffset codepointProperty codepointToNum codeunitOffset commandNames compound compress constantNames cos date dateFormat decompress directories diskSpace DNSServers exp exp1 exp2 exp10 extents files flushEvents folders format functionNames geometricMean global globals hasMemory harmonicMean hostAddress hostAddressToName hostName hostNameToAddress isNumber ISOToMac itemOffset keys len length libURLErrorData libUrlFormData libURLftpCommand libURLLastHTTPHeaders libURLLastRHHeaders libUrlMultipartFormAddPart libUrlMultipartFormData libURLVersion lineOffset ln ln1 localNames log log2 log10 longFilePath lower macToISO matchChunk matchText matrixMultiply max md5Digest median merge millisec millisecs millisecond milliseconds min monthNames nativeCharToNum normalizeText num number numToByte numToChar numToCodepoint numToNativeChar offset open openfiles openProcesses openProcessIDs openSockets paragraphOffset paramCount param params peerAddress pendingMessages platform popStdDev populationStandardDeviation populationVariance popVariance processID random randomBytes replaceText result revCreateXMLTree revCreateXMLTreeFromFile revCurrentRecord revCurrentRecordIsFirst revCurrentRecordIsLast revDatabaseColumnCount revDatabaseColumnIsNull revDatabaseColumnLengths revDatabaseColumnNames revDatabaseColumnNamed revDatabaseColumnNumbered revDatabaseColumnTypes revDatabaseConnectResult revDatabaseCursors revDatabaseID revDatabaseTableNames revDatabaseType revDataFromQuery revdb_closeCursor revdb_columnbynumber revdb_columncount revdb_columnisnull revdb_columnlengths revdb_columnnames revdb_columntypes revdb_commit revdb_connect revdb_connections revdb_connectionerr revdb_currentrecord revdb_cursorconnection revdb_cursorerr revdb_cursors revdb_dbtype revdb_disconnect revdb_execute revdb_iseof revdb_isbof revdb_movefirst revdb_movelast revdb_movenext revdb_moveprev revdb_query revdb_querylist revdb_recordcount revdb_rollback revdb_tablenames revGetDatabaseDriverPath revNumberOfRecords revOpenDatabase revOpenDatabases revQueryDatabase revQueryDatabaseBlob revQueryResult revQueryIsAtStart revQueryIsAtEnd revUnixFromMacPath revXMLAttribute revXMLAttributes revXMLAttributeValues revXMLChildContents revXMLChildNames revXMLCreateTreeFromFileWithNamespaces revXMLCreateTreeWithNamespaces revXMLDataFromXPathQuery revXMLEvaluateXPath revXMLFirstChild revXMLMatchingNode revXMLNextSibling revXMLNodeContents revXMLNumberOfChildren revXMLParent revXMLPreviousSibling revXMLRootNode revXMLRPC_CreateRequest revXMLRPC_Documents revXMLRPC_Error revXMLRPC_GetHost revXMLRPC_GetMethod revXMLRPC_GetParam revXMLText revXMLRPC_Execute revXMLRPC_GetParamCount revXMLRPC_GetParamNode revXMLRPC_GetParamType revXMLRPC_GetPath revXMLRPC_GetPort revXMLRPC_GetProtocol revXMLRPC_GetRequest revXMLRPC_GetResponse revXMLRPC_GetSocket revXMLTree revXMLTrees revXMLValidateDTD revZipDescribeItem revZipEnumerateItems revZipOpenArchives round sampVariance sec secs seconds sentenceOffset sha1Digest shell shortFilePath sin specialFolderPath sqrt standardDeviation statRound stdDev sum sysError systemVersion tan tempName textDecode textEncode tick ticks time to tokenOffset toLower toUpper transpose truewordOffset trunc uniDecode uniEncode upper URLDecode URLEncode URLStatus uuid value variableNames variance version waitDepth weekdayNames wordOffset xsltApplyStylesheet xsltApplyStylesheetFromFile xsltLoadStylesheet xsltLoadStylesheetFromFile add breakpoint cancel clear local variable file word line folder directory URL close socket process combine constant convert create new alias folder directory decrypt delete variable word line folder directory URL dispatch divide do encrypt filter get include intersect kill libURLDownloadToFile libURLFollowHttpRedirects libURLftpUpload libURLftpUploadFile libURLresetAll libUrlSetAuthCallback libURLSetCustomHTTPHeaders libUrlSetExpect100 libURLSetFTPListCommand libURLSetFTPMode libURLSetFTPStopTime libURLSetStatusCallback load multiply socket prepare process post seek rel relative read from process rename replace require resetAll resolve revAddXMLNode revAppendXML revCloseCursor revCloseDatabase revCommitDatabase revCopyFile revCopyFolder revCopyXMLNode revDeleteFolder revDeleteXMLNode revDeleteAllXMLTrees revDeleteXMLTree revExecuteSQL revGoURL revInsertXMLNode revMoveFolder revMoveToFirstRecord revMoveToLastRecord revMoveToNextRecord revMoveToPreviousRecord revMoveToRecord revMoveXMLNode revPutIntoXMLNode revRollBackDatabase revSetDatabaseDriverPath revSetXMLAttribute revXMLRPC_AddParam revXMLRPC_DeleteAllDocuments revXMLAddDTD revXMLRPC_Free revXMLRPC_FreeAll revXMLRPC_DeleteDocument revXMLRPC_DeleteParam revXMLRPC_SetHost revXMLRPC_SetMethod revXMLRPC_SetPort revXMLRPC_SetProtocol revXMLRPC_SetSocket revZipAddItemWithData revZipAddItemWithFile revZipAddUncompressedItemWithData revZipAddUncompressedItemWithFile revZipCancel revZipCloseArchive revZipDeleteItem revZipExtractItemToFile revZipExtractItemToVariable revZipSetProgressCallback revZipRenameItem revZipReplaceItemWithData revZipReplaceItemWithFile revZipOpenArchive send set sort split start stop subtract union unload wait write\"},c:[r,{cN:\"keyword\",b:\"\\\\bend\\\\sif\\\\b\"},{cN:\"function\",bK:\"function\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"function\",b:\"\\\\bend\\\\s+\",e:\"$\",k:\"end\",c:[o,a]},{cN:\"command\",bK:\"command on\",e:\"$\",c:[r,o,e.ASM,e.QSM,e.BNM,e.CNM,a]},{cN:\"preprocessor\",v:[{b:\"<\\\\?(rev|lc|livecode)\",r:10},{b:\"<\\\\?\"},{b:\"\\\\?>\"}]},e.ASM,e.QSM,e.BNM,e.CNM,a].concat(t),i:\";$|^\\\\[|^=\"}});hljs.registerLanguage(\"smalltalk\",function(a){var r=\"[a-z][a-zA-Z0-9_]*\",s={cN:\"char\",b:\"\\\\$.{1}\"},c={cN:\"symbol\",b:\"#\"+a.UIR};return{aliases:[\"st\"],k:\"self super nil true false thisContext\",c:[a.C('\"','\"'),a.ASM,{cN:\"class\",b:\"\\\\b[A-Z][A-Za-z0-9_]*\",r:0},{cN:\"method\",b:r+\":\",r:0},a.CNM,c,s,{cN:\"localvars\",b:\"\\\\|[ ]*\"+r+\"([ ]+\"+r+\")*[ ]*\\\\|\",rB:!0,e:/\\|/,i:/\\S/,c:[{b:\"(\\\\|[ ]*)?\"+r}]},{cN:\"array\",b:\"\\\\#\\\\(\",e:\"\\\\)\",c:[a.ASM,s,a.CNM,c]}]}});hljs.registerLanguage(\"rust\",function(e){var t=\"([uif](8|16|32|64|size))?\",r=e.inherit(e.CBCM);return r.c.push(\"self\"),{aliases:[\"rs\"],k:{keyword:\"alignof as be box break const continue crate do else enum extern false fn for if impl in let loop match mod mut offsetof once priv proc pub pure ref return self Self sizeof static struct super trait true type typeof unsafe unsized use virtual while where yield int i8 i16 i32 i64 uint u8 u32 u64 float f32 f64 str char bool\",built_in:\"Copy Send Sized Sync Drop Fn FnMut FnOnce drop Box ToOwned Clone PartialEq PartialOrd Eq Ord AsRef AsMut Into From Default Iterator Extend IntoIterator DoubleEndedIterator ExactSizeIterator Option Some None Result Ok Err SliceConcatExt String ToString Vec assert! assert_eq! bitflags! bytes! cfg! col! concat! concat_idents! debug_assert! debug_assert_eq! env! panic! file! format! format_args! include_bin! include_str! line! local_data_key! module_path! option_env! print! println! select! stringify! try! unimplemented! unreachable! vec! write! writeln!\"},l:e.IR+\"!?\",i:\"</\",c:[e.CLCM,r,e.inherit(e.QSM,{i:null}),{cN:\"string\",v:[{b:/r(#*)\".*?\"\\1(?!#)/},{b:/'\\\\?(x\\w{2}|u\\w{4}|U\\w{8}|.)'/},{b:/'[a-zA-Z_][a-zA-Z0-9_]*/}]},{cN:\"number\",v:[{b:\"\\\\b0b([01_]+)\"+t},{b:\"\\\\b0o([0-7_]+)\"+t},{b:\"\\\\b0x([A-Fa-f0-9_]+)\"+t},{b:\"\\\\b(\\\\d[\\\\d_]*(\\\\.[0-9_]+)?([eE][+-]?[0-9_]+)?)\"+t}],r:0},{cN:\"function\",bK:\"fn\",e:\"(\\\\(|<)\",eE:!0,c:[e.UTM]},{cN:\"preprocessor\",b:\"#\\\\!?\\\\[\",e:\"\\\\]\"},{bK:\"type\",e:\"(=|<)\",c:[e.UTM],i:\"\\\\S\"},{bK:\"trait enum\",e:\"{\",c:[e.inherit(e.UTM,{endsParent:!0})],i:\"[\\\\w\\\\d]\"},{b:e.IR+\"::\"},{b:\"->\"}]}});hljs.registerLanguage(\"fix\",function(u){return{c:[{b:/[^\\u2401\\u0001]+/,e:/[\\u2401\\u0001]/,eE:!0,rB:!0,rE:!1,c:[{b:/([^\\u2401\\u0001=]+)/,e:/=([^\\u2401\\u0001=]+)/,rE:!0,rB:!1,cN:\"attribute\"},{b:/=/,e:/([\\u2401\\u0001])/,eE:!0,eB:!0,cN:\"string\"}]}],cI:!0}});hljs.registerLanguage(\"gradle\",function(e){return{cI:!0,k:{keyword:\"task project allprojects subprojects artifacts buildscript configurations dependencies repositories sourceSets description delete from into include exclude source classpath destinationDir includes options sourceCompatibility targetCompatibility group flatDir doLast doFirst flatten todir fromdir ant def abstract break case catch continue default do else extends final finally for if implements instanceof native new private protected public return static switch synchronized throw throws transient try volatile while strictfp package import false null super this true antlrtask checkstyle codenarc copy boolean byte char class double float int interface long short void compile runTime file fileTree abs any append asList asWritable call collect compareTo count div dump each eachByte eachFile eachLine every find findAll flatten getAt getErr getIn getOut getText grep immutable inject inspect intersect invokeMethods isCase join leftShift minus multiply newInputStream newOutputStream newPrintWriter newReader newWriter next plus pop power previous print println push putAt read readBytes readLines reverse reverseEach round size sort splitEachLine step subMap times toInteger toList tokenize upto waitForOrKill withPrintWriter withReader withStream withWriter withWriterAppend write writeLine\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.NM,e.RM]}});hljs.registerLanguage(\"xl\",function(e){var t=\"ObjectLoader Animate MovieCredits Slides Filters Shading Materials LensFlare Mapping VLCAudioVideo StereoDecoder PointCloud NetworkAccess RemoteControl RegExp ChromaKey Snowfall NodeJS Speech Charts\",o={keyword:\"if then else do while until for loop import with is as where when by data constant\",literal:\"true false nil\",type:\"integer real text name boolean symbol infix prefix postfix block tree\",built_in:\"in mod rem and or xor not abs sign floor ceil sqrt sin cos tan asin acos atan exp expm1 log log2 log10 log1p pi at\",module:t,id:\"text_length text_range text_find text_replace contains page slide basic_slide title_slide title subtitle fade_in fade_out fade_at clear_color color line_color line_width texture_wrap texture_transform texture scale_?x scale_?y scale_?z? translate_?x translate_?y translate_?z? rotate_?x rotate_?y rotate_?z? rectangle circle ellipse sphere path line_to move_to quad_to curve_to theme background contents locally time mouse_?x mouse_?y mouse_buttons\"},a={cN:\"constant\",b:\"[A-Z][A-Z_0-9]+\",r:0},r={cN:\"variable\",b:\"([A-Z][a-z_0-9]+)+\",r:0},i={cN:\"id\",b:\"[a-z][a-z_0-9]+\",r:0},l={cN:\"string\",b:'\"',e:'\"',i:\"\\\\n\"},n={cN:\"string\",b:\"'\",e:\"'\",i:\"\\\\n\"},s={cN:\"string\",b:\"<<\",e:\">>\"},c={cN:\"number\",b:\"[0-9]+#[0-9A-Z_]+(\\\\.[0-9-A-Z_]+)?#?([Ee][+-]?[0-9]+)?\",r:10},_={cN:\"import\",bK:\"import\",e:\"$\",k:{keyword:\"import\",module:t},r:0,c:[l]},d={cN:\"function\",b:\"[a-z].*->\"};return{aliases:[\"tao\"],l:/[a-zA-Z][a-zA-Z0-9_?]*/,k:o,c:[e.CLCM,e.CBCM,l,n,s,d,_,a,r,i,c,e.NM]}});hljs.registerLanguage(\"ocaml\",function(e){return{aliases:[\"ml\"],k:{keyword:\"and as assert asr begin class constraint do done downto else end exception external for fun function functor if in include inherit! inherit initializer land lazy let lor lsl lsr lxor match method!|10 method mod module mutable new object of open! open or private rec sig struct then to try type val! val virtual when while with parser value\",built_in:\"array bool bytes char exn|5 float int int32 int64 list lazy_t|5 nativeint|5 string unit in_channel out_channel ref\",literal:\"true false\"},i:/\\/\\/|>>/,l:\"[a-z_]\\\\w*!?\",c:[{cN:\"literal\",b:\"\\\\[(\\\\|\\\\|)?\\\\]|\\\\(\\\\)\",r:0},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\",{c:[\"self\"]}),{cN:\"symbol\",b:\"'[A-Za-z_](?!')[\\\\w']*\"},{cN:\"tag\",b:\"`[A-Z][\\\\w']*\"},{cN:\"type\",b:\"\\\\b[A-Z][\\\\w']*\",r:0},{b:\"[a-z_]\\\\w*'[\\\\w']*\"},e.inherit(e.ASM,{cN:\"char\",r:0}),e.inherit(e.QSM,{i:null}),{cN:\"number\",b:\"\\\\b(0[xX][a-fA-F0-9_]+[Lln]?|0[oO][0-7_]+[Lln]?|0[bB][01_]+[Lln]?|[0-9][0-9_]*([Lln]|(\\\\.[0-9_]*)?([eE][-+]?[0-9_]+)?)?)\",r:0},{b:/[-=]>/}]}});hljs.registerLanguage(\"scheme\",function(e){var t=\"[^\\\\(\\\\)\\\\[\\\\]\\\\{\\\\}\\\",'`;#|\\\\\\\\\\\\s]+\",r=\"(\\\\-|\\\\+)?\\\\d+([./]\\\\d+)?\",i=r+\"[+\\\\-]\"+r+\"i\",a={built_in:\"case-lambda call/cc class define-class exit-handler field import inherit init-field interface let*-values let-values let/ec mixin opt-lambda override protect provide public rename require require-for-syntax syntax syntax-case syntax-error unit/sig unless when with-syntax and begin call-with-current-continuation call-with-input-file call-with-output-file case cond define define-syntax delay do dynamic-wind else for-each if lambda let let* let-syntax letrec letrec-syntax map or syntax-rules ' * + , ,@ - ... / ; < <= = => > >= ` abs acos angle append apply asin assoc assq assv atan boolean? caar cadr call-with-input-file call-with-output-file call-with-values car cdddar cddddr cdr ceiling char->integer char-alphabetic? char-ci<=? char-ci<? char-ci=? char-ci>=? char-ci>? char-downcase char-lower-case? char-numeric? char-ready? char-upcase char-upper-case? char-whitespace? char<=? char<? char=? char>=? char>? char? close-input-port close-output-port complex? cons cos current-input-port current-output-port denominator display eof-object? eq? equal? eqv? eval even? exact->inexact exact? exp expt floor force gcd imag-part inexact->exact inexact? input-port? integer->char integer? interaction-environment lcm length list list->string list->vector list-ref list-tail list? load log magnitude make-polar make-rectangular make-string make-vector max member memq memv min modulo negative? newline not null-environment null? number->string number? numerator odd? open-input-file open-output-file output-port? pair? peek-char port? positive? procedure? quasiquote quote quotient rational? rationalize read read-char real-part real? remainder reverse round scheme-report-environment set! set-car! set-cdr! sin sqrt string string->list string->number string->symbol string-append string-ci<=? string-ci<? string-ci=? string-ci>=? string-ci>? string-copy string-fill! string-length string-ref string-set! string<=? string<? string=? string>=? string>? string? substring symbol->string symbol? tan transcript-off transcript-on truncate values vector vector->list vector-fill! vector-length vector-ref vector-set! with-input-from-file with-output-to-file write write-char zero?\"},n={cN:\"shebang\",b:\"^#!\",e:\"$\"},c={cN:\"literal\",b:\"(#t|#f|#\\\\\\\\\"+t+\"|#\\\\\\\\.)\"},l={cN:\"number\",v:[{b:r,r:0},{b:i,r:0},{b:\"#b[0-1]+(/[0-1]+)?\"},{b:\"#o[0-7]+(/[0-7]+)?\"},{b:\"#x[0-9a-f]+(/[0-9a-f]+)?\"}]},s=e.QSM,o=[e.C(\";\",\"$\",{r:0}),e.C(\"#\\\\|\",\"\\\\|#\")],u={b:t,r:0},p={cN:\"variable\",b:\"'\"+t},d={eW:!0,r:0},g={cN:\"list\",v:[{b:\"\\\\(\",e:\"\\\\)\"},{b:\"\\\\[\",e:\"\\\\]\"}],c:[{cN:\"keyword\",b:t,l:t,k:a},d]};return d.c=[c,l,s,u,p,g].concat(o),{i:/\\S/,c:[n,l,s,p,g].concat(o)}});hljs.registerLanguage(\"http\",function(t){return{aliases:[\"https\"],i:\"\\\\S\",c:[{cN:\"status\",b:\"^HTTP/[0-9\\\\.]+\",e:\"$\",c:[{cN:\"number\",b:\"\\\\b\\\\d{3}\\\\b\"}]},{cN:\"request\",b:\"^[A-Z]+ (.*?) HTTP/[0-9\\\\.]+$\",rB:!0,e:\"$\",c:[{cN:\"string\",b:\" \",e:\" \",eB:!0,eE:!0}]},{cN:\"attribute\",b:\"^\\\\w\",e:\": \",eE:!0,i:\"\\\\n|\\\\s|=\",starts:{cN:\"string\",e:\"$\"}},{b:\"\\\\n\\\\n\",starts:{sL:[],eW:!0}}]}});hljs.registerLanguage(\"verilog\",function(e){return{aliases:[\"v\"],cI:!0,k:{keyword:\"always and assign begin buf bufif0 bufif1 case casex casez cmos deassign default defparam disable edge else end endcase endfunction endmodule endprimitive endspecify endtable endtask event for force forever fork function if ifnone initial inout input join macromodule module nand negedge nmos nor not notif0 notif1 or output parameter pmos posedge primitive pulldown pullup rcmos release repeat rnmos rpmos rtran rtranif0 rtranif1 specify specparam table task timescale tran tranif0 tranif1 wait while xnor xor\",typename:\"highz0 highz1 integer large medium pull0 pull1 real realtime reg scalared signed small strong0 strong1 supply0 supply0 supply1 supply1 time tri tri0 tri1 triand trior trireg vectored wand weak0 weak1 wire wor\"},c:[e.CBCM,e.CLCM,e.QSM,{cN:\"number\",b:\"\\\\b(\\\\d+'(b|h|o|d|B|H|O|D))?[0-9xzXZ]+\",c:[e.BE],r:0},{cN:\"typename\",b:\"\\\\.\\\\w+\",r:0},{cN:\"value\",b:\"#\\\\((?!parameter).+\\\\)\"},{cN:\"keyword\",b:\"\\\\+|-|\\\\*|/|%|<|>|=|#|`|\\\\!|&|\\\\||@|:|\\\\^|~|\\\\{|\\\\}\",r:0}]}});hljs.registerLanguage(\"actionscript\",function(e){var a=\"[a-zA-Z_$][a-zA-Z0-9_$]*\",c=\"([*]|[a-zA-Z_$][a-zA-Z0-9_$]*)\",t={cN:\"rest_arg\",b:\"[.]{3}\",e:a,r:10};return{aliases:[\"as\"],k:{keyword:\"as break case catch class const continue default delete do dynamic each else extends final finally for function get if implements import in include instanceof interface internal is namespace native new override package private protected public return set static super switch this throw try typeof use var void while with\",literal:\"true false null undefined\"},c:[e.ASM,e.QSM,e.CLCM,e.CBCM,e.CNM,{cN:\"package\",bK:\"package\",e:\"{\",c:[e.TM]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,c:[{bK:\"extends implements\"},e.TM]},{cN:\"preprocessor\",bK:\"import include\",e:\";\"},{cN:\"function\",bK:\"function\",e:\"[{;]\",eE:!0,i:\"\\\\S\",c:[e.TM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[e.ASM,e.QSM,e.CLCM,e.CBCM,t]},{cN:\"type\",b:\":\",e:c,r:10}]}],i:/#/}});hljs.registerLanguage(\"zephir\",function(e){var i={cN:\"string\",c:[e.BE],v:[{b:'b\"',e:'\"'},{b:\"b'\",e:\"'\"},e.inherit(e.ASM,{i:null}),e.inherit(e.QSM,{i:null})]},n={v:[e.BNM,e.CNM]};return{aliases:[\"zep\"],cI:!0,k:\"and include_once list abstract global private echo interface as static endswitch array null if endwhile or const for endforeach self var let while isset public protected exit foreach throw elseif include __FILE__ empty require_once do xor return parent clone use __CLASS__ __LINE__ else break print eval new catch __METHOD__ case exception default die require __FUNCTION__ enddeclare final try switch continue endfor endif declare unset true false trait goto instanceof insteadof __DIR__ __NAMESPACE__ yield finally int uint long ulong char uchar double float bool boolean stringlikely unlikely\",c:[e.CLCM,e.HCM,e.C(\"/\\\\*\",\"\\\\*/\",{c:[{cN:\"doctag\",b:\"@[A-Za-z]+\"}]}),e.C(\"__halt_compiler.+?;\",!1,{eW:!0,k:\"__halt_compiler\",l:e.UIR}),{cN:\"string\",b:\"<<<['\\\"]?\\\\w+['\\\"]?$\",e:\"^\\\\w+;\",c:[e.BE]},{b:/(::|->)+[a-zA-Z_\\x7f-\\xff][a-zA-Z0-9_\\x7f-\\xff]*/},{cN:\"function\",bK:\"function\",e:/[;{]/,eE:!0,i:\"\\\\$|\\\\[|%\",c:[e.UTM,{cN:\"params\",b:\"\\\\(\",e:\"\\\\)\",c:[\"self\",e.CBCM,i,n]}]},{cN:\"class\",bK:\"class interface\",e:\"{\",eE:!0,i:/[:\\(\\$\"]/,c:[{bK:\"extends implements\"},e.UTM]},{bK:\"namespace\",e:\";\",i:/[\\.']/,c:[e.UTM]},{bK:\"use\",e:\";\",c:[e.UTM]},{b:\"=>\"},i,n]}});hljs.registerLanguage(\"json\",function(e){var t={literal:\"true false null\"},i=[e.QSM,e.CNM],l={cN:\"value\",e:\",\",eW:!0,eE:!0,c:i,k:t},c={b:\"{\",e:\"}\",c:[{cN:\"attribute\",b:'\\\\s*\"',e:'\"\\\\s*:\\\\s*',eB:!0,eE:!0,c:[e.BE],i:\"\\\\n\",starts:l}],i:\"\\\\S\"},n={b:\"\\\\[\",e:\"\\\\]\",c:[e.inherit(l,{cN:null})],i:\"\\\\S\"};return i.splice(i.length,0,c,n),{c:i,k:t,i:\"\\\\S\"}});hljs.registerLanguage(\"q\",function(e){var s={keyword:\"do while select delete by update from\",constant:\"0b 1b\",built_in:\"neg not null string reciprocal floor ceiling signum mod xbar xlog and or each scan over prior mmu lsq inv md5 ltime gtime count first var dev med cov cor all any rand sums prds mins maxs fills deltas ratios avgs differ prev next rank reverse iasc idesc asc desc msum mcount mavg mdev xrank mmin mmax xprev rotate distinct group where flip type key til get value attr cut set upsert raze union inter except cross sv vs sublist enlist read0 read1 hopen hclose hdel hsym hcount peach system ltrim rtrim trim lower upper ssr view tables views cols xcols keys xkey xcol xasc xdesc fkeys meta lj aj aj0 ij pj asof uj ww wj wj1 fby xgroup ungroup ej save load rsave rload show csv parse eval min max avg wavg wsum sin cos tan sum\",typename:\"`float `double int `timestamp `timespan `datetime `time `boolean `symbol `char `byte `short `long `real `month `date `minute `second `guid\"};return{aliases:[\"k\",\"kdb\"],k:s,l:/\\b(`?)[A-Za-z0-9_]+\\b/,c:[e.CLCM,e.QSM,e.CNM]}});hljs.registerLanguage(\"processing\",function(e){return{k:{keyword:\"BufferedReader PVector PFont PImage PGraphics HashMap boolean byte char color double float int long String Array FloatDict FloatList IntDict IntList JSONArray JSONObject Object StringDict StringList Table TableRow XML false synchronized int abstract float private char boolean static null if const for true while long throw strictfp finally protected import native final return void enum else break transient new catch instanceof byte super volatile case assert short package default double public try this switch continue throws protected public private\",constant:\"P2D P3D HALF_PI PI QUARTER_PI TAU TWO_PI\",variable:\"displayHeight displayWidth mouseY mouseX mousePressed pmouseX pmouseY key keyCode pixels focused frameCount frameRate height width\",title:\"setup draw\",built_in:\"size createGraphics beginDraw createShape loadShape PShape arc ellipse line point quad rect triangle bezier bezierDetail bezierPoint bezierTangent curve curveDetail curvePoint curveTangent curveTightness shape shapeMode beginContour beginShape bezierVertex curveVertex endContour endShape quadraticVertex vertex ellipseMode noSmooth rectMode smooth strokeCap strokeJoin strokeWeight mouseClicked mouseDragged mouseMoved mousePressed mouseReleased mouseWheel keyPressed keyPressedkeyReleased keyTyped print println save saveFrame day hour millis minute month second year background clear colorMode fill noFill noStroke stroke alpha blue brightness color green hue lerpColor red saturation modelX modelY modelZ screenX screenY screenZ ambient emissive shininess specular add createImage beginCamera camera endCamera frustum ortho perspective printCamera printProjection cursor frameRate noCursor exit loop noLoop popStyle pushStyle redraw binary boolean byte char float hex int str unbinary unhex join match matchAll nf nfc nfp nfs split splitTokens trim append arrayCopy concat expand reverse shorten sort splice subset box sphere sphereDetail createInput createReader loadBytes loadJSONArray loadJSONObject loadStrings loadTable loadXML open parseXML saveTable selectFolder selectInput beginRaw beginRecord createOutput createWriter endRaw endRecord PrintWritersaveBytes saveJSONArray saveJSONObject saveStream saveStrings saveXML selectOutput popMatrix printMatrix pushMatrix resetMatrix rotate rotateX rotateY rotateZ scale shearX shearY translate ambientLight directionalLight lightFalloff lights lightSpecular noLights normal pointLight spotLight image imageMode loadImage noTint requestImage tint texture textureMode textureWrap blend copy filter get loadPixels set updatePixels blendMode loadShader PShaderresetShader shader createFont loadFont text textFont textAlign textLeading textMode textSize textWidth textAscent textDescent abs ceil constrain dist exp floor lerp log mag map max min norm pow round sq sqrt acos asin atan atan2 cos degrees radians sin tan noise noiseDetail noiseSeed random randomGaussian randomSeed\"},c:[e.CLCM,e.CBCM,e.ASM,e.QSM,e.CNM]}});hljs.registerLanguage(\"d\",function(e){var r={keyword:\"abstract alias align asm assert auto body break byte case cast catch class const continue debug default delete deprecated do else enum export extern final finally for foreach foreach_reverse|10 goto if immutable import in inout int interface invariant is lazy macro mixin module new nothrow out override package pragma private protected public pure ref return scope shared static struct super switch synchronized template this throw try typedef typeid typeof union unittest version void volatile while with __FILE__ __LINE__ __gshared|10 __thread __traits __DATE__ __EOF__ __TIME__ __TIMESTAMP__ __VENDOR__ __VERSION__\",built_in:\"bool cdouble cent cfloat char creal dchar delegate double dstring float function idouble ifloat ireal long real short string ubyte ucent uint ulong ushort wchar wstring\",literal:\"false null true\"},t=\"(0|[1-9][\\\\d_]*)\",a=\"(0|[1-9][\\\\d_]*|\\\\d[\\\\d_]*|[\\\\d_]+?\\\\d)\",i=\"0[bB][01_]+\",n=\"([\\\\da-fA-F][\\\\da-fA-F_]*|_[\\\\da-fA-F][\\\\da-fA-F_]*)\",c=\"0[xX]\"+n,_=\"([eE][+-]?\"+a+\")\",d=\"(\"+a+\"(\\\\.\\\\d*|\"+_+\")|\\\\d+\\\\.\"+a+a+\"|\\\\.\"+t+_+\"?)\",o=\"(0[xX](\"+n+\"\\\\.\"+n+\"|\\\\.?\"+n+\")[pP][+-]?\"+a+\")\",s=\"(\"+t+\"|\"+i+\"|\"+c+\")\",l=\"(\"+o+\"|\"+d+\")\",u=\"\\\\\\\\(['\\\"\\\\?\\\\\\\\abfnrtv]|u[\\\\dA-Fa-f]{4}|[0-7]{1,3}|x[\\\\dA-Fa-f]{2}|U[\\\\dA-Fa-f]{8})|&[a-zA-Z\\\\d]{2,};\",b={cN:\"number\",b:\"\\\\b\"+s+\"(L|u|U|Lu|LU|uL|UL)?\",r:0},f={cN:\"number\",b:\"\\\\b(\"+l+\"([fF]|L|i|[fF]i|Li)?|\"+s+\"(i|[fF]i|Li))\",r:0},g={cN:\"string\",b:\"'(\"+u+\"|.)\",e:\"'\",i:\".\"},h={b:u,r:0},p={cN:\"string\",b:'\"',c:[h],e:'\"[cwd]?'},w={cN:\"string\",b:'[rq]\"',e:'\"[cwd]?',r:5},N={cN:\"string\",b:\"`\",e:\"`[cwd]?\"},A={cN:\"string\",b:'x\"[\\\\da-fA-F\\\\s\\\\n\\\\r]*\"[cwd]?',r:10},F={cN:\"string\",b:'q\"\\\\{',e:'\\\\}\"'},m={cN:\"shebang\",b:\"^#!\",e:\"$\",r:5},y={cN:\"preprocessor\",b:\"#(line)\",e:\"$\",r:5},L={cN:\"keyword\",b:\"@[a-zA-Z_][a-zA-Z_\\\\d]*\"},v=e.C(\"\\\\/\\\\+\",\"\\\\+\\\\/\",{c:[\"self\"],r:10});return{l:e.UIR,k:r,c:[e.CLCM,e.CBCM,v,A,p,w,N,F,f,b,g,m,y,L]}});hljs.registerLanguage(\"asciidoc\",function(e){return{aliases:[\"adoc\"],c:[e.C(\"^/{4,}\\\\n\",\"\\\\n/{4,}$\",{r:10}),e.C(\"^//\",\"$\",{r:0}),{cN:\"title\",b:\"^\\\\.\\\\w.*$\"},{b:\"^[=\\\\*]{4,}\\\\n\",e:\"\\\\n^[=\\\\*]{4,}$\",r:10},{cN:\"header\",b:\"^(={1,5}) .+?( \\\\1)?$\",r:10},{cN:\"header\",b:\"^[^\\\\[\\\\]\\\\n]+?\\\\n[=\\\\-~\\\\^\\\\+]{2,}$\",r:10},{cN:\"attribute\",b:\"^:.+?:\",e:\"\\\\s\",eE:!0,r:10},{cN:\"attribute\",b:\"^\\\\[.+?\\\\]$\",r:0},{cN:\"blockquote\",b:\"^_{4,}\\\\n\",e:\"\\\\n_{4,}$\",r:10},{cN:\"code\",b:\"^[\\\\-\\\\.]{4,}\\\\n\",e:\"\\\\n[\\\\-\\\\.]{4,}$\",r:10},{b:\"^\\\\+{4,}\\\\n\",e:\"\\\\n\\\\+{4,}$\",c:[{b:\"<\",e:\">\",sL:\"xml\",r:0}],r:10},{cN:\"bullet\",b:\"^(\\\\*+|\\\\-+|\\\\.+|[^\\\\n]+?::)\\\\s+\"},{cN:\"label\",b:\"^(NOTE|TIP|IMPORTANT|WARNING|CAUTION):\\\\s+\",r:10},{cN:\"strong\",b:\"\\\\B\\\\*(?![\\\\*\\\\s])\",e:\"(\\\\n{2}|\\\\*)\",c:[{b:\"\\\\\\\\*\\\\w\",r:0}]},{cN:\"emphasis\",b:\"\\\\B'(?!['\\\\s])\",e:\"(\\\\n{2}|')\",c:[{b:\"\\\\\\\\'\\\\w\",r:0}],r:0},{cN:\"emphasis\",b:\"_(?![_\\\\s])\",e:\"(\\\\n{2}|_)\",r:0},{cN:\"smartquote\",v:[{b:\"``.+?''\"},{b:\"`.+?'\"}]},{cN:\"code\",b:\"(`.+?`|\\\\+.+?\\\\+)\",r:0},{cN:\"code\",b:\"^[ \\\\t]\",e:\"$\",r:0},{cN:\"horizontal_rule\",b:\"^'{3,}[ \\\\t]*$\",r:10},{b:\"(link:)?(http|https|ftp|file|irc|image:?):\\\\S+\\\\[.*?\\\\]\",rB:!0,c:[{b:\"(link|image:?):\",r:0},{cN:\"link_url\",b:\"\\\\w\",e:\"[^\\\\[]+\",r:0},{cN:\"link_label\",b:\"\\\\[\",e:\"\\\\]\",eB:!0,eE:!0,r:0}],r:10}]}});hljs.registerLanguage(\"rsl\",function(e){return{k:{keyword:\"float color point normal vector matrix while for if do return else break extern continue\",built_in:\"abs acos ambient area asin atan atmosphere attribute calculatenormal ceil cellnoise clamp comp concat cos degrees depth Deriv diffuse distance Du Dv environment exp faceforward filterstep floor format fresnel incident length lightsource log match max min mod noise normalize ntransform opposite option phong pnoise pow printf ptlined radians random reflect refract renderinfo round setcomp setxcomp setycomp setzcomp shadow sign sin smoothstep specular specularbrdf spline sqrt step tan texture textureinfo trace transform vtransform xcomp ycomp zcomp\"},i:\"</\",c:[e.CLCM,e.CBCM,e.QSM,e.ASM,e.CNM,{cN:\"preprocessor\",b:\"#\",e:\"$\"},{cN:\"shader\",bK:\"surface displacement light volume imager\",e:\"\\\\(\"},{cN:\"shading\",bK:\"illuminate illuminance gather\",e:\"\\\\(\"}]}});hljs.registerLanguage(\"fsharp\",function(e){var t={b:\"<\",e:\">\",c:[e.inherit(e.TM,{b:/'[a-zA-Z0-9_]+/})]};return{aliases:[\"fs\"],k:\"abstract and as assert base begin class default delegate do done downcast downto elif else end exception extern false finally for fun function global if in inherit inline interface internal lazy let match member module mutable namespace new null of open or override private public rec return sig static struct then to true try type upcast use val void when while with yield\",i:/\\/\\*/,c:[{cN:\"keyword\",b:/\\b(yield|return|let|do)!/},{cN:\"string\",b:'@\"',e:'\"',c:[{b:'\"\"'}]},{cN:\"string\",b:'\"\"\"',e:'\"\"\"'},e.C(\"\\\\(\\\\*\",\"\\\\*\\\\)\"),{cN:\"class\",bK:\"type\",e:\"\\\\(|=|$\",eE:!0,c:[e.UTM,t]},{cN:\"annotation\",b:\"\\\\[<\",e:\">\\\\]\",r:10},{cN:\"attribute\",b:\"\\\\B('[A-Za-z])\\\\b\",c:[e.BE]},e.CLCM,e.inherit(e.QSM,{i:null}),e.CNM]}});"
  },
  {
    "path": "talk/reveal.js/plugin/markdown/example.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Markdown Demo</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\n        <link rel=\"stylesheet\" href=\"../../lib/css/zenburn.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n                <!-- Use external markdown resource, separate slides by three newlines; vertical slides by two newlines -->\n                <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section>\n\n                <!-- Slides are separated by three dashes (quick 'n dirty regular expression) -->\n                <section data-markdown data-separator=\"---\">\n                    <script type=\"text/template\">\n                        ## Demo 1\n                        Slide 1\n                        ---\n                        ## Demo 1\n                        Slide 2\n                        ---\n                        ## Demo 1\n                        Slide 3\n                    </script>\n                </section>\n\n                <!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n                <section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n                    <script type=\"text/template\">\n                        ## Demo 2\n                        Slide 1.1\n\n                        --\n\n                        ## Demo 2\n                        Slide 1.2\n\n                        ---\n\n                        ## Demo 2\n                        Slide 2\n                    </script>\n                </section>\n\n                <!-- No \"extra\" slides, since there are no separators defined (so they'll become horizontal rulers) -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        A\n\n                        ---\n\n                        B\n\n                        ---\n\n                        C\n                    </script>\n                </section>\n\n                <!-- Slide attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        <!-- .slide: data-background=\"#000000\" -->\n                        ## Slide attributes\n                    </script>\n                </section>\n\n                <!-- Element attributes -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ## Element attributes\n                        - Item 1 <!-- .element: class=\"fragment\" data-fragment-index=\"2\" -->\n                        - Item 2 <!-- .element: class=\"fragment\" data-fragment-index=\"1\" -->\n                    </script>\n                </section>\n\n                <!-- Code -->\n                <section data-markdown>\n                    <script type=\"text/template\">\n                        ```php\n                        public function foo()\n                        {\n                            $foo = array(\n                                'bar' => 'bar'\n                            )\n                        }\n                        ```\n                    </script>\n                </section>\n\n            </div>\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcontrols: true,\n\t\t\t\tprogress: true,\n\t\t\t\thistory: true,\n\t\t\t\tcenter: true,\n\n\t\t\t\t// Optional libraries used to extend on reveal.js\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js', condition: function() { return !document.body.classList; } },\n\t\t\t\t\t{ src: 'marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: 'markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },\n                    { src: '../highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },\n\t\t\t\t\t{ src: '../notes/notes.js' }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/plugin/markdown/example.md",
    "content": "# Markdown Demo\n\n\n\n## External 1.1\n\nContent 1.1\n\nNote: This will only appear in the speaker notes window.\n\n\n## External 1.2\n\nContent 1.2\n\n\n\n## External 2\n\nContent 2.1\n\n\n\n## External 3.1\n\nContent 3.1\n\n\n## External 3.2\n\nContent 3.2\n"
  },
  {
    "path": "talk/reveal.js/plugin/markdown/markdown.js",
    "content": "/**\n * The reveal.js markdown plugin. Handles parsing of\n * markdown inside of presentations as well as loading\n * of external markdown documents.\n */\n(function( root, factory ) {\n\tif( typeof exports === 'object' ) {\n\t\tmodule.exports = factory( require( './marked' ) );\n\t}\n\telse {\n\t\t// Browser globals (root is window)\n\t\troot.RevealMarkdown = factory( root.marked );\n\t\troot.RevealMarkdown.initialize();\n\t}\n}( this, function( marked ) {\n\n\tif( typeof marked === 'undefined' ) {\n\t\tthrow 'The reveal.js Markdown plugin requires marked to be loaded';\n\t}\n\n\tif( typeof hljs !== 'undefined' ) {\n\t\tmarked.setOptions({\n\t\t\thighlight: function( lang, code ) {\n\t\t\t\treturn hljs.highlightAuto( lang, code ).value;\n\t\t\t}\n\t\t});\n\t}\n\n\tvar DEFAULT_SLIDE_SEPARATOR = '^\\r?\\n---\\r?\\n$',\n\t\tDEFAULT_NOTES_SEPARATOR = 'note:',\n\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR = '\\\\\\.element\\\\\\s*?(.+?)$',\n\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR = '\\\\\\.slide:\\\\\\s*?(\\\\\\S.+?)$';\n\n\tvar SCRIPT_END_PLACEHOLDER = '__SCRIPT_END__';\n\n\n\t/**\n\t * Retrieves the markdown contents of a slide section\n\t * element. Normalizes leading tabs/whitespace.\n\t */\n\tfunction getMarkdownFromSlide( section ) {\n\n\t\tvar template = section.querySelector( 'script' );\n\n\t\t// strip leading whitespace so it isn't evaluated as code\n\t\tvar text = ( template || section ).textContent;\n\n\t\t// restore script end tags\n\t\ttext = text.replace( new RegExp( SCRIPT_END_PLACEHOLDER, 'g' ), '</script>' );\n\n\t\tvar leadingWs = text.match( /^\\n?(\\s*)/ )[1].length,\n\t\t\tleadingTabs = text.match( /^\\n?(\\t*)/ )[1].length;\n\n\t\tif( leadingTabs > 0 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n?\\\\t{' + leadingTabs + '}','g'), '\\n' );\n\t\t}\n\t\telse if( leadingWs > 1 ) {\n\t\t\ttext = text.replace( new RegExp('\\\\n? {' + leadingWs + '}', 'g'), '\\n' );\n\t\t}\n\n\t\treturn text;\n\n\t}\n\n\t/**\n\t * Given a markdown slide section element, this will\n\t * return all arguments that aren't related to markdown\n\t * parsing. Used to forward any other user-defined arguments\n\t * to the output markdown slide.\n\t */\n\tfunction getForwardedAttributes( section ) {\n\n\t\tvar attributes = section.attributes;\n\t\tvar result = [];\n\n\t\tfor( var i = 0, len = attributes.length; i < len; i++ ) {\n\t\t\tvar name = attributes[i].name,\n\t\t\t\tvalue = attributes[i].value;\n\n\t\t\t// disregard attributes that are used for markdown loading/parsing\n\t\t\tif( /data\\-(markdown|separator|vertical|notes)/gi.test( name ) ) continue;\n\n\t\t\tif( value ) {\n\t\t\t\tresult.push( name + '=\"' + value + '\"' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresult.push( name );\n\t\t\t}\n\t\t}\n\n\t\treturn result.join( ' ' );\n\n\t}\n\n\t/**\n\t * Inspects the given options and fills out default\n\t * values for what's not defined.\n\t */\n\tfunction getSlidifyOptions( options ) {\n\n\t\toptions = options || {};\n\t\toptions.separator = options.separator || DEFAULT_SLIDE_SEPARATOR;\n\t\toptions.notesSeparator = options.notesSeparator || DEFAULT_NOTES_SEPARATOR;\n\t\toptions.attributes = options.attributes || '';\n\n\t\treturn options;\n\n\t}\n\n\t/**\n\t * Helper function for constructing a markdown slide.\n\t */\n\tfunction createMarkdownSlide( content, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar notesMatch = content.split( new RegExp( options.notesSeparator, 'mgi' ) );\n\n\t\tif( notesMatch.length === 2 ) {\n\t\t\tcontent = notesMatch[0] + '<aside class=\"notes\" data-markdown>' + notesMatch[1].trim() + '</aside>';\n\t\t}\n\n\t\t// prevent script end tags in the content from interfering\n\t\t// with parsing\n\t\tcontent = content.replace( /<\\/script>/g, SCRIPT_END_PLACEHOLDER );\n\n\t\treturn '<script type=\"text/template\">' + content + '</script>';\n\n\t}\n\n\t/**\n\t * Parses a data string into multiple slides based\n\t * on the passed in separator arguments.\n\t */\n\tfunction slidify( markdown, options ) {\n\n\t\toptions = getSlidifyOptions( options );\n\n\t\tvar separatorRegex = new RegExp( options.separator + ( options.verticalSeparator ? '|' + options.verticalSeparator : '' ), 'mg' ),\n\t\t\thorizontalSeparatorRegex = new RegExp( options.separator );\n\n\t\tvar matches,\n\t\t\tlastIndex = 0,\n\t\t\tisHorizontal,\n\t\t\twasHorizontal = true,\n\t\t\tcontent,\n\t\t\tsectionStack = [];\n\n\t\t// iterate until all blocks between separators are stacked up\n\t\twhile( matches = separatorRegex.exec( markdown ) ) {\n\t\t\tnotes = null;\n\n\t\t\t// determine direction (horizontal by default)\n\t\t\tisHorizontal = horizontalSeparatorRegex.test( matches[0] );\n\n\t\t\tif( !isHorizontal && wasHorizontal ) {\n\t\t\t\t// create vertical stack\n\t\t\t\tsectionStack.push( [] );\n\t\t\t}\n\n\t\t\t// pluck slide content from markdown input\n\t\t\tcontent = markdown.substring( lastIndex, matches.index );\n\n\t\t\tif( isHorizontal && wasHorizontal ) {\n\t\t\t\t// add to horizontal stack\n\t\t\t\tsectionStack.push( content );\n\t\t\t}\n\t\t\telse {\n\t\t\t\t// add to vertical stack\n\t\t\t\tsectionStack[sectionStack.length-1].push( content );\n\t\t\t}\n\n\t\t\tlastIndex = separatorRegex.lastIndex;\n\t\t\twasHorizontal = isHorizontal;\n\t\t}\n\n\t\t// add the remaining slide\n\t\t( wasHorizontal ? sectionStack : sectionStack[sectionStack.length-1] ).push( markdown.substring( lastIndex ) );\n\n\t\tvar markdownSections = '';\n\n\t\t// flatten the hierarchical stack, and insert <section data-markdown> tags\n\t\tfor( var i = 0, len = sectionStack.length; i < len; i++ ) {\n\t\t\t// vertical\n\t\t\tif( sectionStack[i] instanceof Array ) {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +'>';\n\n\t\t\t\tsectionStack[i].forEach( function( child ) {\n\t\t\t\t\tmarkdownSections += '<section data-markdown>' +  createMarkdownSlide( child, options ) + '</section>';\n\t\t\t\t} );\n\n\t\t\t\tmarkdownSections += '</section>';\n\t\t\t}\n\t\t\telse {\n\t\t\t\tmarkdownSections += '<section '+ options.attributes +' data-markdown>' + createMarkdownSlide( sectionStack[i], options ) + '</section>';\n\t\t\t}\n\t\t}\n\n\t\treturn markdownSections;\n\n\t}\n\n\t/**\n\t * Parses any current data-markdown slides, splits\n\t * multi-slide markdown into separate sections and\n\t * handles loading of external markdown.\n\t */\n\tfunction processSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]'),\n\t\t\tsection;\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tsection = sections[i];\n\n\t\t\tif( section.getAttribute( 'data-markdown' ).length ) {\n\n\t\t\t\tvar xhr = new XMLHttpRequest(),\n\t\t\t\t\turl = section.getAttribute( 'data-markdown' );\n\n\t\t\t\tdatacharset = section.getAttribute( 'data-charset' );\n\n\t\t\t\t// see https://developer.mozilla.org/en-US/docs/Web/API/element.getAttribute#Notes\n\t\t\t\tif( datacharset != null && datacharset != '' ) {\n\t\t\t\t\txhr.overrideMimeType( 'text/html; charset=' + datacharset );\n\t\t\t\t}\n\n\t\t\t\txhr.onreadystatechange = function() {\n\t\t\t\t\tif( xhr.readyState === 4 ) {\n\t\t\t\t\t\t// file protocol yields status code 0 (useful for local debug, mobile applications etc.)\n\t\t\t\t\t\tif ( ( xhr.status >= 200 && xhr.status < 300 ) || xhr.status === 0 ) {\n\n\t\t\t\t\t\t\tsection.outerHTML = slidify( xhr.responseText, {\n\t\t\t\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t\t\t\t});\n\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\n\t\t\t\t\t\t\tsection.outerHTML = '<section data-state=\"alert\">' +\n\t\t\t\t\t\t\t\t'ERROR: The attempt to fetch ' + url + ' failed with HTTP status ' + xhr.status + '.' +\n\t\t\t\t\t\t\t\t'Check your browser\\'s JavaScript console for more details.' +\n\t\t\t\t\t\t\t\t'<p>Remember that you need to serve the presentation HTML from a HTTP server.</p>' +\n\t\t\t\t\t\t\t\t'</section>';\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t};\n\n\t\t\t\txhr.open( 'GET', url, false );\n\n\t\t\t\ttry {\n\t\t\t\t\txhr.send();\n\t\t\t\t}\n\t\t\t\tcatch ( e ) {\n\t\t\t\t\talert( 'Failed to get the Markdown file ' + url + '. Make sure that the presentation and the file are served by a HTTP server and the file can be found there. ' + e );\n\t\t\t\t}\n\n\t\t\t}\n\t\t\telse if( section.getAttribute( 'data-separator' ) || section.getAttribute( 'data-separator-vertical' ) || section.getAttribute( 'data-separator-notes' ) ) {\n\n\t\t\t\tsection.outerHTML = slidify( getMarkdownFromSlide( section ), {\n\t\t\t\t\tseparator: section.getAttribute( 'data-separator' ),\n\t\t\t\t\tverticalSeparator: section.getAttribute( 'data-separator-vertical' ),\n\t\t\t\t\tnotesSeparator: section.getAttribute( 'data-separator-notes' ),\n\t\t\t\t\tattributes: getForwardedAttributes( section )\n\t\t\t\t});\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\tsection.innerHTML = createMarkdownSlide( getMarkdownFromSlide( section ) );\n\t\t\t}\n\t\t}\n\n\t}\n\n\t/**\n\t * Check if a node value has the attributes pattern.\n\t * If yes, extract it and add that value as one or several attributes\n\t * the the terget element.\n\t *\n\t * You need Cache Killer on Chrome to see the effect on any FOM transformation\n\t * directly on refresh (F5)\n\t * http://stackoverflow.com/questions/5690269/disabling-chrome-cache-for-website-development/7000899#answer-11786277\n\t */\n\tfunction addAttributeInElement( node, elementTarget, separator ) {\n\n\t\tvar mardownClassesInElementsRegex = new RegExp( separator, 'mg' );\n\t\tvar mardownClassRegex = new RegExp( \"([^\\\"= ]+?)=\\\"([^\\\"=]+?)\\\"\", 'mg' );\n\t\tvar nodeValue = node.nodeValue;\n\t\tif( matches = mardownClassesInElementsRegex.exec( nodeValue ) ) {\n\n\t\t\tvar classes = matches[1];\n\t\t\tnodeValue = nodeValue.substring( 0, matches.index ) + nodeValue.substring( mardownClassesInElementsRegex.lastIndex );\n\t\t\tnode.nodeValue = nodeValue;\n\t\t\twhile( matchesClass = mardownClassRegex.exec( classes ) ) {\n\t\t\t\telementTarget.setAttribute( matchesClass[1], matchesClass[2] );\n\t\t\t}\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}\n\n\t/**\n\t * Add attributes to the parent element of a text node,\n\t * or the element of an attribute node.\n\t */\n\tfunction addAttributes( section, element, previousElement, separatorElementAttributes, separatorSectionAttributes ) {\n\n\t\tif ( element != null && element.childNodes != undefined && element.childNodes.length > 0 ) {\n\t\t\tpreviousParentElement = element;\n\t\t\tfor( var i = 0; i < element.childNodes.length; i++ ) {\n\t\t\t\tchildElement = element.childNodes[i];\n\t\t\t\tif ( i > 0 ) {\n\t\t\t\t\tj = i - 1;\n\t\t\t\t\twhile ( j >= 0 ) {\n\t\t\t\t\t\taPreviousChildElement = element.childNodes[j];\n\t\t\t\t\t\tif ( typeof aPreviousChildElement.setAttribute == 'function' && aPreviousChildElement.tagName != \"BR\" ) {\n\t\t\t\t\t\t\tpreviousParentElement = aPreviousChildElement;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t\tj = j - 1;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tparentSection = section;\n\t\t\t\tif( childElement.nodeName ==  \"section\" ) {\n\t\t\t\t\tparentSection = childElement ;\n\t\t\t\t\tpreviousParentElement = childElement ;\n\t\t\t\t}\n\t\t\t\tif ( typeof childElement.setAttribute == 'function' || childElement.nodeType == Node.COMMENT_NODE ) {\n\t\t\t\t\taddAttributes( parentSection, childElement, previousParentElement, separatorElementAttributes, separatorSectionAttributes );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif ( element.nodeType == Node.COMMENT_NODE ) {\n\t\t\tif ( addAttributeInElement( element, previousElement, separatorElementAttributes ) == false ) {\n\t\t\t\taddAttributeInElement( element, section, separatorSectionAttributes );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Converts any current data-markdown slides in the\n\t * DOM to HTML.\n\t */\n\tfunction convertSlides() {\n\n\t\tvar sections = document.querySelectorAll( '[data-markdown]');\n\n\t\tfor( var i = 0, len = sections.length; i < len; i++ ) {\n\n\t\t\tvar section = sections[i];\n\n\t\t\t// Only parse the same slide once\n\t\t\tif( !section.getAttribute( 'data-markdown-parsed' ) ) {\n\n\t\t\t\tsection.setAttribute( 'data-markdown-parsed', true )\n\n\t\t\t\tvar notes = section.querySelector( 'aside.notes' );\n\t\t\t\tvar markdown = getMarkdownFromSlide( section );\n\n\t\t\t\tsection.innerHTML = marked( markdown );\n\t\t\t\taddAttributes( \tsection, section, null, section.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-element-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_ELEMENT_ATTRIBUTES_SEPARATOR,\n\t\t\t\t\t\t\t\tsection.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tsection.parentNode.getAttribute( 'data-attributes' ) ||\n\t\t\t\t\t\t\t\tDEFAULT_SLIDE_ATTRIBUTES_SEPARATOR);\n\n\t\t\t\t// If there were notes, we need to re-add them after\n\t\t\t\t// having overwritten the section's HTML\n\t\t\t\tif( notes ) {\n\t\t\t\t\tsection.appendChild( notes );\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}\n\n\t}\n\n\t// API\n\treturn {\n\n\t\tinitialize: function() {\n\t\t\tprocessSlides();\n\t\t\tconvertSlides();\n\t\t},\n\n\t\t// TODO: Do these belong in the API?\n\t\tprocessSlides: processSlides,\n\t\tconvertSlides: convertSlides,\n\t\tslidify: slidify\n\n\t};\n\n}));\n"
  },
  {
    "path": "talk/reveal.js/plugin/markdown/marked.js",
    "content": "/**\n * marked - a markdown parser\n * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)\n * https://github.com/chjj/marked\n */\n(function(){function e(e){this.tokens=[],this.tokens.links={},this.options=e||a.defaults,this.rules=p.normal,this.options.gfm&&(this.rules=this.options.tables?p.tables:p.gfm)}function t(e,t){if(this.options=t||a.defaults,this.links=e,this.rules=u.normal,this.renderer=this.options.renderer||new n,this.renderer.options=this.options,!this.links)throw new Error(\"Tokens array requires a `links` property.\");this.options.gfm?this.rules=this.options.breaks?u.breaks:u.gfm:this.options.pedantic&&(this.rules=u.pedantic)}function n(e){this.options=e||{}}function r(e){this.tokens=[],this.token=null,this.options=e||a.defaults,this.options.renderer=this.options.renderer||new n,this.renderer=this.options.renderer,this.renderer.options=this.options}function s(e,t){return e.replace(t?/&/g:/&(?!#?\\w+;)/g,\"&amp;\").replace(/</g,\"&lt;\").replace(/>/g,\"&gt;\").replace(/\"/g,\"&quot;\").replace(/'/g,\"&#39;\")}function i(e){return e.replace(/&([#\\w]+);/g,function(e,t){return t=t.toLowerCase(),\"colon\"===t?\":\":\"#\"===t.charAt(0)?String.fromCharCode(\"x\"===t.charAt(1)?parseInt(t.substring(2),16):+t.substring(1)):\"\"})}function l(e,t){return e=e.source,t=t||\"\",function n(r,s){return r?(s=s.source||s,s=s.replace(/(^|[^\\[])\\^/g,\"$1\"),e=e.replace(r,s),n):new RegExp(e,t)}}function o(){}function h(e){for(var t,n,r=1;r<arguments.length;r++){t=arguments[r];for(n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e}function a(t,n,i){if(i||\"function\"==typeof n){i||(i=n,n=null),n=h({},a.defaults,n||{});var l,o,p=n.highlight,u=0;try{l=e.lex(t,n)}catch(c){return i(c)}o=l.length;var g=function(e){if(e)return n.highlight=p,i(e);var t;try{t=r.parse(l,n)}catch(s){e=s}return n.highlight=p,e?i(e):i(null,t)};if(!p||p.length<3)return g();if(delete n.highlight,!o)return g();for(;u<l.length;u++)!function(e){return\"code\"!==e.type?--o||g():p(e.text,e.lang,function(t,n){return t?g(t):null==n||n===e.text?--o||g():(e.text=n,e.escaped=!0,void(--o||g()))})}(l[u])}else try{return n&&(n=h({},a.defaults,n)),r.parse(e.lex(t,n),n)}catch(c){if(c.message+=\"\\nPlease report this to https://github.com/chjj/marked.\",(n||a.defaults).silent)return\"<p>An error occured:</p><pre>\"+s(c.message+\"\",!0)+\"</pre>\";throw c}}var p={newline:/^\\n+/,code:/^( {4}[^\\n]+\\n*)+/,fences:o,hr:/^( *[-*_]){3,} *(?:\\n+|$)/,heading:/^ *(#{1,6}) *([^\\n]+?) *#* *(?:\\n+|$)/,nptable:o,lheading:/^([^\\n]+)\\n *(=|-){2,} *(?:\\n+|$)/,blockquote:/^( *>[^\\n]+(\\n(?!def)[^\\n]+)*\\n*)+/,list:/^( *)(bull) [\\s\\S]+?(?:hr|def|\\n{2,}(?! )(?!\\1bull )\\n*|\\s*$)/,html:/^ *(?:comment *(?:\\n|\\s*$)|closed *(?:\\n{2,}|\\s*$)|closing *(?:\\n{2,}|\\s*$))/,def:/^ *\\[([^\\]]+)\\]: *<?([^\\s>]+)>?(?: +[\"(]([^\\n]+)[\")])? *(?:\\n+|$)/,table:o,paragraph:/^((?:[^\\n]+\\n?(?!hr|heading|lheading|blockquote|tag|def))+)\\n*/,text:/^[^\\n]+/};p.bullet=/(?:[*+-]|\\d+\\.)/,p.item=/^( *)(bull) [^\\n]*(?:\\n(?!\\1bull )[^\\n]*)*/,p.item=l(p.item,\"gm\")(/bull/g,p.bullet)(),p.list=l(p.list)(/bull/g,p.bullet)(\"hr\",\"\\\\n+(?=\\\\1?(?:[-*_] *){3,}(?:\\\\n+|$))\")(\"def\",\"\\\\n+(?=\"+p.def.source+\")\")(),p.blockquote=l(p.blockquote)(\"def\",p.def)(),p._tag=\"(?!(?:a|em|strong|small|s|cite|q|dfn|abbr|data|time|code|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo|span|br|wbr|ins|del|img)\\\\b)\\\\w+(?!:/|[^\\\\w\\\\s@]*@)\\\\b\",p.html=l(p.html)(\"comment\",/<!--[\\s\\S]*?-->/)(\"closed\",/<(tag)[\\s\\S]+?<\\/\\1>/)(\"closing\",/<tag(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/)(/tag/g,p._tag)(),p.paragraph=l(p.paragraph)(\"hr\",p.hr)(\"heading\",p.heading)(\"lheading\",p.lheading)(\"blockquote\",p.blockquote)(\"tag\",\"<\"+p._tag)(\"def\",p.def)(),p.normal=h({},p),p.gfm=h({},p.normal,{fences:/^ *(`{3,}|~{3,}) *(\\S+)? *\\n([\\s\\S]+?)\\s*\\1 *(?:\\n+|$)/,paragraph:/^/}),p.gfm.paragraph=l(p.paragraph)(\"(?!\",\"(?!\"+p.gfm.fences.source.replace(\"\\\\1\",\"\\\\2\")+\"|\"+p.list.source.replace(\"\\\\1\",\"\\\\3\")+\"|\")(),p.tables=h({},p.gfm,{nptable:/^ *(\\S.*\\|.*)\\n *([-:]+ *\\|[-| :]*)\\n((?:.*\\|.*(?:\\n|$))*)\\n*/,table:/^ *\\|(.+)\\n *\\|( *[-:]+[-| :]*)\\n((?: *\\|.*(?:\\n|$))*)\\n*/}),e.rules=p,e.lex=function(t,n){var r=new e(n);return r.lex(t)},e.prototype.lex=function(e){return e=e.replace(/\\r\\n|\\r/g,\"\\n\").replace(/\\t/g,\"    \").replace(/\\u00a0/g,\" \").replace(/\\u2424/g,\"\\n\"),this.token(e,!0)},e.prototype.token=function(e,t,n){for(var r,s,i,l,o,h,a,u,c,e=e.replace(/^ +$/gm,\"\");e;)if((i=this.rules.newline.exec(e))&&(e=e.substring(i[0].length),i[0].length>1&&this.tokens.push({type:\"space\"})),i=this.rules.code.exec(e))e=e.substring(i[0].length),i=i[0].replace(/^ {4}/gm,\"\"),this.tokens.push({type:\"code\",text:this.options.pedantic?i:i.replace(/\\n+$/,\"\")});else if(i=this.rules.fences.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"code\",lang:i[2],text:i[3]});else if(i=this.rules.heading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:i[1].length,text:i[2]});else if(t&&(i=this.rules.nptable.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].split(/ *\\| */);this.tokens.push(h)}else if(i=this.rules.lheading.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"heading\",depth:\"=\"===i[2]?1:2,text:i[1]});else if(i=this.rules.hr.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"hr\"});else if(i=this.rules.blockquote.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"blockquote_start\"}),i=i[0].replace(/^ *> ?/gm,\"\"),this.token(i,t,!0),this.tokens.push({type:\"blockquote_end\"});else if(i=this.rules.list.exec(e)){for(e=e.substring(i[0].length),l=i[2],this.tokens.push({type:\"list_start\",ordered:l.length>1}),i=i[0].match(this.rules.item),r=!1,c=i.length,u=0;c>u;u++)h=i[u],a=h.length,h=h.replace(/^ *([*+-]|\\d+\\.) +/,\"\"),~h.indexOf(\"\\n \")&&(a-=h.length,h=this.options.pedantic?h.replace(/^ {1,4}/gm,\"\"):h.replace(new RegExp(\"^ {1,\"+a+\"}\",\"gm\"),\"\")),this.options.smartLists&&u!==c-1&&(o=p.bullet.exec(i[u+1])[0],l===o||l.length>1&&o.length>1||(e=i.slice(u+1).join(\"\\n\")+e,u=c-1)),s=r||/\\n\\n(?!\\s*$)/.test(h),u!==c-1&&(r=\"\\n\"===h.charAt(h.length-1),s||(s=r)),this.tokens.push({type:s?\"loose_item_start\":\"list_item_start\"}),this.token(h,!1,n),this.tokens.push({type:\"list_item_end\"});this.tokens.push({type:\"list_end\"})}else if(i=this.rules.html.exec(e))e=e.substring(i[0].length),this.tokens.push({type:this.options.sanitize?\"paragraph\":\"html\",pre:\"pre\"===i[1]||\"script\"===i[1]||\"style\"===i[1],text:i[0]});else if(!n&&t&&(i=this.rules.def.exec(e)))e=e.substring(i[0].length),this.tokens.links[i[1].toLowerCase()]={href:i[2],title:i[3]};else if(t&&(i=this.rules.table.exec(e))){for(e=e.substring(i[0].length),h={type:\"table\",header:i[1].replace(/^ *| *\\| *$/g,\"\").split(/ *\\| */),align:i[2].replace(/^ *|\\| *$/g,\"\").split(/ *\\| */),cells:i[3].replace(/(?: *\\| *)?\\n$/,\"\").split(\"\\n\")},u=0;u<h.align.length;u++)h.align[u]=/^ *-+: *$/.test(h.align[u])?\"right\":/^ *:-+: *$/.test(h.align[u])?\"center\":/^ *:-+ *$/.test(h.align[u])?\"left\":null;for(u=0;u<h.cells.length;u++)h.cells[u]=h.cells[u].replace(/^ *\\| *| *\\| *$/g,\"\").split(/ *\\| */);this.tokens.push(h)}else if(t&&(i=this.rules.paragraph.exec(e)))e=e.substring(i[0].length),this.tokens.push({type:\"paragraph\",text:\"\\n\"===i[1].charAt(i[1].length-1)?i[1].slice(0,-1):i[1]});else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),this.tokens.push({type:\"text\",text:i[0]});else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0));return this.tokens};var u={escape:/^\\\\([\\\\`*{}\\[\\]()#+\\-.!_>])/,autolink:/^<([^ >]+(@|:\\/)[^ >]+)>/,url:o,tag:/^<!--[\\s\\S]*?-->|^<\\/?\\w+(?:\"[^\"]*\"|'[^']*'|[^'\">])*?>/,link:/^!?\\[(inside)\\]\\(href\\)/,reflink:/^!?\\[(inside)\\]\\s*\\[([^\\]]*)\\]/,nolink:/^!?\\[((?:\\[[^\\]]*\\]|[^\\[\\]])*)\\]/,strong:/^__([\\s\\S]+?)__(?!_)|^\\*\\*([\\s\\S]+?)\\*\\*(?!\\*)/,em:/^\\b_((?:__|[\\s\\S])+?)_\\b|^\\*((?:\\*\\*|[\\s\\S])+?)\\*(?!\\*)/,code:/^(`+)\\s*([\\s\\S]*?[^`])\\s*\\1(?!`)/,br:/^ {2,}\\n(?!\\s*$)/,del:o,text:/^[\\s\\S]+?(?=[\\\\<!\\[_*`]| {2,}\\n|$)/};u._inside=/(?:\\[[^\\]]*\\]|[^\\[\\]]|\\](?=[^\\[]*\\]))*/,u._href=/\\s*<?([\\s\\S]*?)>?(?:\\s+['\"]([\\s\\S]*?)['\"])?\\s*/,u.link=l(u.link)(\"inside\",u._inside)(\"href\",u._href)(),u.reflink=l(u.reflink)(\"inside\",u._inside)(),u.normal=h({},u),u.pedantic=h({},u.normal,{strong:/^__(?=\\S)([\\s\\S]*?\\S)__(?!_)|^\\*\\*(?=\\S)([\\s\\S]*?\\S)\\*\\*(?!\\*)/,em:/^_(?=\\S)([\\s\\S]*?\\S)_(?!_)|^\\*(?=\\S)([\\s\\S]*?\\S)\\*(?!\\*)/}),u.gfm=h({},u.normal,{escape:l(u.escape)(\"])\",\"~|])\")(),url:/^(https?:\\/\\/[^\\s<]+[^<.,:;\"')\\]\\s])/,del:/^~~(?=\\S)([\\s\\S]*?\\S)~~/,text:l(u.text)(\"]|\",\"~]|\")(\"|\",\"|https?://|\")()}),u.breaks=h({},u.gfm,{br:l(u.br)(\"{2,}\",\"*\")(),text:l(u.gfm.text)(\"{2,}\",\"*\")()}),t.rules=u,t.output=function(e,n,r){var s=new t(n,r);return s.output(e)},t.prototype.output=function(e){for(var t,n,r,i,l=\"\";e;)if(i=this.rules.escape.exec(e))e=e.substring(i[0].length),l+=i[1];else if(i=this.rules.autolink.exec(e))e=e.substring(i[0].length),\"@\"===i[2]?(n=this.mangle(\":\"===i[1].charAt(6)?i[1].substring(7):i[1]),r=this.mangle(\"mailto:\")+n):(n=s(i[1]),r=n),l+=this.renderer.link(r,null,n);else if(this.inLink||!(i=this.rules.url.exec(e))){if(i=this.rules.tag.exec(e))!this.inLink&&/^<a /i.test(i[0])?this.inLink=!0:this.inLink&&/^<\\/a>/i.test(i[0])&&(this.inLink=!1),e=e.substring(i[0].length),l+=this.options.sanitize?s(i[0]):i[0];else if(i=this.rules.link.exec(e))e=e.substring(i[0].length),this.inLink=!0,l+=this.outputLink(i,{href:i[2],title:i[3]}),this.inLink=!1;else if((i=this.rules.reflink.exec(e))||(i=this.rules.nolink.exec(e))){if(e=e.substring(i[0].length),t=(i[2]||i[1]).replace(/\\s+/g,\" \"),t=this.links[t.toLowerCase()],!t||!t.href){l+=i[0].charAt(0),e=i[0].substring(1)+e;continue}this.inLink=!0,l+=this.outputLink(i,t),this.inLink=!1}else if(i=this.rules.strong.exec(e))e=e.substring(i[0].length),l+=this.renderer.strong(this.output(i[2]||i[1]));else if(i=this.rules.em.exec(e))e=e.substring(i[0].length),l+=this.renderer.em(this.output(i[2]||i[1]));else if(i=this.rules.code.exec(e))e=e.substring(i[0].length),l+=this.renderer.codespan(s(i[2],!0));else if(i=this.rules.br.exec(e))e=e.substring(i[0].length),l+=this.renderer.br();else if(i=this.rules.del.exec(e))e=e.substring(i[0].length),l+=this.renderer.del(this.output(i[1]));else if(i=this.rules.text.exec(e))e=e.substring(i[0].length),l+=s(this.smartypants(i[0]));else if(e)throw new Error(\"Infinite loop on byte: \"+e.charCodeAt(0))}else e=e.substring(i[0].length),n=s(i[1]),r=n,l+=this.renderer.link(r,null,n);return l},t.prototype.outputLink=function(e,t){var n=s(t.href),r=t.title?s(t.title):null;return\"!\"!==e[0].charAt(0)?this.renderer.link(n,r,this.output(e[1])):this.renderer.image(n,r,s(e[1]))},t.prototype.smartypants=function(e){return this.options.smartypants?e.replace(/--/g,\"—\").replace(/(^|[-\\u2014/(\\[{\"\\s])'/g,\"$1‘\").replace(/'/g,\"’\").replace(/(^|[-\\u2014/(\\[{\\u2018\\s])\"/g,\"$1“\").replace(/\"/g,\"”\").replace(/\\.{3}/g,\"…\"):e},t.prototype.mangle=function(e){for(var t,n=\"\",r=e.length,s=0;r>s;s++)t=e.charCodeAt(s),Math.random()>.5&&(t=\"x\"+t.toString(16)),n+=\"&#\"+t+\";\";return n},n.prototype.code=function(e,t,n){if(this.options.highlight){var r=this.options.highlight(e,t);null!=r&&r!==e&&(n=!0,e=r)}return t?'<pre><code class=\"'+this.options.langPrefix+s(t,!0)+'\">'+(n?e:s(e,!0))+\"\\n</code></pre>\\n\":\"<pre><code>\"+(n?e:s(e,!0))+\"\\n</code></pre>\"},n.prototype.blockquote=function(e){return\"<blockquote>\\n\"+e+\"</blockquote>\\n\"},n.prototype.html=function(e){return e},n.prototype.heading=function(e,t,n){return\"<h\"+t+' id=\"'+this.options.headerPrefix+n.toLowerCase().replace(/[^\\w]+/g,\"-\")+'\">'+e+\"</h\"+t+\">\\n\"},n.prototype.hr=function(){return this.options.xhtml?\"<hr/>\\n\":\"<hr>\\n\"},n.prototype.list=function(e,t){var n=t?\"ol\":\"ul\";return\"<\"+n+\">\\n\"+e+\"</\"+n+\">\\n\"},n.prototype.listitem=function(e){return\"<li>\"+e+\"</li>\\n\"},n.prototype.paragraph=function(e){return\"<p>\"+e+\"</p>\\n\"},n.prototype.table=function(e,t){return\"<table>\\n<thead>\\n\"+e+\"</thead>\\n<tbody>\\n\"+t+\"</tbody>\\n</table>\\n\"},n.prototype.tablerow=function(e){return\"<tr>\\n\"+e+\"</tr>\\n\"},n.prototype.tablecell=function(e,t){var n=t.header?\"th\":\"td\",r=t.align?\"<\"+n+' style=\"text-align:'+t.align+'\">':\"<\"+n+\">\";return r+e+\"</\"+n+\">\\n\"},n.prototype.strong=function(e){return\"<strong>\"+e+\"</strong>\"},n.prototype.em=function(e){return\"<em>\"+e+\"</em>\"},n.prototype.codespan=function(e){return\"<code>\"+e+\"</code>\"},n.prototype.br=function(){return this.options.xhtml?\"<br/>\":\"<br>\"},n.prototype.del=function(e){return\"<del>\"+e+\"</del>\"},n.prototype.link=function(e,t,n){if(this.options.sanitize){try{var r=decodeURIComponent(i(e)).replace(/[^\\w:]/g,\"\").toLowerCase()}catch(s){return\"\"}if(0===r.indexOf(\"javascript:\")||0===r.indexOf(\"vbscript:\"))return\"\"}var l='<a href=\"'+e+'\"';return t&&(l+=' title=\"'+t+'\"'),l+=\">\"+n+\"</a>\"},n.prototype.image=function(e,t,n){var r='<img src=\"'+e+'\" alt=\"'+n+'\"';return t&&(r+=' title=\"'+t+'\"'),r+=this.options.xhtml?\"/>\":\">\"},r.parse=function(e,t,n){var s=new r(t,n);return s.parse(e)},r.prototype.parse=function(e){this.inline=new t(e.links,this.options,this.renderer),this.tokens=e.reverse();for(var n=\"\";this.next();)n+=this.tok();return n},r.prototype.next=function(){return this.token=this.tokens.pop()},r.prototype.peek=function(){return this.tokens[this.tokens.length-1]||0},r.prototype.parseText=function(){for(var e=this.token.text;\"text\"===this.peek().type;)e+=\"\\n\"+this.next().text;return this.inline.output(e)},r.prototype.tok=function(){switch(this.token.type){case\"space\":return\"\";case\"hr\":return this.renderer.hr();case\"heading\":return this.renderer.heading(this.inline.output(this.token.text),this.token.depth,this.token.text);case\"code\":return this.renderer.code(this.token.text,this.token.lang,this.token.escaped);case\"table\":var e,t,n,r,s,i=\"\",l=\"\";for(n=\"\",e=0;e<this.token.header.length;e++)r={header:!0,align:this.token.align[e]},n+=this.renderer.tablecell(this.inline.output(this.token.header[e]),{header:!0,align:this.token.align[e]});for(i+=this.renderer.tablerow(n),e=0;e<this.token.cells.length;e++){for(t=this.token.cells[e],n=\"\",s=0;s<t.length;s++)n+=this.renderer.tablecell(this.inline.output(t[s]),{header:!1,align:this.token.align[s]});l+=this.renderer.tablerow(n)}return this.renderer.table(i,l);case\"blockquote_start\":for(var l=\"\";\"blockquote_end\"!==this.next().type;)l+=this.tok();return this.renderer.blockquote(l);case\"list_start\":for(var l=\"\",o=this.token.ordered;\"list_end\"!==this.next().type;)l+=this.tok();return this.renderer.list(l,o);case\"list_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=\"text\"===this.token.type?this.parseText():this.tok();return this.renderer.listitem(l);case\"loose_item_start\":for(var l=\"\";\"list_item_end\"!==this.next().type;)l+=this.tok();return this.renderer.listitem(l);case\"html\":var h=this.token.pre||this.options.pedantic?this.token.text:this.inline.output(this.token.text);return this.renderer.html(h);case\"paragraph\":return this.renderer.paragraph(this.inline.output(this.token.text));case\"text\":return this.renderer.paragraph(this.parseText())}},o.exec=o,a.options=a.setOptions=function(e){return h(a.defaults,e),a},a.defaults={gfm:!0,tables:!0,breaks:!1,pedantic:!1,sanitize:!1,smartLists:!1,silent:!1,highlight:null,langPrefix:\"lang-\",smartypants:!1,headerPrefix:\"\",renderer:new n,xhtml:!1},a.Parser=r,a.parser=r.parse,a.Renderer=n,a.Lexer=e,a.lexer=e.lex,a.InlineLexer=t,a.inlineLexer=t.output,a.parse=a,\"undefined\"!=typeof module&&\"object\"==typeof exports?module.exports=a:\"function\"==typeof define&&define.amd?define(function(){return a}):this.marked=a}).call(function(){return this||(\"undefined\"!=typeof window?window:global)}());"
  },
  {
    "path": "talk/reveal.js/plugin/math/math.js",
    "content": "/**\n * A plugin which enables rendering of math equations inside\n * of reveal.js slides. Essentially a thin wrapper for MathJax.\n *\n * @author Hakim El Hattab\n */\nvar RevealMath = window.RevealMath || (function(){\n\n\tvar options = Reveal.getConfig().math || {};\n\toptions.mathjax = options.mathjax || 'https://cdn.mathjax.org/mathjax/latest/MathJax.js';\n\toptions.config = options.config || 'TeX-AMS_HTML-full';\n\n\tloadScript( options.mathjax + '?config=' + options.config, function() {\n\n\t\tMathJax.Hub.Config({\n\t\t\tmessageStyle: 'none',\n\t\t\ttex2jax: {\n\t\t\t\tinlineMath: [['$','$'],['\\\\(','\\\\)']] ,\n\t\t\t\tskipTags: ['script','noscript','style','textarea','pre']\n\t\t\t},\n\t\t\tskipStartupTypeset: true\n\t\t});\n\n\t\t// Typeset followed by an immediate reveal.js layout since\n\t\t// the typesetting process could affect slide height\n\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub ] );\n\t\tMathJax.Hub.Queue( Reveal.layout );\n\n\t\t// Reprocess equations in slides when they turn visible\n\t\tReveal.addEventListener( 'slidechanged', function( event ) {\n\n\t\t\tMathJax.Hub.Queue( [ 'Typeset', MathJax.Hub, event.currentSlide ] );\n\n\t\t} );\n\n\t} );\n\n\tfunction loadScript( url, callback ) {\n\n\t\tvar head = document.querySelector( 'head' );\n\t\tvar script = document.createElement( 'script' );\n\t\tscript.type = 'text/javascript';\n\t\tscript.src = url;\n\n\t\t// Wrapper for callback to make sure it only fires once\n\t\tvar finish = function() {\n\t\t\tif( typeof callback === 'function' ) {\n\t\t\t\tcallback.call();\n\t\t\t\tcallback = null;\n\t\t\t}\n\t\t}\n\n\t\tscript.onload = finish;\n\n\t\t// IE\n\t\tscript.onreadystatechange = function() {\n\t\t\tif ( this.readyState === 'loaded' ) {\n\t\t\t\tfinish();\n\t\t\t}\n\t\t}\n\n\t\t// Normal browsers\n\t\thead.appendChild( script );\n\n\t}\n\n})();\n"
  },
  {
    "path": "talk/reveal.js/plugin/multiplex/client.js",
    "content": "(function() {\n\tvar multiplex = Reveal.getConfig().multiplex;\n\tvar socketId = multiplex.id;\n\tvar socket = io.connect(multiplex.url);\n\n\tsocket.on(multiplex.id, function(data) {\n\t\t// ignore data from sockets that aren't ours\n\t\tif (data.socketId !== socketId) { return; }\n\t\tif( window.location.host === 'localhost:1947' ) return;\n\n\t\tReveal.setState(data.state);\n\t});\n}());\n"
  },
  {
    "path": "talk/reveal.js/plugin/multiplex/index.js",
    "content": "var http        = require('http');\nvar express\t\t= require('express');\nvar fs\t\t\t= require('fs');\nvar io\t\t\t= require('socket.io');\nvar crypto\t\t= require('crypto');\n\nvar app       \t= express();\nvar staticDir \t= express.static;\nvar server    \t= http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport: process.env.PORT || 1948,\n\tbaseDir : __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\tsocket.on('multiplex-statechanged', function(data) {\n\t\tif (typeof data.secret == 'undefined' || data.secret == null || data.secret === '') return;\n\t\tif (createHash(data.secret) === data.socketId) {\n\t\t\tdata.secret = null;\n\t\t\tsocket.broadcast.emit(data.socketId, data);\n\t\t};\n\t});\n});\n\n[ 'css', 'js', 'plugin', 'lib' ].forEach(function(dir) {\n\tapp.use('/' + dir, staticDir(opts.baseDir + dir));\n});\n\napp.get(\"/\", function(req, res) {\n\tres.writeHead(200, {'Content-Type': 'text/html'});\n\tfs.createReadStream(opts.baseDir + '/index.html').pipe(res);\n});\n\napp.get(\"/token\", function(req,res) {\n\tvar ts = new Date().getTime();\n\tvar rand = Math.floor(Math.random()*9999999);\n\tvar secret = ts.toString() + rand.toString();\n\tres.send({secret: secret, socketId: createHash(secret)});\n});\n\nvar createHash = function(secret) {\n\tvar cipher = crypto.createCipher('blowfish', secret);\n\treturn(cipher.final('hex'));\n};\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nconsole.log( brown + \"reveal.js:\" + reset + \" Multiplex running on port \" + green + opts.port + reset );"
  },
  {
    "path": "talk/reveal.js/plugin/multiplex/master.js",
    "content": "(function() {\n\n\t// Don't emit events from inside of notes windows\n\tif ( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar multiplex = Reveal.getConfig().multiplex;\n\n\tvar socket = io.connect( multiplex.url );\n\n\tfunction post() {\n\n\t\tvar messageData = {\n\t\t\tstate: Reveal.getState(),\n\t\t\tsecret: multiplex.secret,\n\t\t\tsocketId: multiplex.id\n\t\t};\n\n\t\tsocket.emit( 'multiplex-statechanged', messageData );\n\n\t};\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n}());"
  },
  {
    "path": "talk/reveal.js/plugin/notes/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\t\t\t\toverflow: auto;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"../../plugin/markdown/marked.js\"></script>\n\t\t<script>\n\n\t\t\t(function() {\n\n\t\t\t\tvar notes,\n\t\t\t\t\tnotesValue,\n\t\t\t\t\tcurrentState,\n\t\t\t\t\tcurrentSlide,\n\t\t\t\t\tupcomingSlide,\n\t\t\t\t\tconnected = false;\n\n\t\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\t\t// Messages sent by the notes plugin inside of the main window\n\t\t\t\t\tif( data && data.namespace === 'reveal-notes' ) {\n\t\t\t\t\t\tif( data.type === 'connect' ) {\n\t\t\t\t\t\t\thandleConnectMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( data.type === 'state' ) {\n\t\t\t\t\t\t\thandleStateMessage( data );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t// Messages sent by the reveal.js inside of the current slide preview\n\t\t\t\t\telse if( data && data.namespace === 'reveal' ) {\n\t\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\t\t// Send a message back to notify that the handshake is complete\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ namespace: 'reveal-notes', type: 'connected'} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\t\twindow.opener.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ]} ), '*' );\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t} );\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window is trying to establish a\n\t\t\t\t * connection.\n\t\t\t\t */\n\t\t\t\tfunction handleConnectMessage( data ) {\n\n\t\t\t\t\tif( connected === false ) {\n\t\t\t\t\t\tconnected = true;\n\n\t\t\t\t\t\tsetupIframes( data );\n\t\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\t\tsetupNotes();\n\t\t\t\t\t\tsetupTimer();\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Called when the main window sends an updated state.\n\t\t\t\t */\n\t\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t\t// applying the same state\n\t\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\t\tif ( data.notes ) {\n\t\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\t\tnotesValue.style.whiteSpace = data.whitespace;\n\t\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update the note slides\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t\t}\n\n\t\t\t\t// Limit to max one state update per X ms\n\t\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t\t/**\n\t\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t\t * This enables keyboard events to work even if focus\n\t\t\t\t * isn't set on the current slide iframe.\n\t\t\t\t */\n\t\t\t\tfunction setupKeyboard() {\n\n\t\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Creates the preview iframes.\n\t\t\t\t */\n\t\t\t\tfunction setupIframes( data ) {\n\n\t\t\t\t\tvar params = [\n\t\t\t\t\t\t'receiver',\n\t\t\t\t\t\t'progress=false',\n\t\t\t\t\t\t'history=false',\n\t\t\t\t\t\t'transition=none',\n\t\t\t\t\t\t'autoSlide=0',\n\t\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t\t].join( '&' );\n\n\t\t\t\t\tvar hash = '#/' + data.state.indexh + '/' + data.state.indexv;\n\t\t\t\t\tvar currentURL = data.url + '?' + params + '&postMessageEvents=true' + hash;\n\t\t\t\t\tvar upcomingURL = data.url + '?' + params + '&controls=false' + hash;\n\n\t\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Setup the notes UI.\n\t\t\t\t */\n\t\t\t\tfunction setupNotes() {\n\n\t\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Create the timer and clock and start updating them\n\t\t\t\t * at an interval.\n\t\t\t\t */\n\t\t\t\tfunction setupTimer() {\n\n\t\t\t\t\tvar start = new Date(),\n\t\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t\t}\n\n\t\t\t\t\t// Update once directly\n\t\t\t\t\t_updateTimer();\n\n\t\t\t\t\t// Then update every second\n\t\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\t\tstart = new Date();\n\t\t\t\t\t\t_updateTimer();\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t} );\n\n\t\t\t\t}\n\n\t\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t\t}\n\n\t\t\t\t/**\n\t\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t\t */\n\t\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\t\tvar lastTime = 0,\n\t\t\t\t\t\ttimeout;\n\n\t\t\t\t\treturn function() {\n\n\t\t\t\t\t\tvar args = arguments;\n\t\t\t\t\t\tvar context = this;\n\n\t\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t})();\n\n\t\t</script>\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/plugin/notes/notes.js",
    "content": "/**\n * Handles opening of and synchronization with the reveal.js\n * notes window.\n *\n * Handshake process:\n * 1. This window posts 'connect' to notes window\n *    - Includes URL of presentation to show\n * 2. Notes window responds with 'connected' when it is available\n * 3. This window proceeds to send the current presentation state\n *    to the notes window\n */\nvar RevealNotes = (function() {\n\n\tfunction openNotes() {\n\t\tvar jsFileLocation = document.querySelector('script[src$=\"notes.js\"]').src;  // this js file path\n\t\tjsFileLocation = jsFileLocation.replace(/notes\\.js(\\?.*)?$/, '');   // the js folder path\n\t\tvar notesPopup = window.open( jsFileLocation + 'notes.html', 'reveal.js - Notes', 'width=1100,height=700' );\n\n\t\t/**\n\t\t * Connect to the notes window through a postmessage handshake.\n\t\t * Using postmessage enables us to work in situations where the\n\t\t * origins differ, such as a presentation being opened from the\n\t\t * file system.\n\t\t */\n\t\tfunction connect() {\n\t\t\t// Keep trying to connect until we get a 'connected' message back\n\t\t\tvar connectInterval = setInterval( function() {\n\t\t\t\tnotesPopup.postMessage( JSON.stringify( {\n\t\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\t\ttype: 'connect',\n\t\t\t\t\turl: window.location.protocol + '//' + window.location.host + window.location.pathname + window.location.search,\n\t\t\t\t\tstate: Reveal.getState()\n\t\t\t\t} ), '*' );\n\t\t\t}, 500 );\n\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\t\t\t\tvar data = JSON.parse( event.data );\n\t\t\t\tif( data && data.namespace === 'reveal-notes' && data.type === 'connected' ) {\n\t\t\t\t\tclearInterval( connectInterval );\n\t\t\t\t\tonConnected();\n\t\t\t\t}\n\t\t\t} );\n\t\t}\n\n\t\t/**\n\t\t * Posts the current slide data to the notes window\n\t\t */\n\t\tfunction post() {\n\n\t\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\t\tvar messageData = {\n\t\t\t\tnamespace: 'reveal-notes',\n\t\t\t\ttype: 'state',\n\t\t\t\tnotes: '',\n\t\t\t\tmarkdown: false,\n\t\t\t\twhitespace: 'normal',\n\t\t\t\tstate: Reveal.getState()\n\t\t\t};\n\n\t\t\t// Look for notes defined in a slide attribute\n\t\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t\t\tmessageData.whitespace = 'pre-wrap';\n\t\t\t}\n\n\t\t\t// Look for notes defined in an aside element\n\t\t\tif( notesElement ) {\n\t\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t\t}\n\n\t\t\tnotesPopup.postMessage( JSON.stringify( messageData ), '*' );\n\n\t\t}\n\n\t\t/**\n\t\t * Called once we have established a connection to the notes\n\t\t * window.\n\t\t */\n\t\tfunction onConnected() {\n\n\t\t\t// Monitor events that trigger a change in state\n\t\t\tReveal.addEventListener( 'slidechanged', post );\n\t\t\tReveal.addEventListener( 'fragmentshown', post );\n\t\t\tReveal.addEventListener( 'fragmenthidden', post );\n\t\t\tReveal.addEventListener( 'overviewhidden', post );\n\t\t\tReveal.addEventListener( 'overviewshown', post );\n\t\t\tReveal.addEventListener( 'paused', post );\n\t\t\tReveal.addEventListener( 'resumed', post );\n\n\t\t\t// Post the initial state\n\t\t\tpost();\n\n\t\t}\n\n\t\tconnect();\n\t}\n\n\tif( !/receiver/i.test( window.location.search ) ) {\n\n\t\t// If the there's a 'notes' query set, open directly\n\t\tif( window.location.search.match( /(\\?|\\&)notes/gi ) !== null ) {\n\t\t\topenNotes();\n\t\t}\n\n\t\t// Open the notes when the 's' key is hit\n\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t// Disregard the event if the target is editable or a\n\t\t\t// modifier is present\n\t\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\t\t// Disregard the event if keyboard is disabled\n\t\t\tif ( Reveal.getConfig().keyboard === false ) return;\n\n\t\t\tif( event.keyCode === 83 ) {\n\t\t\t\tevent.preventDefault();\n\t\t\t\topenNotes();\n\t\t\t}\n\t\t}, false );\n\n\t}\n\n\treturn { open: openNotes };\n\n})();\n"
  },
  {
    "path": "talk/reveal.js/plugin/notes-server/client.js",
    "content": "(function() {\n\n\t// don't emit events from inside the previews themselves\n\tif( window.location.search.match( /receiver/gi ) ) { return; }\n\n\tvar socket = io.connect( window.location.origin ),\n\t\tsocketId = Math.random().toString().slice( 2 );\n\n\tconsole.log( 'View slide notes at ' + window.location.origin + '/notes/' + socketId );\n\n\twindow.open( window.location.origin + '/notes/' + socketId, 'notes-' + socketId );\n\n\t/**\n\t * Posts the current slide data to the notes window\n\t */\n\tfunction post() {\n\n\t\tvar slideElement = Reveal.getCurrentSlide(),\n\t\t\tnotesElement = slideElement.querySelector( 'aside.notes' );\n\n\t\tvar messageData = {\n\t\t\tnotes: '',\n\t\t\tmarkdown: false,\n\t\t\tsocketId: socketId,\n\t\t\tstate: Reveal.getState()\n\t\t};\n\n\t\t// Look for notes defined in a slide attribute\n\t\tif( slideElement.hasAttribute( 'data-notes' ) ) {\n\t\t\tmessageData.notes = slideElement.getAttribute( 'data-notes' );\n\t\t}\n\n\t\t// Look for notes defined in an aside element\n\t\tif( notesElement ) {\n\t\t\tmessageData.notes = notesElement.innerHTML;\n\t\t\tmessageData.markdown = typeof notesElement.getAttribute( 'data-markdown' ) === 'string';\n\t\t}\n\n\t\tsocket.emit( 'statechanged', messageData );\n\n\t}\n\n\t// When a new notes window connects, post our current state\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tpost();\n\t} );\n\n\t// When the state changes from inside of the speaker view\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tReveal.setState( data.state );\n\t} );\n\n\t// Monitor events that trigger a change in state\n\tReveal.addEventListener( 'slidechanged', post );\n\tReveal.addEventListener( 'fragmentshown', post );\n\tReveal.addEventListener( 'fragmenthidden', post );\n\tReveal.addEventListener( 'overviewhidden', post );\n\tReveal.addEventListener( 'overviewshown', post );\n\tReveal.addEventListener( 'paused', post );\n\tReveal.addEventListener( 'resumed', post );\n\n\t// Post the initial state\n\tpost();\n\n}());\n"
  },
  {
    "path": "talk/reveal.js/plugin/notes-server/index.js",
    "content": "var http      = require('http');\nvar express   = require('express');\nvar fs        = require('fs');\nvar io        = require('socket.io');\nvar _         = require('underscore');\nvar Mustache  = require('mustache');\n\nvar app       = express();\nvar staticDir = express.static;\nvar server    = http.createServer(app);\n\nio = io(server);\n\nvar opts = {\n\tport :      1947,\n\tbaseDir :   __dirname + '/../../'\n};\n\nio.on( 'connection', function( socket ) {\n\n\tsocket.on( 'new-subscriber', function( data ) {\n\t\tsocket.broadcast.emit( 'new-subscriber', data );\n\t});\n\n\tsocket.on( 'statechanged', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged', data );\n\t});\n\n\tsocket.on( 'statechanged-speaker', function( data ) {\n\t\tsocket.broadcast.emit( 'statechanged-speaker', data );\n\t});\n\n});\n\n[ 'css', 'js', 'images', 'plugin', 'lib' ].forEach( function( dir ) {\n\tapp.use( '/' + dir, staticDir( opts.baseDir + dir ) );\n});\n\napp.get('/', function( req, res ) {\n\n\tres.writeHead( 200, { 'Content-Type': 'text/html' } );\n\tfs.createReadStream( opts.baseDir + '/index.html' ).pipe( res );\n\n});\n\napp.get( '/notes/:socketId', function( req, res ) {\n\n\tfs.readFile( opts.baseDir + 'plugin/notes-server/notes.html', function( err, data ) {\n\t\tres.send( Mustache.to_html( data.toString(), {\n\t\t\tsocketId : req.params.socketId\n\t\t}));\n\t});\n\n});\n\n// Actually listen\nserver.listen( opts.port || null );\n\nvar brown = '\\033[33m',\n\tgreen = '\\033[32m',\n\treset = '\\033[0m';\n\nvar slidesLocation = 'http://localhost' + ( opts.port ? ( ':' + opts.port ) : '' );\n\nconsole.log( brown + 'reveal.js - Speaker Notes' + reset );\nconsole.log( '1. Open the slides at ' + green + slidesLocation + reset );\nconsole.log( '2. Click on the link your JS console to go to the notes page' );\nconsole.log( '3. Advance through your slides and your notes will advance automatically' );\n"
  },
  {
    "path": "talk/reveal.js/plugin/notes-server/notes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Notes</title>\n\n\t\t<style>\n\t\t\tbody {\n\t\t\t\tfont-family: Helvetica;\n\t\t\t}\n\n\t\t\t#current-slide,\n\t\t\t#upcoming-slide,\n\t\t\t#speaker-controls {\n\t\t\t\tpadding: 6px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t}\n\n\t\t\t#current-slide iframe,\n\t\t\t#upcoming-slide iframe {\n\t\t\t\twidth: 100%;\n\t\t\t\theight: 100%;\n\t\t\t\tborder: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t#current-slide .label,\n\t\t\t#upcoming-slide .label {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 10px;\n\t\t\t\tleft: 10px;\n\t\t\t\tfont-weight: bold;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tz-index: 2;\n\t\t\t\tcolor: rgba( 255, 255, 255, 0.9 );\n\t\t\t}\n\n\t\t\t#current-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 65%;\n\t\t\t\theight: 100%;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tpadding-right: 0;\n\t\t\t}\n\n\t\t\t#upcoming-slide {\n\t\t\t\tposition: absolute;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 40%;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\n\t\t\t#speaker-controls {\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 40%;\n\t\t\t\tright: 0;\n\t\t\t\twidth: 35%;\n\t\t\t\theight: 60%;\n\n\t\t\t\tfont-size: 18px;\n\t\t\t}\n\n\t\t\t\t.speaker-controls-time.hidden,\n\t\t\t\t.speaker-controls-notes.hidden {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .label,\n\t\t\t\t.speaker-controls-notes .label {\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 0.66em;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time {\n\t\t\t\t\tborder-bottom: 1px solid rgba( 200, 200, 200, 0.5 );\n\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t\tpadding-bottom: 20px;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .reset-button {\n\t\t\t\t\topacity: 0;\n\t\t\t\t\tfloat: right;\n\t\t\t\t\tcolor: #666;\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t.speaker-controls-time:hover .reset-button {\n\t\t\t\t\topacity: 1;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer,\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t\tfont-size: 1.9em;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .timer {\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time .clock {\n\t\t\t\t\tfloat: right;\n\t\t\t\t\ttext-align: right;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-time span.mute {\n\t\t\t\t\tcolor: #bbb;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes {\n\t\t\t\t\tpadding: 10px 16px;\n\t\t\t\t}\n\n\t\t\t\t.speaker-controls-notes .value {\n\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\tline-height: 1.4;\n\t\t\t\t\tfont-size: 1.2em;\n\t\t\t\t}\n\n\t\t\t.clear {\n\t\t\t\tclear: both;\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 1080px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 900px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t@media screen and (max-width: 800px) {\n\t\t\t\t#speaker-controls {\n\t\t\t\t\tfont-size: 12px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div id=\"current-slide\"></div>\n\t\t<div id=\"upcoming-slide\"><span class=\"label\">UPCOMING:</span></div>\n\t\t<div id=\"speaker-controls\">\n\t\t\t<div class=\"speaker-controls-time\">\n\t\t\t\t<h4 class=\"label\">Time <span class=\"reset-button\">Click to Reset</span></h4>\n\t\t\t\t<div class=\"clock\">\n\t\t\t\t\t<span class=\"clock-value\">0:00 AM</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"timer\">\n\t\t\t\t\t<span class=\"hours-value\">00</span><span class=\"minutes-value\">:00</span><span class=\"seconds-value\">:00</span>\n\t\t\t\t</div>\n\t\t\t\t<div class=\"clear\"></div>\n\t\t\t</div>\n\n\t\t\t<div class=\"speaker-controls-notes hidden\">\n\t\t\t\t<h4 class=\"label\">Notes</h4>\n\t\t\t\t<div class=\"value\"></div>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<script src=\"/socket.io/socket.io.js\"></script>\n\t\t<script src=\"/plugin/markdown/marked.js\"></script>\n\n\t\t<script>\n\t\t(function() {\n\n\t\t\tvar notes,\n\t\t\t\tnotesValue,\n\t\t\t\tcurrentState,\n\t\t\t\tcurrentSlide,\n\t\t\t\tupcomingSlide,\n\t\t\t\tconnected = false;\n\n\t\t\tvar socket = io.connect( window.location.origin ),\n\t\t\t\tsocketId = '{{socketId}}';\n\n\t\t\tsocket.on( 'statechanged', function( data ) {\n\n\t\t\t\t// ignore data from sockets that aren't ours\n\t\t\t\tif( data.socketId !== socketId ) { return; }\n\n\t\t\t\tif( connected === false ) {\n\t\t\t\t\tconnected = true;\n\n\t\t\t\t\tsetupKeyboard();\n\t\t\t\t\tsetupNotes();\n\t\t\t\t\tsetupTimer();\n\n\t\t\t\t}\n\n\t\t\t\thandleStateMessage( data );\n\n\t\t\t} );\n\n\t\t\t// Load our presentation iframes\n\t\t\tsetupIframes();\n\n\t\t\t// Once the iframes have loaded, emit a signal saying there's\n\t\t\t// a new subscriber which will trigger a 'statechanged'\n\t\t\t// message to be sent back\n\t\t\twindow.addEventListener( 'message', function( event ) {\n\n\t\t\t\tvar data = JSON.parse( event.data );\n\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /ready/.test( data.eventName ) ) {\n\t\t\t\t\t\tsocket.emit( 'new-subscriber', { socketId: socketId } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t// Messages sent by reveal.js inside of the current slide preview\n\t\t\t\tif( data && data.namespace === 'reveal' ) {\n\t\t\t\t\tif( /slidechanged|fragmentshown|fragmenthidden|overviewshown|overviewhidden|paused|resumed/.test( data.eventName ) && currentState !== JSON.stringify( data.state ) ) {\n\t\t\t\t\t\tsocket.emit( 'statechanged-speaker', { state: data.state } );\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t} );\n\n\t\t\t/**\n\t\t\t * Called when the main window sends an updated state.\n\t\t\t */\n\t\t\tfunction handleStateMessage( data ) {\n\n\t\t\t\t// Store the most recently set state to avoid circular loops\n\t\t\t\t// applying the same state\n\t\t\t\tcurrentState = JSON.stringify( data.state );\n\n\t\t\t\t// No need for updating the notes in case of fragment changes\n\t\t\t\tif ( data.notes ) {\n\t\t\t\t\tnotes.classList.remove( 'hidden' );\n\t\t\t\t\tif( data.markdown ) {\n\t\t\t\t\t\tnotesValue.innerHTML = marked( data.notes );\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tnotesValue.innerHTML = data.notes;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tnotes.classList.add( 'hidden' );\n\t\t\t\t}\n\n\t\t\t\t// Update the note slides\n\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'setState', args: [ data.state ] }), '*' );\n\t\t\t\tupcomingSlide.contentWindow.postMessage( JSON.stringify({ method: 'next' }), '*' );\n\n\t\t\t}\n\n\t\t\t// Limit to max one state update per X ms\n\t\t\thandleStateMessage = debounce( handleStateMessage, 200 );\n\n\t\t\t/**\n\t\t\t * Forward keyboard events to the current slide window.\n\t\t\t * This enables keyboard events to work even if focus\n\t\t\t * isn't set on the current slide iframe.\n\t\t\t */\n\t\t\tfunction setupKeyboard() {\n\n\t\t\t\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t\t\t\tcurrentSlide.contentWindow.postMessage( JSON.stringify({ method: 'triggerKey', args: [ event.keyCode ] }), '*' );\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Creates the preview iframes.\n\t\t\t */\n\t\t\tfunction setupIframes() {\n\n\t\t\t\tvar params = [\n\t\t\t\t\t'receiver',\n\t\t\t\t\t'progress=false',\n\t\t\t\t\t'history=false',\n\t\t\t\t\t'transition=none',\n\t\t\t\t\t'backgroundTransition=none'\n\t\t\t\t].join( '&' );\n\n\t\t\t\tvar currentURL = '/?' + params + '&postMessageEvents=true';\n\t\t\t\tvar upcomingURL = '/?' + params + '&controls=false';\n\n\t\t\t\tcurrentSlide = document.createElement( 'iframe' );\n\t\t\t\tcurrentSlide.setAttribute( 'width', 1280 );\n\t\t\t\tcurrentSlide.setAttribute( 'height', 1024 );\n\t\t\t\tcurrentSlide.setAttribute( 'src', currentURL );\n\t\t\t\tdocument.querySelector( '#current-slide' ).appendChild( currentSlide );\n\n\t\t\t\tupcomingSlide = document.createElement( 'iframe' );\n\t\t\t\tupcomingSlide.setAttribute( 'width', 640 );\n\t\t\t\tupcomingSlide.setAttribute( 'height', 512 );\n\t\t\t\tupcomingSlide.setAttribute( 'src', upcomingURL );\n\t\t\t\tdocument.querySelector( '#upcoming-slide' ).appendChild( upcomingSlide );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Setup the notes UI.\n\t\t\t */\n\t\t\tfunction setupNotes() {\n\n\t\t\t\tnotes = document.querySelector( '.speaker-controls-notes' );\n\t\t\t\tnotesValue = document.querySelector( '.speaker-controls-notes .value' );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Create the timer and clock and start updating them\n\t\t\t * at an interval.\n\t\t\t */\n\t\t\tfunction setupTimer() {\n\n\t\t\t\tvar start = new Date(),\n\t\t\t\t\ttimeEl = document.querySelector( '.speaker-controls-time' ),\n\t\t\t\t\tclockEl = timeEl.querySelector( '.clock-value' ),\n\t\t\t\t\thoursEl = timeEl.querySelector( '.hours-value' ),\n\t\t\t\t\tminutesEl = timeEl.querySelector( '.minutes-value' ),\n\t\t\t\t\tsecondsEl = timeEl.querySelector( '.seconds-value' );\n\n\t\t\t\tfunction _updateTimer() {\n\n\t\t\t\t\tvar diff, hours, minutes, seconds,\n\t\t\t\t\t\tnow = new Date();\n\n\t\t\t\t\tdiff = now.getTime() - start.getTime();\n\t\t\t\t\thours = Math.floor( diff / ( 1000 * 60 * 60 ) );\n\t\t\t\t\tminutes = Math.floor( ( diff / ( 1000 * 60 ) ) % 60 );\n\t\t\t\t\tseconds = Math.floor( ( diff / 1000 ) % 60 );\n\n\t\t\t\t\tclockEl.innerHTML = now.toLocaleTimeString( 'en-US', { hour12: true, hour: '2-digit', minute:'2-digit' } );\n\t\t\t\t\thoursEl.innerHTML = zeroPadInteger( hours );\n\t\t\t\t\thoursEl.className = hours > 0 ? '' : 'mute';\n\t\t\t\t\tminutesEl.innerHTML = ':' + zeroPadInteger( minutes );\n\t\t\t\t\tminutesEl.className = minutes > 0 ? '' : 'mute';\n\t\t\t\t\tsecondsEl.innerHTML = ':' + zeroPadInteger( seconds );\n\n\t\t\t\t}\n\n\t\t\t\t// Update once directly\n\t\t\t\t_updateTimer();\n\n\t\t\t\t// Then update every second\n\t\t\t\tsetInterval( _updateTimer, 1000 );\n\n\t\t\t\ttimeEl.addEventListener( 'click', function() {\n\t\t\t\t\tstart = new Date();\n\t\t\t\t\t_updateTimer();\n\t\t\t\t\treturn false;\n\t\t\t\t} );\n\n\t\t\t}\n\n\t\t\tfunction zeroPadInteger( num ) {\n\n\t\t\t\tvar str = '00' + parseInt( num );\n\t\t\t\treturn str.substring( str.length - 2 );\n\n\t\t\t}\n\n\t\t\t/**\n\t\t\t * Limits the frequency at which a function can be called.\n\t\t\t */\n\t\t\tfunction debounce( fn, ms ) {\n\n\t\t\t\tvar lastTime = 0,\n\t\t\t\t\ttimeout;\n\n\t\t\t\treturn function() {\n\n\t\t\t\t\tvar args = arguments;\n\t\t\t\t\tvar context = this;\n\n\t\t\t\t\tclearTimeout( timeout );\n\n\t\t\t\t\tvar timeSinceLastCall = Date.now() - lastTime;\n\t\t\t\t\tif( timeSinceLastCall > ms ) {\n\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\ttimeout = setTimeout( function() {\n\t\t\t\t\t\t\tfn.apply( context, args );\n\t\t\t\t\t\t\tlastTime = Date.now();\n\t\t\t\t\t\t}, ms - timeSinceLastCall );\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t})();\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/plugin/print-pdf/print-pdf.js",
    "content": "/**\n * phantomjs script for printing presentations to PDF.\n *\n * Example:\n * phantomjs print-pdf.js \"http://lab.hakim.se/reveal-js?print-pdf\" reveal-demo.pdf\n *\n * By Manuel Bieh (https://github.com/manuelbieh)\n */\n\n// html2pdf.js\nvar page = new WebPage();\nvar system = require( 'system' );\n\nvar slideWidth = system.args[3] ? system.args[3].split( 'x' )[0] : 960;\nvar slideHeight = system.args[3] ? system.args[3].split( 'x' )[1] : 700;\n\npage.viewportSize = {\n\twidth: slideWidth,\n\theight: slideHeight\n};\n\n// TODO\n// Something is wrong with these config values. An input\n// paper width of 1920px actually results in a 756px wide\n// PDF.\npage.paperSize = {\n\twidth: Math.round( slideWidth * 2 ),\n\theight: Math.round( slideHeight * 2 ),\n\tborder: 0\n};\n\nvar inputFile = system.args[1] || 'index.html?print-pdf';\nvar outputFile = system.args[2] || 'slides.pdf';\n\nif( outputFile.match( /\\.pdf$/gi ) === null ) {\n\toutputFile += '.pdf';\n}\n\nconsole.log( 'Printing PDF (Paper size: '+ page.paperSize.width + 'x' + page.paperSize.height +')' );\n\npage.open( inputFile, function( status ) {\n\twindow.setTimeout( function() {\n\t\tconsole.log( 'Printed succesfully' );\n\t\tpage.render( outputFile );\n\t\tphantom.exit();\n\t}, 1000 );\n} );\n\n"
  },
  {
    "path": "talk/reveal.js/plugin/search/search.js",
    "content": "/*\n * Handles finding a text string anywhere in the slides and showing the next occurrence to the user\n * by navigatating to that slide and highlighting it.\n *\n * By Jon Snyder <snyder.jon@gmail.com>, February 2013\n */\n\nvar RevealSearch = (function() {\n\n\tvar matchedSlides;\n\tvar currentMatchedIndex;\n\tvar searchboxDirty;\n\tvar myHilitor;\n\n// Original JavaScript code by Chirp Internet: www.chirp.com.au\n// Please acknowledge use of this code by including this header.\n// 2/2013 jon: modified regex to display any match, not restricted to word boundaries.\n\nfunction Hilitor(id, tag)\n{\n\n  var targetNode = document.getElementById(id) || document.body;\n  var hiliteTag = tag || \"EM\";\n  var skipTags = new RegExp(\"^(?:\" + hiliteTag + \"|SCRIPT|FORM|SPAN)$\");\n  var colors = [\"#ff6\", \"#a0ffff\", \"#9f9\", \"#f99\", \"#f6f\"];\n  var wordColor = [];\n  var colorIdx = 0;\n  var matchRegex = \"\";\n  var matchingSlides = [];\n\n  this.setRegex = function(input)\n  {\n    input = input.replace(/^[^\\w]+|[^\\w]+$/g, \"\").replace(/[^\\w'-]+/g, \"|\");\n    matchRegex = new RegExp(\"(\" + input + \")\",\"i\");\n  }\n\n  this.getRegex = function()\n  {\n    return matchRegex.toString().replace(/^\\/\\\\b\\(|\\)\\\\b\\/i$/g, \"\").replace(/\\|/g, \" \");\n  }\n\n  // recursively apply word highlighting\n  this.hiliteWords = function(node)\n  {\n    if(node == undefined || !node) return;\n    if(!matchRegex) return;\n    if(skipTags.test(node.nodeName)) return;\n\n    if(node.hasChildNodes()) {\n      for(var i=0; i < node.childNodes.length; i++)\n        this.hiliteWords(node.childNodes[i]);\n    }\n    if(node.nodeType == 3) { // NODE_TEXT\n      if((nv = node.nodeValue) && (regs = matchRegex.exec(nv))) {\n      \t//find the slide's section element and save it in our list of matching slides\n      \tvar secnode = node.parentNode;\n      \twhile (secnode.nodeName != 'SECTION') {\n      \t\tsecnode = secnode.parentNode;\n      \t}\n      \t\n      \tvar slideIndex = Reveal.getIndices(secnode);\n      \tvar slidelen = matchingSlides.length;\n      \tvar alreadyAdded = false;\n      \tfor (var i=0; i < slidelen; i++) {\n      \t\tif ( (matchingSlides[i].h === slideIndex.h) && (matchingSlides[i].v === slideIndex.v) ) {\n      \t\t\talreadyAdded = true;\n      \t\t}\n      \t}\n      \tif (! alreadyAdded) {\n      \t\tmatchingSlides.push(slideIndex);\n      \t}\n      \t\n        if(!wordColor[regs[0].toLowerCase()]) {\n          wordColor[regs[0].toLowerCase()] = colors[colorIdx++ % colors.length];\n        }\n\n        var match = document.createElement(hiliteTag);\n        match.appendChild(document.createTextNode(regs[0]));\n        match.style.backgroundColor = wordColor[regs[0].toLowerCase()];\n        match.style.fontStyle = \"inherit\";\n        match.style.color = \"#000\";\n\n        var after = node.splitText(regs.index);\n        after.nodeValue = after.nodeValue.substring(regs[0].length);\n        node.parentNode.insertBefore(match, after);\n      }\n    }\n  };\n\n  // remove highlighting\n  this.remove = function()\n  {\n    var arr = document.getElementsByTagName(hiliteTag);\n    while(arr.length && (el = arr[0])) {\n      el.parentNode.replaceChild(el.firstChild, el);\n    }\n  };\n\n  // start highlighting at target node\n  this.apply = function(input)\n  {\n    if(input == undefined || !input) return;\n    this.remove();\n    this.setRegex(input);\n    this.hiliteWords(targetNode);\n    return matchingSlides;\n  };\n\n}\n\n\tfunction openSearch() {\n\t\t//ensure the search term input dialog is visible and has focus:\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tinputbox.style.display = \"inline\";\n\t\tinputbox.focus();\n\t\tinputbox.select();\n\t}\n\n\tfunction toggleSearch() {\n\t\tvar inputbox = document.getElementById(\"searchinput\");\n\t\tif (inputbox.style.display !== \"inline\") {\n\t\t\topenSearch();\n\t\t}\n\t\telse {\n\t\t\tinputbox.style.display = \"none\";\n\t\t\tmyHilitor.remove();\n\t\t}\n\t}\n\n\tfunction doSearch() {\n\t\t//if there's been a change in the search term, perform a new search:\n\t\tif (searchboxDirty) {\n\t\t\tvar searchstring = document.getElementById(\"searchinput\").value;\n\n\t\t\t//find the keyword amongst the slides\n\t\t\tmyHilitor = new Hilitor(\"slidecontent\");\n\t\t\tmatchedSlides = myHilitor.apply(searchstring);\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\n\t\t//navigate to the next slide that has the keyword, wrapping to the first if necessary\n\t\tif (matchedSlides.length && (matchedSlides.length <= currentMatchedIndex)) {\n\t\t\tcurrentMatchedIndex = 0;\n\t\t}\n\t\tif (matchedSlides.length > currentMatchedIndex) {\n\t\t\tReveal.slide(matchedSlides[currentMatchedIndex].h, matchedSlides[currentMatchedIndex].v);\n\t\t\tcurrentMatchedIndex++;\n\t\t}\n\t}\n\n\tvar dom = {};\n\tdom.wrapper = document.querySelector( '.reveal' );\n\n\tif( !dom.wrapper.querySelector( '.searchbox' ) ) {\n\t\t\tvar searchElement = document.createElement( 'div' );\n\t\t\tsearchElement.id = \"searchinputdiv\";\n\t\t\tsearchElement.classList.add( 'searchdiv' );\n      searchElement.style.position = 'absolute';\n      searchElement.style.top = '10px';\n      searchElement.style.left = '10px';\n      //embedded base64 search icon Designed by Sketchdock - http://www.sketchdock.com/:\n\t\t\tsearchElement.innerHTML = '<span><input type=\"search\" id=\"searchinput\" class=\"searchinput\" style=\"vertical-align: top;\"/><img src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAJiSURBVHjatFZNaxNBGH5md+Mmu92NVdKDRipSAyqCghgQD4L4cRe86UUtAQ+eFCxoa4/25EXBFi8eBE+eRPoDhB6KgiiixdAPCEkx2pjvTXadd9yNsflwuyUDD/O+u8PzzDPvzOwyx3EwyCZhwG3gAkp7MnpjgbopjsltcD4gjuXZZKeAR348MYLYTm3LzOs/y3j3JTfZxgXWXmTuwPHIc4VmoOmv5IrI53+AO2DdHLjkDWQ3GoEEVFXtXQOvkSnPWcyUceviLhwbDYv8/XIVj97kse7TodLvZXxYxrPUHkQ1ufXs3FEdybEIxucySOesoNvUgWU1cP3MkCBfTFdw9fGaAMVmRELq7LBw2Q3/FaAxxWIRpw+ZIr/7IouPqzUBiqmdHAv7EuhRAwf1er2Vy4x1jW3b2d5Jfvu5IPp7l2LYbcgCFFNb+FoJ7oBqEAqFMPNqFcmEgVMJDfMT+1tvN0pNjERlMS6QA5pFOKxiKVPFhakPeL3It+WGJUDxt2wFR+JhzI7v5ctkd8DXOZAkCYYxhO+lKm4+Xfqz/rIixBuNBl7eOYzkQQNzqX249mRl6zUgEcYkaJrGhUwBinVdh6IouPzwE6/DL5w4oLkH8y981aDf+uq6hlKpJESiUdNfDZi7/ehG9K6KfiA3pml0PLcsq+cSMTj2NL9ukc4UOmz7AZ3+crkC4mHujFvXNaMFB3bEr8xPS6p5O+jXxq4VZtaen7/PwzrntjcLUE0iHPS1Ud1cdiEJl/8WivZk0wXd7zWOMkeF8s0CcAmkNrC2nvXZDbbbN73ccYnZoH9bfgswAFzAe9/h3dbKAAAAAElFTkSuQmCC\" id=\"searchbutton\" class=\"searchicon\" style=\"vertical-align: top; margin-top: -1px;\"/></span>';\n\t\t\tdom.wrapper.appendChild( searchElement );\n\t}\n\n\tdocument.getElementById(\"searchbutton\").addEventListener( 'click', function(event) {\n\t\tdoSearch();\n\t}, false );\n\n\tdocument.getElementById(\"searchinput\").addEventListener( 'keyup', function( event ) {\n\t\tswitch (event.keyCode) {\n\t\t\tcase 13:\n\t\t\t\tevent.preventDefault();\n\t\t\t\tdoSearch();\n\t\t\t\tsearchboxDirty = false;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tsearchboxDirty = true;\n\t\t}\n\t}, false );\n\n\t// Open the search when the 's' key is hit (yes, this conflicts with the notes plugin, disabling for now)\n\t/*\n\tdocument.addEventListener( 'keydown', function( event ) {\n\t\t// Disregard the event if the target is editable or a\n\t\t// modifier is present\n\t\tif ( document.querySelector( ':focus' ) !== null || event.shiftKey || event.altKey || event.ctrlKey || event.metaKey ) return;\n\n\t\tif( event.keyCode === 83 ) {\n\t\t\tevent.preventDefault();\n\t\t\topenSearch();\n\t\t}\n\t}, false );\n*/\n\treturn { open: openSearch };\n})();\n"
  },
  {
    "path": "talk/reveal.js/plugin/zoom-js/zoom.js",
    "content": "// Custom reveal.js integration\n(function(){\n\tvar isEnabled = true;\n\n\tdocument.querySelector( '.reveal .slides' ).addEventListener( 'mousedown', function( event ) {\n\t\tvar modifier = ( Reveal.getConfig().zoomKey ? Reveal.getConfig().zoomKey : 'alt' ) + 'Key';\n\n\t\tvar zoomPadding = 20;\n\t\tvar revealScale = Reveal.getScale();\n\n\t\tif( event[ modifier ] && isEnabled ) {\n\t\t\tevent.preventDefault();\n\n\t\t\tvar bounds = event.target.getBoundingClientRect();\n\n\t\t\tzoom.to({\n\t\t\t\tx: ( bounds.left * revealScale ) - zoomPadding,\n\t\t\t\ty: ( bounds.top * revealScale ) - zoomPadding,\n\t\t\t\twidth: ( bounds.width * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\theight: ( bounds.height * revealScale ) + ( zoomPadding * 2 ),\n\t\t\t\tpan: false\n\t\t\t});\n\t\t}\n\t} );\n\n\tReveal.addEventListener( 'overviewshown', function() { isEnabled = false; } );\n\tReveal.addEventListener( 'overviewhidden', function() { isEnabled = true; } );\n})();\n\n/*!\n * zoom.js 0.3 (modified for use with reveal.js)\n * http://lab.hakim.se/zoom-js\n * MIT licensed\n *\n * Copyright (C) 2011-2014 Hakim El Hattab, http://hakim.se\n */\nvar zoom = (function(){\n\n\t// The current zoom level (scale)\n\tvar level = 1;\n\n\t// The current mouse position, used for panning\n\tvar mouseX = 0,\n\t\tmouseY = 0;\n\n\t// Timeout before pan is activated\n\tvar panEngageTimeout = -1,\n\t\tpanUpdateInterval = -1;\n\n\t// Check for transform support so that we can fallback otherwise\n\tvar supportsTransforms = \t'WebkitTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'MozTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'msTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'OTransform' in document.body.style ||\n\t\t\t\t\t\t\t\t'transform' in document.body.style;\n\n\tif( supportsTransforms ) {\n\t\t// The easing that will be applied when we zoom in/out\n\t\tdocument.body.style.transition = 'transform 0.8s ease';\n\t\tdocument.body.style.OTransition = '-o-transform 0.8s ease';\n\t\tdocument.body.style.msTransition = '-ms-transform 0.8s ease';\n\t\tdocument.body.style.MozTransition = '-moz-transform 0.8s ease';\n\t\tdocument.body.style.WebkitTransition = '-webkit-transform 0.8s ease';\n\t}\n\n\t// Zoom out if the user hits escape\n\tdocument.addEventListener( 'keyup', function( event ) {\n\t\tif( level !== 1 && event.keyCode === 27 ) {\n\t\t\tzoom.out();\n\t\t}\n\t} );\n\n\t// Monitor mouse movement for panning\n\tdocument.addEventListener( 'mousemove', function( event ) {\n\t\tif( level !== 1 ) {\n\t\t\tmouseX = event.clientX;\n\t\t\tmouseY = event.clientY;\n\t\t}\n\t} );\n\n\t/**\n\t * Applies the CSS required to zoom in, prefers the use of CSS3\n\t * transforms but falls back on zoom for IE.\n\t *\n\t * @param {Object} rect\n\t * @param {Number} scale\n\t */\n\tfunction magnify( rect, scale ) {\n\n\t\tvar scrollOffset = getScrollOffset();\n\n\t\t// Ensure a width/height is set\n\t\trect.width = rect.width || 1;\n\t\trect.height = rect.height || 1;\n\n\t\t// Center the rect within the zoomed viewport\n\t\trect.x -= ( window.innerWidth - ( rect.width * scale ) ) / 2;\n\t\trect.y -= ( window.innerHeight - ( rect.height * scale ) ) / 2;\n\n\t\tif( supportsTransforms ) {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.transform = '';\n\t\t\t\tdocument.body.style.OTransform = '';\n\t\t\t\tdocument.body.style.msTransform = '';\n\t\t\t\tdocument.body.style.MozTransform = '';\n\t\t\t\tdocument.body.style.WebkitTransform = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tvar origin = scrollOffset.x +'px '+ scrollOffset.y +'px',\n\t\t\t\t\ttransform = 'translate('+ -rect.x +'px,'+ -rect.y +'px) scale('+ scale +')';\n\n\t\t\t\tdocument.body.style.transformOrigin = origin;\n\t\t\t\tdocument.body.style.OTransformOrigin = origin;\n\t\t\t\tdocument.body.style.msTransformOrigin = origin;\n\t\t\t\tdocument.body.style.MozTransformOrigin = origin;\n\t\t\t\tdocument.body.style.WebkitTransformOrigin = origin;\n\n\t\t\t\tdocument.body.style.transform = transform;\n\t\t\t\tdocument.body.style.OTransform = transform;\n\t\t\t\tdocument.body.style.msTransform = transform;\n\t\t\t\tdocument.body.style.MozTransform = transform;\n\t\t\t\tdocument.body.style.WebkitTransform = transform;\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\t// Reset\n\t\t\tif( scale === 1 ) {\n\t\t\t\tdocument.body.style.position = '';\n\t\t\t\tdocument.body.style.left = '';\n\t\t\t\tdocument.body.style.top = '';\n\t\t\t\tdocument.body.style.width = '';\n\t\t\t\tdocument.body.style.height = '';\n\t\t\t\tdocument.body.style.zoom = '';\n\t\t\t}\n\t\t\t// Scale\n\t\t\telse {\n\t\t\t\tdocument.body.style.position = 'relative';\n\t\t\t\tdocument.body.style.left = ( - ( scrollOffset.x + rect.x ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.top = ( - ( scrollOffset.y + rect.y ) / scale ) + 'px';\n\t\t\t\tdocument.body.style.width = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.height = ( scale * 100 ) + '%';\n\t\t\t\tdocument.body.style.zoom = scale;\n\t\t\t}\n\t\t}\n\n\t\tlevel = scale;\n\n\t\tif( document.documentElement.classList ) {\n\t\t\tif( level !== 1 ) {\n\t\t\t\tdocument.documentElement.classList.add( 'zoomed' );\n\t\t\t}\n\t\t\telse {\n\t\t\t\tdocument.documentElement.classList.remove( 'zoomed' );\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Pan the document when the mosue cursor approaches the edges\n\t * of the window.\n\t */\n\tfunction pan() {\n\t\tvar range = 0.12,\n\t\t\trangeX = window.innerWidth * range,\n\t\t\trangeY = window.innerHeight * range,\n\t\t\tscrollOffset = getScrollOffset();\n\n\t\t// Up\n\t\tif( mouseY < rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y - ( 1 - ( mouseY / rangeY ) ) * ( 14 / level ) );\n\t\t}\n\t\t// Down\n\t\telse if( mouseY > window.innerHeight - rangeY ) {\n\t\t\twindow.scroll( scrollOffset.x, scrollOffset.y + ( 1 - ( window.innerHeight - mouseY ) / rangeY ) * ( 14 / level ) );\n\t\t}\n\n\t\t// Left\n\t\tif( mouseX < rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x - ( 1 - ( mouseX / rangeX ) ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t\t// Right\n\t\telse if( mouseX > window.innerWidth - rangeX ) {\n\t\t\twindow.scroll( scrollOffset.x + ( 1 - ( window.innerWidth - mouseX ) / rangeX ) * ( 14 / level ), scrollOffset.y );\n\t\t}\n\t}\n\n\tfunction getScrollOffset() {\n\t\treturn {\n\t\t\tx: window.scrollX !== undefined ? window.scrollX : window.pageXOffset,\n\t\t\ty: window.scrollY !== undefined ? window.scrollY : window.pageYOffset\n\t\t}\n\t}\n\n\treturn {\n\t\t/**\n\t\t * Zooms in on either a rectangle or HTML element.\n\t\t *\n\t\t * @param {Object} options\n\t\t *   - element: HTML element to zoom in on\n\t\t *   OR\n\t\t *   - x/y: coordinates in non-transformed space to zoom in on\n\t\t *   - width/height: the portion of the screen to zoom in on\n\t\t *   - scale: can be used instead of width/height to explicitly set scale\n\t\t */\n\t\tto: function( options ) {\n\n\t\t\t// Due to an implementation limitation we can't zoom in\n\t\t\t// to another element without zooming out first\n\t\t\tif( level !== 1 ) {\n\t\t\t\tzoom.out();\n\t\t\t}\n\t\t\telse {\n\t\t\t\toptions.x = options.x || 0;\n\t\t\t\toptions.y = options.y || 0;\n\n\t\t\t\t// If an element is set, that takes precedence\n\t\t\t\tif( !!options.element ) {\n\t\t\t\t\t// Space around the zoomed in element to leave on screen\n\t\t\t\t\tvar padding = 20;\n\t\t\t\t\tvar bounds = options.element.getBoundingClientRect();\n\n\t\t\t\t\toptions.x = bounds.left - padding;\n\t\t\t\t\toptions.y = bounds.top - padding;\n\t\t\t\t\toptions.width = bounds.width + ( padding * 2 );\n\t\t\t\t\toptions.height = bounds.height + ( padding * 2 );\n\t\t\t\t}\n\n\t\t\t\t// If width/height values are set, calculate scale from those values\n\t\t\t\tif( options.width !== undefined && options.height !== undefined ) {\n\t\t\t\t\toptions.scale = Math.max( Math.min( window.innerWidth / options.width, window.innerHeight / options.height ), 1 );\n\t\t\t\t}\n\n\t\t\t\tif( options.scale > 1 ) {\n\t\t\t\t\toptions.x *= options.scale;\n\t\t\t\t\toptions.y *= options.scale;\n\n\t\t\t\t\tmagnify( options, options.scale );\n\n\t\t\t\t\tif( options.pan !== false ) {\n\n\t\t\t\t\t\t// Wait with engaging panning as it may conflict with the\n\t\t\t\t\t\t// zoom transition\n\t\t\t\t\t\tpanEngageTimeout = setTimeout( function() {\n\t\t\t\t\t\t\tpanUpdateInterval = setInterval( pan, 1000 / 60 );\n\t\t\t\t\t\t}, 800 );\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t},\n\n\t\t/**\n\t\t * Resets the document zoom state to its default.\n\t\t */\n\t\tout: function() {\n\t\t\tclearTimeout( panEngageTimeout );\n\t\t\tclearInterval( panUpdateInterval );\n\n\t\t\tmagnify( { x: 0, y: 0 }, 1 );\n\n\t\t\tlevel = 1;\n\t\t},\n\n\t\t// Alias\n\t\tmagnify: function( options ) { this.to( options ) },\n\t\treset: function() { this.out() },\n\n\t\tzoomLevel: function() {\n\t\t\treturn level;\n\t\t}\n\t}\n\n})();\n\n\n\n"
  },
  {
    "path": "talk/reveal.js/test/examples/barebones.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Barebones</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Barebones Presentation</h2>\n\t\t\t\t\t<p>This example contains the bare minimum includes and markup required to run a reveal.js presentation.</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>No Theme</h2>\n\t\t\t\t\t<p>There's no theme included, so it will fall back on browser defaults.</p>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize();\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/examples/embedded-media.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Embedded Media</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/default.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Embedded Media Test</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<iframe data-autoplay width=\"420\" height=\"345\" src=\"http://www.youtube.com/embed/l3RQZ4mcr1c\"></iframe>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>Empty Slide</h2>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\ttransition: 'linear'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/examples/math.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Math Plugin</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/night.css\" id=\"theme\">\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h2>reveal.js Math Plugin</h2>\n\t\t\t\t\t<p>A thin wrapper for MathJax</p>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t<script type=\"math/tex; mode=display\">\n\t\t\t\t\t\t\\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right)\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\\]\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Lorenz Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\begin{aligned}\n\t\t\t\t\t\t\t\\dot{x} &amp; = \\sigma(y-x) \\\\\n\t\t\t\t\t\t\t\\dot{y} &amp; = \\rho x - y - xz \\\\\n\t\t\t\t\t\t\t\\dot{z} &amp; = -\\beta z + xy\n\t\t\t\t\t\t\t\\end{aligned} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The Cauchy-Schwarz Inequality</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\left( \\sum_{k=1}^n a_k b_k \\right)^2 \\leq \\left( \\sum_{k=1}^n a_k^2 \\right) \\left( \\sum_{k=1}^n b_k^2 \\right) \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Cross Product Formula</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[\\mathbf{V}_1 \\times \\mathbf{V}_2 =  \\begin{vmatrix}\n\t\t\t\t\t\t\t\\mathbf{i} &amp; \\mathbf{j} &amp; \\mathbf{k} \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial u} &amp;  \\frac{\\partial Y}{\\partial u} &amp; 0 \\\\\n\t\t\t\t\t\t\t\\frac{\\partial X}{\\partial v} &amp;  \\frac{\\partial Y}{\\partial v} &amp; 0\n\t\t\t\t\t\t\t\\end{vmatrix}  \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>The probability of getting \\(k\\) heads when flipping \\(n\\) coins is</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[P(E)   = {n \\choose k} p^k (1-p)^{ n-k} \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>An Identity of Ramanujan</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[ \\frac{1}{\\Bigl(\\sqrt{\\phi \\sqrt{5}}-\\phi\\Bigr) e^{\\frac25 \\pi}} =\n\t\t\t\t\t\t\t1+\\frac{e^{-2\\pi}} {1+\\frac{e^{-4\\pi}} {1+\\frac{e^{-6\\pi}}\n\t\t\t\t\t\t\t{1+\\frac{e^{-8\\pi}} {1+\\ldots} } } } \\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>A Rogers-Ramanujan Identity</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  1 +  \\frac{q^2}{(1-q)}+\\frac{q^6}{(1-q)(1-q^2)}+\\cdots =\n\t\t\t\t\t\t\t\\prod_{j=0}^{\\infty}\\frac{1}{(1-q^{5j+2})(1-q^{5j+3})}\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Maxwell&#8217;s Equations</h3>\n\n\t\t\t\t\t\t<div class=\"fragment\">\n\t\t\t\t\t\t\t\\[  \\begin{aligned}\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{B}} -\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{E}}}{\\partial t} &amp; = \\frac{4\\pi}{c}\\vec{\\mathbf{j}} \\\\   \\nabla \\cdot \\vec{\\mathbf{E}} &amp; = 4 \\pi \\rho \\\\\n\t\t\t\t\t\t\t\\nabla \\times \\vec{\\mathbf{E}}\\, +\\, \\frac1c\\, \\frac{\\partial\\vec{\\mathbf{B}}}{\\partial t} &amp; = \\vec{\\mathbf{0}} \\\\\n\t\t\t\t\t\t\t\\nabla \\cdot \\vec{\\mathbf{B}} &amp; = 0 \\end{aligned}\n\t\t\t\t\t\t\t\\]\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\thistory: true,\n\t\t\t\ttransition: 'linear',\n\n\t\t\t\tmath: {\n\t\t\t\t\t// mathjax: 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\n\t\t\t\t\tconfig: 'TeX-AMS_HTML-full'\n\t\t\t\t},\n\n\t\t\t\tdependencies: [\n\t\t\t\t\t{ src: '../../lib/js/classList.js' },\n\t\t\t\t\t{ src: '../../plugin/math/math.js', async: true }\n\t\t\t\t]\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/examples/slide-backgrounds.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Backgrounds</title>\n\n\t\t<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no\">\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/serif.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h2 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h2 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background=\"#00ffff\">\n\t\t\t\t\t<h2>data-background: #00ffff</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#bb00bb\">\n\t\t\t\t\t<h2>data-background: #bb00bb</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-color=\"lightblue\">\n\t\t\t\t\t<h2>data-background: lightblue</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#ff0000\">\n\t\t\t\t\t\t<h2>data-background: #ff0000</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgba(0, 0, 0, 0.2)\">\n\t\t\t\t\t\t<h2>data-background: rgba(0, 0, 0, 0.2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"salmon\">\n\t\t\t\t\t\t<h2>data-background: salmon</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"rgba(0, 100, 100, 0.2)\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h2>Background applied to stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"rgb(66, 66, 66)\">\n\t\t\t\t\t\t<h2>Background applied to slide inside of stack</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background-transition=\"slide\" data-background=\"assets/image1.png\">\n\t\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"assets/image2.png\" data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\">\n\t\t\t\t\t<h2>Background image</h2>\n\t\t\t\t\t<pre>data-background-size=\"100px\" data-background-repeat=\"repeat\" data-background-color=\"#111\"</pre>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (1/2)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section data-background=\"#888888\">\n\t\t\t\t\t<h2>Same background twice (2/2)</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-video=\"https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.mp4,https://s3.amazonaws.com/static.slid.es/site/homepage/v1/homepage-video-editor.webm\">\n\t\t\t\t\t<h2>Video background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background-iframe=\"https://slides.com\">\n\t\t\t\t\t<h2>Iframe background</h2>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (1/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#417203\">\n\t\t\t\t\t\t<h2>Same background twice vertical (2/2)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t<h2>Same background from horizontal to vertical (1/3)</h2>\n\t\t\t\t</section>\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (2/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-background=\"#934f4d\">\n\t\t\t\t\t\t<h2>Same background from horizontal to vertical (3/3)</h2>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\t// Full list of configuration options available here:\n\t\t\t// https://github.com/hakimel/reveal.js#configuration\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\t// rtl: true,\n\n\t\t\t\ttransition: 'linear',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/examples/slide-transitions.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Slide Transitions</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../../css/theme/white.css\" id=\"theme\">\n\t\t<style type=\"text/css\" media=\"screen\">\n\t\t\t.slides section.has-dark-background,\n\t\t\t.slides section.has-dark-background h3 {\n\t\t\t\tcolor: #fff;\n\t\t\t}\n\t\t\t.slides section.has-light-background,\n\t\t\t.slides section.has-light-background h3 {\n\t\t\t\tcolor: #222;\n\t\t\t}\n\t\t</style>\n\t</head>\n\n\t<body>\n\n\t\t<div class=\"reveal\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t<h3>data-transition: zoom</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"zoom-in fade-out\">\n\t\t\t\t\t<h3>data-transition: zoom-in fade-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex\">\n\t\t\t\t\t<h3>data-transition: convex</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"convex-in concave-out\">\n\t\t\t\t\t<h3>data-transition: convex-in concave-out</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-transition=\"zoom\">\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"concave\">\n\t\t\t\t\t\t<h3>data-transition: concave</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section data-transition=\"convex-in fade-out\">\n\t\t\t\t\t\t<h3>data-transition: convex-in fade-out</h3>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-transition=\"none\">\n\t\t\t\t\t<h3>data-transition: none</h3>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h3>Default</h3>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../../lib/js/head.min.js\"></script>\n\t\t<script src=\"../../js/reveal.js\"></script>\n\n\t\t<script>\n\n\t\t\tReveal.initialize({\n\t\t\t\tcenter: true,\n\t\t\t\thistory: true,\n\n\t\t\t\t// transition: 'slide',\n\t\t\t\t// transitionSpeed: 'slow',\n\t\t\t\t// backgroundTransition: 'slide'\n\t\t\t});\n\n\t\t</script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/qunit-1.12.0.css",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2012 jQuery Foundation and other contributors\n * Released under the MIT license.\n * http://jquery.org/license\n */\n\n/** Font Family and Sizes */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult {\n\tfont-family: \"Helvetica Neue Light\", \"HelveticaNeue-Light\", \"Helvetica Neue\", Calibri, Helvetica, Arial, sans-serif;\n}\n\n#qunit-testrunner-toolbar, #qunit-userAgent, #qunit-testresult, #qunit-tests li { font-size: small; }\n#qunit-tests { font-size: smaller; }\n\n\n/** Resets */\n\n#qunit-tests, #qunit-header, #qunit-banner, #qunit-userAgent, #qunit-testresult, #qunit-modulefilter {\n\tmargin: 0;\n\tpadding: 0;\n}\n\n\n/** Header */\n\n#qunit-header {\n\tpadding: 0.5em 0 0.5em 1em;\n\n\tcolor: #8699a4;\n\tbackground-color: #0d3349;\n\n\tfont-size: 1.5em;\n\tline-height: 1em;\n\tfont-weight: normal;\n\n\tborder-radius: 5px 5px 0 0;\n\t-moz-border-radius: 5px 5px 0 0;\n\t-webkit-border-top-right-radius: 5px;\n\t-webkit-border-top-left-radius: 5px;\n}\n\n#qunit-header a {\n\ttext-decoration: none;\n\tcolor: #c2ccd1;\n}\n\n#qunit-header a:hover,\n#qunit-header a:focus {\n\tcolor: #fff;\n}\n\n#qunit-testrunner-toolbar label {\n\tdisplay: inline-block;\n\tpadding: 0 .5em 0 .1em;\n}\n\n#qunit-banner {\n\theight: 5px;\n}\n\n#qunit-testrunner-toolbar {\n\tpadding: 0.5em 0 0.5em 2em;\n\tcolor: #5E740B;\n\tbackground-color: #eee;\n\toverflow: hidden;\n}\n\n#qunit-userAgent {\n\tpadding: 0.5em 0 0.5em 2.5em;\n\tbackground-color: #2b81af;\n\tcolor: #fff;\n\ttext-shadow: rgba(0, 0, 0, 0.5) 2px 2px 1px;\n}\n\n#qunit-modulefilter-container {\n\tfloat: right;\n}\n\n/** Tests: Pass/Fail */\n\n#qunit-tests {\n\tlist-style-position: inside;\n}\n\n#qunit-tests li {\n\tpadding: 0.4em 0.5em 0.4em 2.5em;\n\tborder-bottom: 1px solid #fff;\n\tlist-style-position: inside;\n}\n\n#qunit-tests.hidepass li.pass, #qunit-tests.hidepass li.running  {\n\tdisplay: none;\n}\n\n#qunit-tests li strong {\n\tcursor: pointer;\n}\n\n#qunit-tests li a {\n\tpadding: 0.5em;\n\tcolor: #c2ccd1;\n\ttext-decoration: none;\n}\n#qunit-tests li a:hover,\n#qunit-tests li a:focus {\n\tcolor: #000;\n}\n\n#qunit-tests li .runtime {\n\tfloat: right;\n\tfont-size: smaller;\n}\n\n.qunit-assert-list {\n\tmargin-top: 0.5em;\n\tpadding: 0.5em;\n\n\tbackground-color: #fff;\n\n\tborder-radius: 5px;\n\t-moz-border-radius: 5px;\n\t-webkit-border-radius: 5px;\n}\n\n.qunit-collapsed {\n\tdisplay: none;\n}\n\n#qunit-tests table {\n\tborder-collapse: collapse;\n\tmargin-top: .2em;\n}\n\n#qunit-tests th {\n\ttext-align: right;\n\tvertical-align: top;\n\tpadding: 0 .5em 0 0;\n}\n\n#qunit-tests td {\n\tvertical-align: top;\n}\n\n#qunit-tests pre {\n\tmargin: 0;\n\twhite-space: pre-wrap;\n\tword-wrap: break-word;\n}\n\n#qunit-tests del {\n\tbackground-color: #e0f2be;\n\tcolor: #374e0c;\n\ttext-decoration: none;\n}\n\n#qunit-tests ins {\n\tbackground-color: #ffcaca;\n\tcolor: #500;\n\ttext-decoration: none;\n}\n\n/*** Test Counts */\n\n#qunit-tests b.counts                       { color: black; }\n#qunit-tests b.passed                       { color: #5E740B; }\n#qunit-tests b.failed                       { color: #710909; }\n\n#qunit-tests li li {\n\tpadding: 5px;\n\tbackground-color: #fff;\n\tborder-bottom: none;\n\tlist-style-position: inside;\n}\n\n/*** Passing Styles */\n\n#qunit-tests li li.pass {\n\tcolor: #3c510c;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #C6E746;\n}\n\n#qunit-tests .pass                          { color: #528CE0; background-color: #D2E0E6; }\n#qunit-tests .pass .test-name               { color: #366097; }\n\n#qunit-tests .pass .test-actual,\n#qunit-tests .pass .test-expected           { color: #999999; }\n\n#qunit-banner.qunit-pass                    { background-color: #C6E746; }\n\n/*** Failing Styles */\n\n#qunit-tests li li.fail {\n\tcolor: #710909;\n\tbackground-color: #fff;\n\tborder-left: 10px solid #EE5757;\n\twhite-space: pre;\n}\n\n#qunit-tests > li:last-child {\n\tborder-radius: 0 0 5px 5px;\n\t-moz-border-radius: 0 0 5px 5px;\n\t-webkit-border-bottom-right-radius: 5px;\n\t-webkit-border-bottom-left-radius: 5px;\n}\n\n#qunit-tests .fail                          { color: #000000; background-color: #EE5757; }\n#qunit-tests .fail .test-name,\n#qunit-tests .fail .module-name             { color: #000000; }\n\n#qunit-tests .fail .test-actual             { color: #EE5757; }\n#qunit-tests .fail .test-expected           { color: green;   }\n\n#qunit-banner.qunit-fail                    { background-color: #EE5757; }\n\n\n/** Result */\n\n#qunit-testresult {\n\tpadding: 0.5em 0.5em 0.5em 2.5em;\n\n\tcolor: #2b81af;\n\tbackground-color: #D2E0E6;\n\n\tborder-bottom: 1px solid white;\n}\n#qunit-testresult .module-name {\n\tfont-weight: bold;\n}\n\n/** Fixture */\n\n#qunit-fixture {\n\tposition: absolute;\n\ttop: -10000px;\n\tleft: -10000px;\n\twidth: 1000px;\n\theight: 1000px;\n}"
  },
  {
    "path": "talk/reveal.js/test/qunit-1.12.0.js",
    "content": "/**\n * QUnit v1.12.0 - A JavaScript Unit Testing Framework\n *\n * http://qunitjs.com\n *\n * Copyright 2013 jQuery Foundation and other contributors\n * Released under the MIT license.\n * https://jquery.org/license/\n */\n\n(function( window ) {\n\nvar QUnit,\n\tassert,\n\tconfig,\n\tonErrorFnPrev,\n\ttestId = 0,\n\tfileName = (sourceFromStacktrace( 0 ) || \"\" ).replace(/(:\\d+)+\\)?/, \"\").replace(/.+\\//, \"\"),\n\ttoString = Object.prototype.toString,\n\thasOwn = Object.prototype.hasOwnProperty,\n\t// Keep a local reference to Date (GH-283)\n\tDate = window.Date,\n\tsetTimeout = window.setTimeout,\n\tdefined = {\n\t\tsetTimeout: typeof window.setTimeout !== \"undefined\",\n\t\tsessionStorage: (function() {\n\t\t\tvar x = \"qunit-test-string\";\n\t\t\ttry {\n\t\t\t\tsessionStorage.setItem( x, x );\n\t\t\t\tsessionStorage.removeItem( x );\n\t\t\t\treturn true;\n\t\t\t} catch( e ) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}())\n\t},\n\t/**\n\t * Provides a normalized error string, correcting an issue\n\t * with IE 7 (and prior) where Error.prototype.toString is\n\t * not properly implemented\n\t *\n\t * Based on http://es5.github.com/#x15.11.4.4\n\t *\n\t * @param {String|Error} error\n\t * @return {String} error message\n\t */\n\terrorString = function( error ) {\n\t\tvar name, message,\n\t\t\terrorString = error.toString();\n\t\tif ( errorString.substring( 0, 7 ) === \"[object\" ) {\n\t\t\tname = error.name ? error.name.toString() : \"Error\";\n\t\t\tmessage = error.message ? error.message.toString() : \"\";\n\t\t\tif ( name && message ) {\n\t\t\t\treturn name + \": \" + message;\n\t\t\t} else if ( name ) {\n\t\t\t\treturn name;\n\t\t\t} else if ( message ) {\n\t\t\t\treturn message;\n\t\t\t} else {\n\t\t\t\treturn \"Error\";\n\t\t\t}\n\t\t} else {\n\t\t\treturn errorString;\n\t\t}\n\t},\n\t/**\n\t * Makes a clone of an object using only Array or Object as base,\n\t * and copies over the own enumerable properties.\n\t *\n\t * @param {Object} obj\n\t * @return {Object} New object with only the own properties (recursively).\n\t */\n\tobjectValues = function( obj ) {\n\t\t// Grunt 0.3.x uses an older version of jshint that still has jshint/jshint#392.\n\t\t/*jshint newcap: false */\n\t\tvar key, val,\n\t\t\tvals = QUnit.is( \"array\", obj ) ? [] : {};\n\t\tfor ( key in obj ) {\n\t\t\tif ( hasOwn.call( obj, key ) ) {\n\t\t\t\tval = obj[key];\n\t\t\t\tvals[key] = val === Object(val) ? objectValues(val) : val;\n\t\t\t}\n\t\t}\n\t\treturn vals;\n\t};\n\nfunction Test( settings ) {\n\textend( this, settings );\n\tthis.assertions = [];\n\tthis.testNumber = ++Test.count;\n}\n\nTest.count = 0;\n\nTest.prototype = {\n\tinit: function() {\n\t\tvar a, b, li,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tif ( tests ) {\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml;\n\n\t\t\t// `a` initialized at top of scope\n\t\t\ta = document.createElement( \"a\" );\n\t\t\ta.innerHTML = \"Rerun\";\n\t\t\ta.href = QUnit.url({ testNumber: this.testNumber });\n\n\t\t\tli = document.createElement( \"li\" );\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.className = \"running\";\n\t\t\tli.id = this.id = \"qunit-test-output\" + testId++;\n\n\t\t\ttests.appendChild( li );\n\t\t}\n\t},\n\tsetup: function() {\n\t\tif (\n\t\t\t// Emit moduleStart when we're switching from one module to another\n\t\t\tthis.module !== config.previousModule ||\n\t\t\t\t// They could be equal (both undefined) but if the previousModule property doesn't\n\t\t\t\t// yet exist it means this is the first test in a suite that isn't wrapped in a\n\t\t\t\t// module, in which case we'll just emit a moduleStart event for 'undefined'.\n\t\t\t\t// Without this, reporters can get testStart before moduleStart  which is a problem.\n\t\t\t\t!hasOwn.call( config, \"previousModule\" )\n\t\t) {\n\t\t\tif ( hasOwn.call( config, \"previousModule\" ) ) {\n\t\t\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\t\t\tname: config.previousModule,\n\t\t\t\t\tfailed: config.moduleStats.bad,\n\t\t\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\t\t\ttotal: config.moduleStats.all\n\t\t\t\t});\n\t\t\t}\n\t\t\tconfig.previousModule = this.module;\n\t\t\tconfig.moduleStats = { all: 0, bad: 0 };\n\t\t\trunLoggingCallbacks( \"moduleStart\", QUnit, {\n\t\t\t\tname: this.module\n\t\t\t});\n\t\t}\n\n\t\tconfig.current = this;\n\n\t\tthis.testEnvironment = extend({\n\t\t\tsetup: function() {},\n\t\t\tteardown: function() {}\n\t\t}, this.moduleTestEnvironment );\n\n\t\tthis.started = +new Date();\n\t\trunLoggingCallbacks( \"testStart\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module\n\t\t});\n\n\t\t/*jshint camelcase:false */\n\n\n\t\t/**\n\t\t * Expose the current test environment.\n\t\t *\n\t\t * @deprecated since 1.12.0: Use QUnit.config.current.testEnvironment instead.\n\t\t */\n\t\tQUnit.current_testEnvironment = this.testEnvironment;\n\n\t\t/*jshint camelcase:true */\n\n\t\tif ( !config.pollution ) {\n\t\t\tsaveGlobal();\n\t\t}\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t}\n\t\ttry {\n\t\t\tthis.testEnvironment.setup.call( this.testEnvironment, QUnit.assert );\n\t\t} catch( e ) {\n\t\t\tQUnit.pushFailure( \"Setup failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t}\n\t},\n\trun: function() {\n\t\tconfig.current = this;\n\n\t\tvar running = id( \"qunit-testresult\" );\n\n\t\tif ( running ) {\n\t\t\trunning.innerHTML = \"Running: <br/>\" + this.nameHtml;\n\t\t}\n\n\t\tif ( this.async ) {\n\t\t\tQUnit.stop();\n\t\t}\n\n\t\tthis.callbackStarted = +new Date();\n\n\t\tif ( config.notrycatch ) {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\treturn;\n\t\t}\n\n\t\ttry {\n\t\t\tthis.callback.call( this.testEnvironment, QUnit.assert );\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t} catch( e ) {\n\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\n\t\t\tQUnit.pushFailure( \"Died on test #\" + (this.assertions.length + 1) + \" \" + this.stack + \": \" + ( e.message || e ), extractStacktrace( e, 0 ) );\n\t\t\t// else next test will carry the responsibility\n\t\t\tsaveGlobal();\n\n\t\t\t// Restart the tests if they're blocking\n\t\t\tif ( config.blocking ) {\n\t\t\t\tQUnit.start();\n\t\t\t}\n\t\t}\n\t},\n\tteardown: function() {\n\t\tconfig.current = this;\n\t\tif ( config.notrycatch ) {\n\t\t\tif ( typeof this.callbackRuntime === \"undefined\" ) {\n\t\t\t\tthis.callbackRuntime = +new Date() - this.callbackStarted;\n\t\t\t}\n\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\treturn;\n\t\t} else {\n\t\t\ttry {\n\t\t\t\tthis.testEnvironment.teardown.call( this.testEnvironment, QUnit.assert );\n\t\t\t} catch( e ) {\n\t\t\t\tQUnit.pushFailure( \"Teardown failed on \" + this.testName + \": \" + ( e.message || e ), extractStacktrace( e, 1 ) );\n\t\t\t}\n\t\t}\n\t\tcheckPollution();\n\t},\n\tfinish: function() {\n\t\tconfig.current = this;\n\t\tif ( config.requireExpects && this.expected === null ) {\n\t\t\tQUnit.pushFailure( \"Expected number of assertions to be defined, but expect() was not called.\", this.stack );\n\t\t} else if ( this.expected !== null && this.expected !== this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected \" + this.expected + \" assertions, but \" + this.assertions.length + \" were run\", this.stack );\n\t\t} else if ( this.expected === null && !this.assertions.length ) {\n\t\t\tQUnit.pushFailure( \"Expected at least one assertion, but none were run - call expect(0) to accept zero assertions.\", this.stack );\n\t\t}\n\n\t\tvar i, assertion, a, b, time, li, ol,\n\t\t\ttest = this,\n\t\t\tgood = 0,\n\t\t\tbad = 0,\n\t\t\ttests = id( \"qunit-tests\" );\n\n\t\tthis.runtime = +new Date() - this.started;\n\t\tconfig.stats.all += this.assertions.length;\n\t\tconfig.moduleStats.all += this.assertions.length;\n\n\t\tif ( tests ) {\n\t\t\tol = document.createElement( \"ol\" );\n\t\t\tol.className = \"qunit-assert-list\";\n\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tassertion = this.assertions[i];\n\n\t\t\t\tli = document.createElement( \"li\" );\n\t\t\t\tli.className = assertion.result ? \"pass\" : \"fail\";\n\t\t\t\tli.innerHTML = assertion.message || ( assertion.result ? \"okay\" : \"failed\" );\n\t\t\t\tol.appendChild( li );\n\n\t\t\t\tif ( assertion.result ) {\n\t\t\t\t\tgood++;\n\t\t\t\t} else {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// store result when possible\n\t\t\tif ( QUnit.config.reorder && defined.sessionStorage ) {\n\t\t\t\tif ( bad ) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-test-\" + this.module + \"-\" + this.testName, bad );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif ( bad === 0 ) {\n\t\t\t\taddClass( ol, \"qunit-collapsed\" );\n\t\t\t}\n\n\t\t\t// `b` initialized at top of scope\n\t\t\tb = document.createElement( \"strong\" );\n\t\t\tb.innerHTML = this.nameHtml + \" <b class='counts'>(<b class='failed'>\" + bad + \"</b>, <b class='passed'>\" + good + \"</b>, \" + this.assertions.length + \")</b>\";\n\n\t\t\taddEvent(b, \"click\", function() {\n\t\t\t\tvar next = b.parentNode.lastChild,\n\t\t\t\t\tcollapsed = hasClass( next, \"qunit-collapsed\" );\n\t\t\t\t( collapsed ? removeClass : addClass )( next, \"qunit-collapsed\" );\n\t\t\t});\n\n\t\t\taddEvent(b, \"dblclick\", function( e ) {\n\t\t\t\tvar target = e && e.target ? e.target : window.event.srcElement;\n\t\t\t\tif ( target.nodeName.toLowerCase() === \"span\" || target.nodeName.toLowerCase() === \"b\" ) {\n\t\t\t\t\ttarget = target.parentNode;\n\t\t\t\t}\n\t\t\t\tif ( window.location && target.nodeName.toLowerCase() === \"strong\" ) {\n\t\t\t\t\twindow.location = QUnit.url({ testNumber: test.testNumber });\n\t\t\t\t}\n\t\t\t});\n\n\t\t\t// `time` initialized at top of scope\n\t\t\ttime = document.createElement( \"span\" );\n\t\t\ttime.className = \"runtime\";\n\t\t\ttime.innerHTML = this.runtime + \" ms\";\n\n\t\t\t// `li` initialized at top of scope\n\t\t\tli = id( this.id );\n\t\t\tli.className = bad ? \"fail\" : \"pass\";\n\t\t\tli.removeChild( li.firstChild );\n\t\t\ta = li.firstChild;\n\t\t\tli.appendChild( b );\n\t\t\tli.appendChild( a );\n\t\t\tli.appendChild( time );\n\t\t\tli.appendChild( ol );\n\n\t\t} else {\n\t\t\tfor ( i = 0; i < this.assertions.length; i++ ) {\n\t\t\t\tif ( !this.assertions[i].result ) {\n\t\t\t\t\tbad++;\n\t\t\t\t\tconfig.stats.bad++;\n\t\t\t\t\tconfig.moduleStats.bad++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\trunLoggingCallbacks( \"testDone\", QUnit, {\n\t\t\tname: this.testName,\n\t\t\tmodule: this.module,\n\t\t\tfailed: bad,\n\t\t\tpassed: this.assertions.length - bad,\n\t\t\ttotal: this.assertions.length,\n\t\t\tduration: this.runtime\n\t\t});\n\n\t\tQUnit.reset();\n\n\t\tconfig.current = undefined;\n\t},\n\n\tqueue: function() {\n\t\tvar bad,\n\t\t\ttest = this;\n\n\t\tsynchronize(function() {\n\t\t\ttest.init();\n\t\t});\n\t\tfunction run() {\n\t\t\t// each of these can by async\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.setup();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.run();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.teardown();\n\t\t\t});\n\t\t\tsynchronize(function() {\n\t\t\t\ttest.finish();\n\t\t\t});\n\t\t}\n\n\t\t// `bad` initialized at top of scope\n\t\t// defer when previous test run passed, if storage is available\n\t\tbad = QUnit.config.reorder && defined.sessionStorage &&\n\t\t\t\t\t\t+sessionStorage.getItem( \"qunit-test-\" + this.module + \"-\" + this.testName );\n\n\t\tif ( bad ) {\n\t\t\trun();\n\t\t} else {\n\t\t\tsynchronize( run, true );\n\t\t}\n\t}\n};\n\n// Root QUnit object.\n// `QUnit` initialized at top of scope\nQUnit = {\n\n\t// call on start of module test to prepend name to all tests\n\tmodule: function( name, testEnvironment ) {\n\t\tconfig.currentModule = name;\n\t\tconfig.currentModuleTestEnvironment = testEnvironment;\n\t\tconfig.modules[name] = true;\n\t},\n\n\tasyncTest: function( testName, expected, callback ) {\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tQUnit.test( testName, expected, callback, true );\n\t},\n\n\ttest: function( testName, expected, callback, async ) {\n\t\tvar test,\n\t\t\tnameHtml = \"<span class='test-name'>\" + escapeText( testName ) + \"</span>\";\n\n\t\tif ( arguments.length === 2 ) {\n\t\t\tcallback = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tif ( config.currentModule ) {\n\t\t\tnameHtml = \"<span class='module-name'>\" + escapeText( config.currentModule ) + \"</span>: \" + nameHtml;\n\t\t}\n\n\t\ttest = new Test({\n\t\t\tnameHtml: nameHtml,\n\t\t\ttestName: testName,\n\t\t\texpected: expected,\n\t\t\tasync: async,\n\t\t\tcallback: callback,\n\t\t\tmodule: config.currentModule,\n\t\t\tmoduleTestEnvironment: config.currentModuleTestEnvironment,\n\t\t\tstack: sourceFromStacktrace( 2 )\n\t\t});\n\n\t\tif ( !validTest( test ) ) {\n\t\t\treturn;\n\t\t}\n\n\t\ttest.queue();\n\t},\n\n\t// Specify the number of expected assertions to guarantee that failed test (no assertions are run at all) don't slip through.\n\texpect: function( asserts ) {\n\t\tif (arguments.length === 1) {\n\t\t\tconfig.current.expected = asserts;\n\t\t} else {\n\t\t\treturn config.current.expected;\n\t\t}\n\t},\n\n\tstart: function( count ) {\n\t\t// QUnit hasn't been initialized yet.\n\t\t// Note: RequireJS (et al) may delay onLoad\n\t\tif ( config.semaphore === undefined ) {\n\t\t\tQUnit.begin(function() {\n\t\t\t\t// This is triggered at the top of QUnit.load, push start() to the event loop, to allow QUnit.load to finish first\n\t\t\t\tsetTimeout(function() {\n\t\t\t\t\tQUnit.start( count );\n\t\t\t\t});\n\t\t\t});\n\t\t\treturn;\n\t\t}\n\n\t\tconfig.semaphore -= count || 1;\n\t\t// don't start until equal number of stop-calls\n\t\tif ( config.semaphore > 0 ) {\n\t\t\treturn;\n\t\t}\n\t\t// ignore if start is called more often then stop\n\t\tif ( config.semaphore < 0 ) {\n\t\t\tconfig.semaphore = 0;\n\t\t\tQUnit.pushFailure( \"Called start() while already started (QUnit.config.semaphore was 0 already)\", null, sourceFromStacktrace(2) );\n\t\t\treturn;\n\t\t}\n\t\t// A slight delay, to avoid any current callbacks\n\t\tif ( defined.setTimeout ) {\n\t\t\tsetTimeout(function() {\n\t\t\t\tif ( config.semaphore > 0 ) {\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tif ( config.timeout ) {\n\t\t\t\t\tclearTimeout( config.timeout );\n\t\t\t\t}\n\n\t\t\t\tconfig.blocking = false;\n\t\t\t\tprocess( true );\n\t\t\t}, 13);\n\t\t} else {\n\t\t\tconfig.blocking = false;\n\t\t\tprocess( true );\n\t\t}\n\t},\n\n\tstop: function( count ) {\n\t\tconfig.semaphore += count || 1;\n\t\tconfig.blocking = true;\n\n\t\tif ( config.testTimeout && defined.setTimeout ) {\n\t\t\tclearTimeout( config.timeout );\n\t\t\tconfig.timeout = setTimeout(function() {\n\t\t\t\tQUnit.ok( false, \"Test timed out\" );\n\t\t\t\tconfig.semaphore = 1;\n\t\t\t\tQUnit.start();\n\t\t\t}, config.testTimeout );\n\t\t}\n\t}\n};\n\n// `assert` initialized at top of scope\n// Assert helpers\n// All of these must either call QUnit.push() or manually do:\n// - runLoggingCallbacks( \"log\", .. );\n// - config.current.assertions.push({ .. });\n// We attach it to the QUnit object *after* we expose the public API,\n// otherwise `assert` will become a global variable in browsers (#341).\nassert = {\n\t/**\n\t * Asserts rough true-ish result.\n\t * @name ok\n\t * @function\n\t * @example ok( \"asdfasdf\".length > 5, \"There must be at least 5 chars\" );\n\t */\n\tok: function( result, msg ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"ok() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\t\tresult = !!result;\n\t\tmsg = msg || (result ? \"okay\" : \"failed\" );\n\n\t\tvar source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: msg\n\t\t\t};\n\n\t\tmsg = \"<span class='test-message'>\" + escapeText( msg ) + \"</span>\";\n\n\t\tif ( !result ) {\n\t\t\tsource = sourceFromStacktrace( 2 );\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\tmsg += \"<table><tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr></table>\";\n\t\t\t}\n\t\t}\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\t\tconfig.current.assertions.push({\n\t\t\tresult: result,\n\t\t\tmessage: msg\n\t\t});\n\t},\n\n\t/**\n\t * Assert that the first two arguments are equal, with an optional message.\n\t * Prints out both actual and expected values.\n\t * @name equal\n\t * @function\n\t * @example equal( format( \"Received {0} bytes.\", 2), \"Received 2 bytes.\", \"format() replaces {0} with next argument\" );\n\t */\n\tequal: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected == actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notEqual\n\t * @function\n\t */\n\tnotEqual: function( actual, expected, message ) {\n\t\t/*jshint eqeqeq:false */\n\t\tQUnit.push( expected != actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name propEqual\n\t * @function\n\t */\n\tpropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notPropEqual\n\t * @function\n\t */\n\tnotPropEqual: function( actual, expected, message ) {\n\t\tactual = objectValues(actual);\n\t\texpected = objectValues(expected);\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name deepEqual\n\t * @function\n\t */\n\tdeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name notDeepEqual\n\t * @function\n\t */\n\tnotDeepEqual: function( actual, expected, message ) {\n\t\tQUnit.push( !QUnit.equiv(actual, expected), actual, expected, message );\n\t},\n\n\t/**\n\t * @name strictEqual\n\t * @function\n\t */\n\tstrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected === actual, actual, expected, message );\n\t},\n\n\t/**\n\t * @name notStrictEqual\n\t * @function\n\t */\n\tnotStrictEqual: function( actual, expected, message ) {\n\t\tQUnit.push( expected !== actual, actual, expected, message );\n\t},\n\n\t\"throws\": function( block, expected, message ) {\n\t\tvar actual,\n\t\t\texpectedOutput = expected,\n\t\t\tok = false;\n\n\t\t// 'expected' is optional\n\t\tif ( typeof expected === \"string\" ) {\n\t\t\tmessage = expected;\n\t\t\texpected = null;\n\t\t}\n\n\t\tconfig.current.ignoreGlobalErrors = true;\n\t\ttry {\n\t\t\tblock.call( config.current.testEnvironment );\n\t\t} catch (e) {\n\t\t\tactual = e;\n\t\t}\n\t\tconfig.current.ignoreGlobalErrors = false;\n\n\t\tif ( actual ) {\n\t\t\t// we don't want to validate thrown error\n\t\t\tif ( !expected ) {\n\t\t\t\tok = true;\n\t\t\t\texpectedOutput = null;\n\t\t\t// expected is a regexp\n\t\t\t} else if ( QUnit.objectType( expected ) === \"regexp\" ) {\n\t\t\t\tok = expected.test( errorString( actual ) );\n\t\t\t// expected is a constructor\n\t\t\t} else if ( actual instanceof expected ) {\n\t\t\t\tok = true;\n\t\t\t// expected is a validation function which returns true is validation passed\n\t\t\t} else if ( expected.call( {}, actual ) === true ) {\n\t\t\t\texpectedOutput = null;\n\t\t\t\tok = true;\n\t\t\t}\n\n\t\t\tQUnit.push( ok, actual, expectedOutput, message );\n\t\t} else {\n\t\t\tQUnit.pushFailure( message, null, \"No exception was thrown.\" );\n\t\t}\n\t}\n};\n\n/**\n * @deprecated since 1.8.0\n * Kept assertion helpers in root for backwards compatibility.\n */\nextend( QUnit, assert );\n\n/**\n * @deprecated since 1.9.0\n * Kept root \"raises()\" for backwards compatibility.\n * (Note that we don't introduce assert.raises).\n */\nQUnit.raises = assert[ \"throws\" ];\n\n/**\n * @deprecated since 1.0.0, replaced with error pushes since 1.3.0\n * Kept to avoid TypeErrors for undefined methods.\n */\nQUnit.equals = function() {\n\tQUnit.push( false, false, false, \"QUnit.equals has been deprecated since 2009 (e88049a0), use QUnit.equal instead\" );\n};\nQUnit.same = function() {\n\tQUnit.push( false, false, false, \"QUnit.same has been deprecated since 2009 (e88049a0), use QUnit.deepEqual instead\" );\n};\n\n// We want access to the constructor's prototype\n(function() {\n\tfunction F() {}\n\tF.prototype = QUnit;\n\tQUnit = new F();\n\t// Make F QUnit's constructor so that we can add to the prototype later\n\tQUnit.constructor = F;\n}());\n\n/**\n * Config object: Maintain internal state\n * Later exposed as QUnit.config\n * `config` initialized at top of scope\n */\nconfig = {\n\t// The queue of tests to run\n\tqueue: [],\n\n\t// block until document ready\n\tblocking: true,\n\n\t// when enabled, show only failing tests\n\t// gets persisted through sessionStorage and can be changed in UI via checkbox\n\thidepassed: false,\n\n\t// by default, run previously failed tests first\n\t// very useful in combination with \"Hide passed tests\" checked\n\treorder: true,\n\n\t// by default, modify document.title when suite is done\n\taltertitle: true,\n\n\t// when enabled, all tests must call expect()\n\trequireExpects: false,\n\n\t// add checkboxes that are persisted in the query-string\n\t// when enabled, the id is set to `true` as a `QUnit.config` property\n\turlConfig: [\n\t\t{\n\t\t\tid: \"noglobals\",\n\t\t\tlabel: \"Check for Globals\",\n\t\t\ttooltip: \"Enabling this will test if any test introduces new properties on the `window` object. Stored as query-strings.\"\n\t\t},\n\t\t{\n\t\t\tid: \"notrycatch\",\n\t\t\tlabel: \"No try-catch\",\n\t\t\ttooltip: \"Enabling this will run tests outside of a try-catch block. Makes debugging exceptions in IE reasonable. Stored as query-strings.\"\n\t\t}\n\t],\n\n\t// Set of all modules.\n\tmodules: {},\n\n\t// logging callback queues\n\tbegin: [],\n\tdone: [],\n\tlog: [],\n\ttestStart: [],\n\ttestDone: [],\n\tmoduleStart: [],\n\tmoduleDone: []\n};\n\n// Export global variables, unless an 'exports' object exists,\n// in that case we assume we're in CommonJS (dealt with on the bottom of the script)\nif ( typeof exports === \"undefined\" ) {\n\textend( window, QUnit.constructor.prototype );\n\n\t// Expose QUnit object\n\twindow.QUnit = QUnit;\n}\n\n// Initialize more QUnit.config and QUnit.urlParams\n(function() {\n\tvar i,\n\t\tlocation = window.location || { search: \"\", protocol: \"file:\" },\n\t\tparams = location.search.slice( 1 ).split( \"&\" ),\n\t\tlength = params.length,\n\t\turlParams = {},\n\t\tcurrent;\n\n\tif ( params[ 0 ] ) {\n\t\tfor ( i = 0; i < length; i++ ) {\n\t\t\tcurrent = params[ i ].split( \"=\" );\n\t\t\tcurrent[ 0 ] = decodeURIComponent( current[ 0 ] );\n\t\t\t// allow just a key to turn on a flag, e.g., test.html?noglobals\n\t\t\tcurrent[ 1 ] = current[ 1 ] ? decodeURIComponent( current[ 1 ] ) : true;\n\t\t\turlParams[ current[ 0 ] ] = current[ 1 ];\n\t\t}\n\t}\n\n\tQUnit.urlParams = urlParams;\n\n\t// String search anywhere in moduleName+testName\n\tconfig.filter = urlParams.filter;\n\n\t// Exact match of the module name\n\tconfig.module = urlParams.module;\n\n\tconfig.testNumber = parseInt( urlParams.testNumber, 10 ) || null;\n\n\t// Figure out if we're running the tests from a server or not\n\tQUnit.isLocal = location.protocol === \"file:\";\n}());\n\n// Extend QUnit object,\n// these after set here because they should not be exposed as global functions\nextend( QUnit, {\n\tassert: assert,\n\n\tconfig: config,\n\n\t// Initialize the configuration options\n\tinit: function() {\n\t\textend( config, {\n\t\t\tstats: { all: 0, bad: 0 },\n\t\t\tmoduleStats: { all: 0, bad: 0 },\n\t\t\tstarted: +new Date(),\n\t\t\tupdateRate: 1000,\n\t\t\tblocking: false,\n\t\t\tautostart: true,\n\t\t\tautorun: false,\n\t\t\tfilter: \"\",\n\t\t\tqueue: [],\n\t\t\tsemaphore: 1\n\t\t});\n\n\t\tvar tests, banner, result,\n\t\t\tqunit = id( \"qunit\" );\n\n\t\tif ( qunit ) {\n\t\t\tqunit.innerHTML =\n\t\t\t\t\"<h1 id='qunit-header'>\" + escapeText( document.title ) + \"</h1>\" +\n\t\t\t\t\"<h2 id='qunit-banner'></h2>\" +\n\t\t\t\t\"<div id='qunit-testrunner-toolbar'></div>\" +\n\t\t\t\t\"<h2 id='qunit-userAgent'></h2>\" +\n\t\t\t\t\"<ol id='qunit-tests'></ol>\";\n\t\t}\n\n\t\ttests = id( \"qunit-tests\" );\n\t\tbanner = id( \"qunit-banner\" );\n\t\tresult = id( \"qunit-testresult\" );\n\n\t\tif ( tests ) {\n\t\t\ttests.innerHTML = \"\";\n\t\t}\n\n\t\tif ( banner ) {\n\t\t\tbanner.className = \"\";\n\t\t}\n\n\t\tif ( result ) {\n\t\t\tresult.parentNode.removeChild( result );\n\t\t}\n\n\t\tif ( tests ) {\n\t\t\tresult = document.createElement( \"p\" );\n\t\t\tresult.id = \"qunit-testresult\";\n\t\t\tresult.className = \"result\";\n\t\t\ttests.parentNode.insertBefore( result, tests );\n\t\t\tresult.innerHTML = \"Running...<br/>&nbsp;\";\n\t\t}\n\t},\n\n\t// Resets the test setup. Useful for tests that modify the DOM.\n\t/*\n\tDEPRECATED: Use multiple tests instead of resetting inside a test.\n\tUse testStart or testDone for custom cleanup.\n\tThis method will throw an error in 2.0, and will be removed in 2.1\n\t*/\n\treset: function() {\n\t\tvar fixture = id( \"qunit-fixture\" );\n\t\tif ( fixture ) {\n\t\t\tfixture.innerHTML = config.fixture;\n\t\t}\n\t},\n\n\t// Trigger an event on an element.\n\t// @example triggerEvent( document.body, \"click\" );\n\ttriggerEvent: function( elem, type, event ) {\n\t\tif ( document.createEvent ) {\n\t\t\tevent = document.createEvent( \"MouseEvents\" );\n\t\t\tevent.initMouseEvent(type, true, true, elem.ownerDocument.defaultView,\n\t\t\t\t0, 0, 0, 0, 0, false, false, false, false, 0, null);\n\n\t\t\telem.dispatchEvent( event );\n\t\t} else if ( elem.fireEvent ) {\n\t\t\telem.fireEvent( \"on\" + type );\n\t\t}\n\t},\n\n\t// Safe object type checking\n\tis: function( type, obj ) {\n\t\treturn QUnit.objectType( obj ) === type;\n\t},\n\n\tobjectType: function( obj ) {\n\t\tif ( typeof obj === \"undefined\" ) {\n\t\t\t\treturn \"undefined\";\n\t\t// consider: typeof null === object\n\t\t}\n\t\tif ( obj === null ) {\n\t\t\t\treturn \"null\";\n\t\t}\n\n\t\tvar match = toString.call( obj ).match(/^\\[object\\s(.*)\\]$/),\n\t\t\ttype = match && match[1] || \"\";\n\n\t\tswitch ( type ) {\n\t\t\tcase \"Number\":\n\t\t\t\tif ( isNaN(obj) ) {\n\t\t\t\t\treturn \"nan\";\n\t\t\t\t}\n\t\t\t\treturn \"number\";\n\t\t\tcase \"String\":\n\t\t\tcase \"Boolean\":\n\t\t\tcase \"Array\":\n\t\t\tcase \"Date\":\n\t\t\tcase \"RegExp\":\n\t\t\tcase \"Function\":\n\t\t\t\treturn type.toLowerCase();\n\t\t}\n\t\tif ( typeof obj === \"object\" ) {\n\t\t\treturn \"object\";\n\t\t}\n\t\treturn undefined;\n\t},\n\n\tpush: function( result, actual, expected, message ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"assertion outside test context, was \" + sourceFromStacktrace() );\n\t\t}\n\n\t\tvar output, source,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: result,\n\t\t\t\tmessage: message,\n\t\t\t\tactual: actual,\n\t\t\t\texpected: expected\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || ( result ? \"okay\" : \"failed\" );\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\tif ( !result ) {\n\t\t\texpected = escapeText( QUnit.jsDump.parse(expected) );\n\t\t\tactual = escapeText( QUnit.jsDump.parse(actual) );\n\t\t\toutput += \"<table><tr class='test-expected'><th>Expected: </th><td><pre>\" + expected + \"</pre></td></tr>\";\n\n\t\t\tif ( actual !== expected ) {\n\t\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + actual + \"</pre></td></tr>\";\n\t\t\t\toutput += \"<tr class='test-diff'><th>Diff: </th><td><pre>\" + QUnit.diff( expected, actual ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\tsource = sourceFromStacktrace();\n\n\t\t\tif ( source ) {\n\t\t\t\tdetails.source = source;\n\t\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t\t}\n\n\t\t\toutput += \"</table>\";\n\t\t}\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: !!result,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\tpushFailure: function( message, source, actual ) {\n\t\tif ( !config.current ) {\n\t\t\tthrow new Error( \"pushFailure() assertion outside test context, was \" + sourceFromStacktrace(2) );\n\t\t}\n\n\t\tvar output,\n\t\t\tdetails = {\n\t\t\t\tmodule: config.current.module,\n\t\t\t\tname: config.current.testName,\n\t\t\t\tresult: false,\n\t\t\t\tmessage: message\n\t\t\t};\n\n\t\tmessage = escapeText( message ) || \"error\";\n\t\tmessage = \"<span class='test-message'>\" + message + \"</span>\";\n\t\toutput = message;\n\n\t\toutput += \"<table>\";\n\n\t\tif ( actual ) {\n\t\t\toutput += \"<tr class='test-actual'><th>Result: </th><td><pre>\" + escapeText( actual ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\tif ( source ) {\n\t\t\tdetails.source = source;\n\t\t\toutput += \"<tr class='test-source'><th>Source: </th><td><pre>\" + escapeText( source ) + \"</pre></td></tr>\";\n\t\t}\n\n\t\toutput += \"</table>\";\n\n\t\trunLoggingCallbacks( \"log\", QUnit, details );\n\n\t\tconfig.current.assertions.push({\n\t\t\tresult: false,\n\t\t\tmessage: output\n\t\t});\n\t},\n\n\turl: function( params ) {\n\t\tparams = extend( extend( {}, QUnit.urlParams ), params );\n\t\tvar key,\n\t\t\tquerystring = \"?\";\n\n\t\tfor ( key in params ) {\n\t\t\tif ( hasOwn.call( params, key ) ) {\n\t\t\t\tquerystring += encodeURIComponent( key ) + \"=\" +\n\t\t\t\t\tencodeURIComponent( params[ key ] ) + \"&\";\n\t\t\t}\n\t\t}\n\t\treturn window.location.protocol + \"//\" + window.location.host +\n\t\t\twindow.location.pathname + querystring.slice( 0, -1 );\n\t},\n\n\textend: extend,\n\tid: id,\n\taddEvent: addEvent,\n\taddClass: addClass,\n\thasClass: hasClass,\n\tremoveClass: removeClass\n\t// load, equiv, jsDump, diff: Attached later\n});\n\n/**\n * @deprecated: Created for backwards compatibility with test runner that set the hook function\n * into QUnit.{hook}, instead of invoking it and passing the hook function.\n * QUnit.constructor is set to the empty F() above so that we can add to it's prototype here.\n * Doing this allows us to tell if the following methods have been overwritten on the actual\n * QUnit object.\n */\nextend( QUnit.constructor.prototype, {\n\n\t// Logging callbacks; all receive a single argument with the listed properties\n\t// run test/logs.html for any related changes\n\tbegin: registerLoggingCallback( \"begin\" ),\n\n\t// done: { failed, passed, total, runtime }\n\tdone: registerLoggingCallback( \"done\" ),\n\n\t// log: { result, actual, expected, message }\n\tlog: registerLoggingCallback( \"log\" ),\n\n\t// testStart: { name }\n\ttestStart: registerLoggingCallback( \"testStart\" ),\n\n\t// testDone: { name, failed, passed, total, duration }\n\ttestDone: registerLoggingCallback( \"testDone\" ),\n\n\t// moduleStart: { name }\n\tmoduleStart: registerLoggingCallback( \"moduleStart\" ),\n\n\t// moduleDone: { name, failed, passed, total }\n\tmoduleDone: registerLoggingCallback( \"moduleDone\" )\n});\n\nif ( typeof document === \"undefined\" || document.readyState === \"complete\" ) {\n\tconfig.autorun = true;\n}\n\nQUnit.load = function() {\n\trunLoggingCallbacks( \"begin\", QUnit, {} );\n\n\t// Initialize the config, saving the execution queue\n\tvar banner, filter, i, label, len, main, ol, toolbar, userAgent, val,\n\t\turlConfigCheckboxesContainer, urlConfigCheckboxes, moduleFilter,\n\t\tnumModules = 0,\n\t\tmoduleNames = [],\n\t\tmoduleFilterHtml = \"\",\n\t\turlConfigHtml = \"\",\n\t\toldconfig = extend( {}, config );\n\n\tQUnit.init();\n\textend(config, oldconfig);\n\n\tconfig.blocking = false;\n\n\tlen = config.urlConfig.length;\n\n\tfor ( i = 0; i < len; i++ ) {\n\t\tval = config.urlConfig[i];\n\t\tif ( typeof val === \"string\" ) {\n\t\t\tval = {\n\t\t\t\tid: val,\n\t\t\t\tlabel: val,\n\t\t\t\ttooltip: \"[no tooltip available]\"\n\t\t\t};\n\t\t}\n\t\tconfig[ val.id ] = QUnit.urlParams[ val.id ];\n\t\turlConfigHtml += \"<input id='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' name='\" + escapeText( val.id ) +\n\t\t\t\"' type='checkbox'\" + ( config[ val.id ] ? \" checked='checked'\" : \"\" ) +\n\t\t\t\" title='\" + escapeText( val.tooltip ) +\n\t\t\t\"'><label for='qunit-urlconfig-\" + escapeText( val.id ) +\n\t\t\t\"' title='\" + escapeText( val.tooltip ) + \"'>\" + val.label + \"</label>\";\n\t}\n\tfor ( i in config.modules ) {\n\t\tif ( config.modules.hasOwnProperty( i ) ) {\n\t\t\tmoduleNames.push(i);\n\t\t}\n\t}\n\tnumModules = moduleNames.length;\n\tmoduleNames.sort( function( a, b ) {\n\t\treturn a.localeCompare( b );\n\t});\n\tmoduleFilterHtml += \"<label for='qunit-modulefilter'>Module: </label><select id='qunit-modulefilter' name='modulefilter'><option value='' \" +\n\t\t( config.module === undefined  ? \"selected='selected'\" : \"\" ) +\n\t\t\">< All Modules ></option>\";\n\n\n\tfor ( i = 0; i < numModules; i++) {\n\t\t\tmoduleFilterHtml += \"<option value='\" + escapeText( encodeURIComponent(moduleNames[i]) ) + \"' \" +\n\t\t\t\t( config.module === moduleNames[i] ? \"selected='selected'\" : \"\" ) +\n\t\t\t\t\">\" + escapeText(moduleNames[i]) + \"</option>\";\n\t}\n\tmoduleFilterHtml += \"</select>\";\n\n\t// `userAgent` initialized at top of scope\n\tuserAgent = id( \"qunit-userAgent\" );\n\tif ( userAgent ) {\n\t\tuserAgent.innerHTML = navigator.userAgent;\n\t}\n\n\t// `banner` initialized at top of scope\n\tbanner = id( \"qunit-header\" );\n\tif ( banner ) {\n\t\tbanner.innerHTML = \"<a href='\" + QUnit.url({ filter: undefined, module: undefined, testNumber: undefined }) + \"'>\" + banner.innerHTML + \"</a> \";\n\t}\n\n\t// `toolbar` initialized at top of scope\n\ttoolbar = id( \"qunit-testrunner-toolbar\" );\n\tif ( toolbar ) {\n\t\t// `filter` initialized at top of scope\n\t\tfilter = document.createElement( \"input\" );\n\t\tfilter.type = \"checkbox\";\n\t\tfilter.id = \"qunit-filter-pass\";\n\n\t\taddEvent( filter, \"click\", function() {\n\t\t\tvar tmp,\n\t\t\t\tol = document.getElementById( \"qunit-tests\" );\n\n\t\t\tif ( filter.checked ) {\n\t\t\t\tol.className = ol.className + \" hidepass\";\n\t\t\t} else {\n\t\t\t\ttmp = \" \" + ol.className.replace( /[\\n\\t\\r]/g, \" \" ) + \" \";\n\t\t\t\tol.className = tmp.replace( / hidepass /, \" \" );\n\t\t\t}\n\t\t\tif ( defined.sessionStorage ) {\n\t\t\t\tif (filter.checked) {\n\t\t\t\t\tsessionStorage.setItem( \"qunit-filter-passed-tests\", \"true\" );\n\t\t\t\t} else {\n\t\t\t\t\tsessionStorage.removeItem( \"qunit-filter-passed-tests\" );\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\n\t\tif ( config.hidepassed || defined.sessionStorage && sessionStorage.getItem( \"qunit-filter-passed-tests\" ) ) {\n\t\t\tfilter.checked = true;\n\t\t\t// `ol` initialized at top of scope\n\t\t\tol = document.getElementById( \"qunit-tests\" );\n\t\t\tol.className = ol.className + \" hidepass\";\n\t\t}\n\t\ttoolbar.appendChild( filter );\n\n\t\t// `label` initialized at top of scope\n\t\tlabel = document.createElement( \"label\" );\n\t\tlabel.setAttribute( \"for\", \"qunit-filter-pass\" );\n\t\tlabel.setAttribute( \"title\", \"Only show tests and assertions that fail. Stored in sessionStorage.\" );\n\t\tlabel.innerHTML = \"Hide passed tests\";\n\t\ttoolbar.appendChild( label );\n\n\t\turlConfigCheckboxesContainer = document.createElement(\"span\");\n\t\turlConfigCheckboxesContainer.innerHTML = urlConfigHtml;\n\t\turlConfigCheckboxes = urlConfigCheckboxesContainer.getElementsByTagName(\"input\");\n\t\t// For oldIE support:\n\t\t// * Add handlers to the individual elements instead of the container\n\t\t// * Use \"click\" instead of \"change\"\n\t\t// * Fallback from event.target to event.srcElement\n\t\taddEvents( urlConfigCheckboxes, \"click\", function( event ) {\n\t\t\tvar params = {},\n\t\t\t\ttarget = event.target || event.srcElement;\n\t\t\tparams[ target.name ] = target.checked ? true : undefined;\n\t\t\twindow.location = QUnit.url( params );\n\t\t});\n\t\ttoolbar.appendChild( urlConfigCheckboxesContainer );\n\n\t\tif (numModules > 1) {\n\t\t\tmoduleFilter = document.createElement( \"span\" );\n\t\t\tmoduleFilter.setAttribute( \"id\", \"qunit-modulefilter-container\" );\n\t\t\tmoduleFilter.innerHTML = moduleFilterHtml;\n\t\t\taddEvent( moduleFilter.lastChild, \"change\", function() {\n\t\t\t\tvar selectBox = moduleFilter.getElementsByTagName(\"select\")[0],\n\t\t\t\t\tselectedModule = decodeURIComponent(selectBox.options[selectBox.selectedIndex].value);\n\n\t\t\t\twindow.location = QUnit.url({\n\t\t\t\t\tmodule: ( selectedModule === \"\" ) ? undefined : selectedModule,\n\t\t\t\t\t// Remove any existing filters\n\t\t\t\t\tfilter: undefined,\n\t\t\t\t\ttestNumber: undefined\n\t\t\t\t});\n\t\t\t});\n\t\t\ttoolbar.appendChild(moduleFilter);\n\t\t}\n\t}\n\n\t// `main` initialized at top of scope\n\tmain = id( \"qunit-fixture\" );\n\tif ( main ) {\n\t\tconfig.fixture = main.innerHTML;\n\t}\n\n\tif ( config.autostart ) {\n\t\tQUnit.start();\n\t}\n};\n\naddEvent( window, \"load\", QUnit.load );\n\n// `onErrorFnPrev` initialized at top of scope\n// Preserve other handlers\nonErrorFnPrev = window.onerror;\n\n// Cover uncaught exceptions\n// Returning true will suppress the default browser handler,\n// returning false will let it run.\nwindow.onerror = function ( error, filePath, linerNr ) {\n\tvar ret = false;\n\tif ( onErrorFnPrev ) {\n\t\tret = onErrorFnPrev( error, filePath, linerNr );\n\t}\n\n\t// Treat return value as window.onerror itself does,\n\t// Only do our handling if not suppressed.\n\tif ( ret !== true ) {\n\t\tif ( QUnit.config.current ) {\n\t\t\tif ( QUnit.config.current.ignoreGlobalErrors ) {\n\t\t\t\treturn true;\n\t\t\t}\n\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t} else {\n\t\t\tQUnit.test( \"global failure\", extend( function() {\n\t\t\t\tQUnit.pushFailure( error, filePath + \":\" + linerNr );\n\t\t\t}, { validTest: validTest } ) );\n\t\t}\n\t\treturn false;\n\t}\n\n\treturn ret;\n};\n\nfunction done() {\n\tconfig.autorun = true;\n\n\t// Log the last module results\n\tif ( config.currentModule ) {\n\t\trunLoggingCallbacks( \"moduleDone\", QUnit, {\n\t\t\tname: config.currentModule,\n\t\t\tfailed: config.moduleStats.bad,\n\t\t\tpassed: config.moduleStats.all - config.moduleStats.bad,\n\t\t\ttotal: config.moduleStats.all\n\t\t});\n\t}\n\tdelete config.previousModule;\n\n\tvar i, key,\n\t\tbanner = id( \"qunit-banner\" ),\n\t\ttests = id( \"qunit-tests\" ),\n\t\truntime = +new Date() - config.started,\n\t\tpassed = config.stats.all - config.stats.bad,\n\t\thtml = [\n\t\t\t\"Tests completed in \",\n\t\t\truntime,\n\t\t\t\" milliseconds.<br/>\",\n\t\t\t\"<span class='passed'>\",\n\t\t\tpassed,\n\t\t\t\"</span> assertions of <span class='total'>\",\n\t\t\tconfig.stats.all,\n\t\t\t\"</span> passed, <span class='failed'>\",\n\t\t\tconfig.stats.bad,\n\t\t\t\"</span> failed.\"\n\t\t].join( \"\" );\n\n\tif ( banner ) {\n\t\tbanner.className = ( config.stats.bad ? \"qunit-fail\" : \"qunit-pass\" );\n\t}\n\n\tif ( tests ) {\n\t\tid( \"qunit-testresult\" ).innerHTML = html;\n\t}\n\n\tif ( config.altertitle && typeof document !== \"undefined\" && document.title ) {\n\t\t// show ✖ for good, ✔ for bad suite result in title\n\t\t// use escape sequences in case file gets loaded with non-utf-8-charset\n\t\tdocument.title = [\n\t\t\t( config.stats.bad ? \"\\u2716\" : \"\\u2714\" ),\n\t\t\tdocument.title.replace( /^[\\u2714\\u2716] /i, \"\" )\n\t\t].join( \" \" );\n\t}\n\n\t// clear own sessionStorage items if all tests passed\n\tif ( config.reorder && defined.sessionStorage && config.stats.bad === 0 ) {\n\t\t// `key` & `i` initialized at top of scope\n\t\tfor ( i = 0; i < sessionStorage.length; i++ ) {\n\t\t\tkey = sessionStorage.key( i++ );\n\t\t\tif ( key.indexOf( \"qunit-test-\" ) === 0 ) {\n\t\t\t\tsessionStorage.removeItem( key );\n\t\t\t}\n\t\t}\n\t}\n\n\t// scroll back to top to show results\n\tif ( window.scrollTo ) {\n\t\twindow.scrollTo(0, 0);\n\t}\n\n\trunLoggingCallbacks( \"done\", QUnit, {\n\t\tfailed: config.stats.bad,\n\t\tpassed: passed,\n\t\ttotal: config.stats.all,\n\t\truntime: runtime\n\t});\n}\n\n/** @return Boolean: true if this test should be ran */\nfunction validTest( test ) {\n\tvar include,\n\t\tfilter = config.filter && config.filter.toLowerCase(),\n\t\tmodule = config.module && config.module.toLowerCase(),\n\t\tfullName = (test.module + \": \" + test.testName).toLowerCase();\n\n\t// Internally-generated tests are always valid\n\tif ( test.callback && test.callback.validTest === validTest ) {\n\t\tdelete test.callback.validTest;\n\t\treturn true;\n\t}\n\n\tif ( config.testNumber ) {\n\t\treturn test.testNumber === config.testNumber;\n\t}\n\n\tif ( module && ( !test.module || test.module.toLowerCase() !== module ) ) {\n\t\treturn false;\n\t}\n\n\tif ( !filter ) {\n\t\treturn true;\n\t}\n\n\tinclude = filter.charAt( 0 ) !== \"!\";\n\tif ( !include ) {\n\t\tfilter = filter.slice( 1 );\n\t}\n\n\t// If the filter matches, we need to honour include\n\tif ( fullName.indexOf( filter ) !== -1 ) {\n\t\treturn include;\n\t}\n\n\t// Otherwise, do the opposite\n\treturn !include;\n}\n\n// so far supports only Firefox, Chrome and Opera (buggy), Safari (for real exceptions)\n// Later Safari and IE10 are supposed to support error.stack as well\n// See also https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Error/Stack\nfunction extractStacktrace( e, offset ) {\n\toffset = offset === undefined ? 3 : offset;\n\n\tvar stack, include, i;\n\n\tif ( e.stacktrace ) {\n\t\t// Opera\n\t\treturn e.stacktrace.split( \"\\n\" )[ offset + 3 ];\n\t} else if ( e.stack ) {\n\t\t// Firefox, Chrome\n\t\tstack = e.stack.split( \"\\n\" );\n\t\tif (/^error$/i.test( stack[0] ) ) {\n\t\t\tstack.shift();\n\t\t}\n\t\tif ( fileName ) {\n\t\t\tinclude = [];\n\t\t\tfor ( i = offset; i < stack.length; i++ ) {\n\t\t\t\tif ( stack[ i ].indexOf( fileName ) !== -1 ) {\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t\tinclude.push( stack[ i ] );\n\t\t\t}\n\t\t\tif ( include.length ) {\n\t\t\t\treturn include.join( \"\\n\" );\n\t\t\t}\n\t\t}\n\t\treturn stack[ offset ];\n\t} else if ( e.sourceURL ) {\n\t\t// Safari, PhantomJS\n\t\t// hopefully one day Safari provides actual stacktraces\n\t\t// exclude useless self-reference for generated Error objects\n\t\tif ( /qunit.js$/.test( e.sourceURL ) ) {\n\t\t\treturn;\n\t\t}\n\t\t// for actual exceptions, this is useful\n\t\treturn e.sourceURL + \":\" + e.line;\n\t}\n}\nfunction sourceFromStacktrace( offset ) {\n\ttry {\n\t\tthrow new Error();\n\t} catch ( e ) {\n\t\treturn extractStacktrace( e, offset );\n\t}\n}\n\n/**\n * Escape text for attribute or text content.\n */\nfunction escapeText( s ) {\n\tif ( !s ) {\n\t\treturn \"\";\n\t}\n\ts = s + \"\";\n\t// Both single quotes and double quotes (for attributes)\n\treturn s.replace( /['\"<>&]/g, function( s ) {\n\t\tswitch( s ) {\n\t\t\tcase \"'\":\n\t\t\t\treturn \"&#039;\";\n\t\t\tcase \"\\\"\":\n\t\t\t\treturn \"&quot;\";\n\t\t\tcase \"<\":\n\t\t\t\treturn \"&lt;\";\n\t\t\tcase \">\":\n\t\t\t\treturn \"&gt;\";\n\t\t\tcase \"&\":\n\t\t\t\treturn \"&amp;\";\n\t\t}\n\t});\n}\n\nfunction synchronize( callback, last ) {\n\tconfig.queue.push( callback );\n\n\tif ( config.autorun && !config.blocking ) {\n\t\tprocess( last );\n\t}\n}\n\nfunction process( last ) {\n\tfunction next() {\n\t\tprocess( last );\n\t}\n\tvar start = new Date().getTime();\n\tconfig.depth = config.depth ? config.depth + 1 : 1;\n\n\twhile ( config.queue.length && !config.blocking ) {\n\t\tif ( !defined.setTimeout || config.updateRate <= 0 || ( ( new Date().getTime() - start ) < config.updateRate ) ) {\n\t\t\tconfig.queue.shift()();\n\t\t} else {\n\t\t\tsetTimeout( next, 13 );\n\t\t\tbreak;\n\t\t}\n\t}\n\tconfig.depth--;\n\tif ( last && !config.blocking && !config.queue.length && config.depth === 0 ) {\n\t\tdone();\n\t}\n}\n\nfunction saveGlobal() {\n\tconfig.pollution = [];\n\n\tif ( config.noglobals ) {\n\t\tfor ( var key in window ) {\n\t\t\tif ( hasOwn.call( window, key ) ) {\n\t\t\t\t// in Opera sometimes DOM element ids show up here, ignore them\n\t\t\t\tif ( /^qunit-test-output/.test( key ) ) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\tconfig.pollution.push( key );\n\t\t\t}\n\t\t}\n\t}\n}\n\nfunction checkPollution() {\n\tvar newGlobals,\n\t\tdeletedGlobals,\n\t\told = config.pollution;\n\n\tsaveGlobal();\n\n\tnewGlobals = diff( config.pollution, old );\n\tif ( newGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Introduced global variable(s): \" + newGlobals.join(\", \") );\n\t}\n\n\tdeletedGlobals = diff( old, config.pollution );\n\tif ( deletedGlobals.length > 0 ) {\n\t\tQUnit.pushFailure( \"Deleted global variable(s): \" + deletedGlobals.join(\", \") );\n\t}\n}\n\n// returns a new Array with the elements that are in a but not in b\nfunction diff( a, b ) {\n\tvar i, j,\n\t\tresult = a.slice();\n\n\tfor ( i = 0; i < result.length; i++ ) {\n\t\tfor ( j = 0; j < b.length; j++ ) {\n\t\t\tif ( result[i] === b[j] ) {\n\t\t\t\tresult.splice( i, 1 );\n\t\t\t\ti--;\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t}\n\treturn result;\n}\n\nfunction extend( a, b ) {\n\tfor ( var prop in b ) {\n\t\tif ( hasOwn.call( b, prop ) ) {\n\t\t\t// Avoid \"Member not found\" error in IE8 caused by messing with window.constructor\n\t\t\tif ( !( prop === \"constructor\" && a === window ) ) {\n\t\t\t\tif ( b[ prop ] === undefined ) {\n\t\t\t\t\tdelete a[ prop ];\n\t\t\t\t} else {\n\t\t\t\t\ta[ prop ] = b[ prop ];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn a;\n}\n\n/**\n * @param {HTMLElement} elem\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvent( elem, type, fn ) {\n\t// Standards-based browsers\n\tif ( elem.addEventListener ) {\n\t\telem.addEventListener( type, fn, false );\n\t// IE\n\t} else {\n\t\telem.attachEvent( \"on\" + type, fn );\n\t}\n}\n\n/**\n * @param {Array|NodeList} elems\n * @param {string} type\n * @param {Function} fn\n */\nfunction addEvents( elems, type, fn ) {\n\tvar i = elems.length;\n\twhile ( i-- ) {\n\t\taddEvent( elems[i], type, fn );\n\t}\n}\n\nfunction hasClass( elem, name ) {\n\treturn (\" \" + elem.className + \" \").indexOf(\" \" + name + \" \") > -1;\n}\n\nfunction addClass( elem, name ) {\n\tif ( !hasClass( elem, name ) ) {\n\t\telem.className += (elem.className ? \" \" : \"\") + name;\n\t}\n}\n\nfunction removeClass( elem, name ) {\n\tvar set = \" \" + elem.className + \" \";\n\t// Class name may appear multiple times\n\twhile ( set.indexOf(\" \" + name + \" \") > -1 ) {\n\t\tset = set.replace(\" \" + name + \" \" , \" \");\n\t}\n\t// If possible, trim it for prettiness, but not necessarily\n\telem.className = typeof set.trim === \"function\" ? set.trim() : set.replace(/^\\s+|\\s+$/g, \"\");\n}\n\nfunction id( name ) {\n\treturn !!( typeof document !== \"undefined\" && document && document.getElementById ) &&\n\t\tdocument.getElementById( name );\n}\n\nfunction registerLoggingCallback( key ) {\n\treturn function( callback ) {\n\t\tconfig[key].push( callback );\n\t};\n}\n\n// Supports deprecated method of completely overwriting logging callbacks\nfunction runLoggingCallbacks( key, scope, args ) {\n\tvar i, callbacks;\n\tif ( QUnit.hasOwnProperty( key ) ) {\n\t\tQUnit[ key ].call(scope, args );\n\t} else {\n\t\tcallbacks = config[ key ];\n\t\tfor ( i = 0; i < callbacks.length; i++ ) {\n\t\t\tcallbacks[ i ].call( scope, args );\n\t\t}\n\t}\n}\n\n// Test for equality any JavaScript type.\n// Author: Philippe Rathé <prathe@gmail.com>\nQUnit.equiv = (function() {\n\n\t// Call the o related callback with the given arguments.\n\tfunction bindCallbacks( o, callbacks, args ) {\n\t\tvar prop = QUnit.objectType( o );\n\t\tif ( prop ) {\n\t\t\tif ( QUnit.objectType( callbacks[ prop ] ) === \"function\" ) {\n\t\t\t\treturn callbacks[ prop ].apply( callbacks, args );\n\t\t\t} else {\n\t\t\t\treturn callbacks[ prop ]; // or undefined\n\t\t\t}\n\t\t}\n\t}\n\n\t// the real equiv function\n\tvar innerEquiv,\n\t\t// stack to decide between skip/abort functions\n\t\tcallers = [],\n\t\t// stack to avoiding loops from circular referencing\n\t\tparents = [],\n\t\tparentsB = [],\n\n\t\tgetProto = Object.getPrototypeOf || function ( obj ) {\n\t\t\t/*jshint camelcase:false */\n\t\t\treturn obj.__proto__;\n\t\t},\n\t\tcallbacks = (function () {\n\n\t\t\t// for string, boolean, number and null\n\t\t\tfunction useStrictEquality( b, a ) {\n\t\t\t\t/*jshint eqeqeq:false */\n\t\t\t\tif ( b instanceof a.constructor || a instanceof b.constructor ) {\n\t\t\t\t\t// to catch short annotation VS 'new' annotation of a\n\t\t\t\t\t// declaration\n\t\t\t\t\t// e.g. var i = 1;\n\t\t\t\t\t// var j = new Number(1);\n\t\t\t\t\treturn a == b;\n\t\t\t\t} else {\n\t\t\t\t\treturn a === b;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\treturn {\n\t\t\t\t\"string\": useStrictEquality,\n\t\t\t\t\"boolean\": useStrictEquality,\n\t\t\t\t\"number\": useStrictEquality,\n\t\t\t\t\"null\": useStrictEquality,\n\t\t\t\t\"undefined\": useStrictEquality,\n\n\t\t\t\t\"nan\": function( b ) {\n\t\t\t\t\treturn isNaN( b );\n\t\t\t\t},\n\n\t\t\t\t\"date\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"date\" && a.valueOf() === b.valueOf();\n\t\t\t\t},\n\n\t\t\t\t\"regexp\": function( b, a ) {\n\t\t\t\t\treturn QUnit.objectType( b ) === \"regexp\" &&\n\t\t\t\t\t\t// the regex itself\n\t\t\t\t\t\ta.source === b.source &&\n\t\t\t\t\t\t// and its modifiers\n\t\t\t\t\t\ta.global === b.global &&\n\t\t\t\t\t\t// (gmi) ...\n\t\t\t\t\t\ta.ignoreCase === b.ignoreCase &&\n\t\t\t\t\t\ta.multiline === b.multiline &&\n\t\t\t\t\t\ta.sticky === b.sticky;\n\t\t\t\t},\n\n\t\t\t\t// - skip when the property is a method of an instance (OOP)\n\t\t\t\t// - abort otherwise,\n\t\t\t\t// initial === would have catch identical references anyway\n\t\t\t\t\"function\": function() {\n\t\t\t\t\tvar caller = callers[callers.length - 1];\n\t\t\t\t\treturn caller !== Object && typeof caller !== \"undefined\";\n\t\t\t\t},\n\n\t\t\t\t\"array\": function( b, a ) {\n\t\t\t\t\tvar i, j, len, loop, aCircular, bCircular;\n\n\t\t\t\t\t// b could be an object literal here\n\t\t\t\t\tif ( QUnit.objectType( b ) !== \"array\" ) {\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\tlen = a.length;\n\t\t\t\t\tif ( len !== b.length ) {\n\t\t\t\t\t\t// safe and faster\n\t\t\t\t\t\treturn false;\n\t\t\t\t\t}\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\t\t\t\t\tfor ( i = 0; i < len; i++ ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\tparents.pop();\n\t\t\t\t\t\t\tparentsB.pop();\n\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\treturn true;\n\t\t\t\t},\n\n\t\t\t\t\"object\": function( b, a ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar i, j, loop, aCircular, bCircular,\n\t\t\t\t\t\t// Default to true\n\t\t\t\t\t\teq = true,\n\t\t\t\t\t\taProperties = [],\n\t\t\t\t\t\tbProperties = [];\n\n\t\t\t\t\t// comparing constructors is more strict than using\n\t\t\t\t\t// instanceof\n\t\t\t\t\tif ( a.constructor !== b.constructor ) {\n\t\t\t\t\t\t// Allow objects with no prototype to be equivalent to\n\t\t\t\t\t\t// objects with Object as their constructor.\n\t\t\t\t\t\tif ( !(( getProto(a) === null && getProto(b) === Object.prototype ) ||\n\t\t\t\t\t\t\t( getProto(b) === null && getProto(a) === Object.prototype ) ) ) {\n\t\t\t\t\t\t\t\treturn false;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t// stack constructor before traversing properties\n\t\t\t\t\tcallers.push( a.constructor );\n\n\t\t\t\t\t// track reference to avoid circular references\n\t\t\t\t\tparents.push( a );\n\t\t\t\t\tparentsB.push( b );\n\n\t\t\t\t\t// be strict: don't ensure hasOwnProperty and go deep\n\t\t\t\t\tfor ( i in a ) {\n\t\t\t\t\t\tloop = false;\n\t\t\t\t\t\tfor ( j = 0; j < parents.length; j++ ) {\n\t\t\t\t\t\t\taCircular = parents[j] === a[i];\n\t\t\t\t\t\t\tbCircular = parentsB[j] === b[i];\n\t\t\t\t\t\t\tif ( aCircular || bCircular ) {\n\t\t\t\t\t\t\t\tif ( a[i] === b[i] || aCircular && bCircular ) {\n\t\t\t\t\t\t\t\t\tloop = true;\n\t\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\taProperties.push(i);\n\t\t\t\t\t\tif ( !loop && !innerEquiv(a[i], b[i]) ) {\n\t\t\t\t\t\t\teq = false;\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tparents.pop();\n\t\t\t\t\tparentsB.pop();\n\t\t\t\t\tcallers.pop(); // unstack, we are done\n\n\t\t\t\t\tfor ( i in b ) {\n\t\t\t\t\t\tbProperties.push( i ); // collect b's properties\n\t\t\t\t\t}\n\n\t\t\t\t\t// Ensures identical properties name\n\t\t\t\t\treturn eq && innerEquiv( aProperties.sort(), bProperties.sort() );\n\t\t\t\t}\n\t\t\t};\n\t\t}());\n\n\tinnerEquiv = function() { // can take multiple arguments\n\t\tvar args = [].slice.apply( arguments );\n\t\tif ( args.length < 2 ) {\n\t\t\treturn true; // end transition\n\t\t}\n\n\t\treturn (function( a, b ) {\n\t\t\tif ( a === b ) {\n\t\t\t\treturn true; // catch the most you can\n\t\t\t} else if ( a === null || b === null || typeof a === \"undefined\" ||\n\t\t\t\t\ttypeof b === \"undefined\" ||\n\t\t\t\t\tQUnit.objectType(a) !== QUnit.objectType(b) ) {\n\t\t\t\treturn false; // don't lose time with error prone cases\n\t\t\t} else {\n\t\t\t\treturn bindCallbacks(a, callbacks, [ b, a ]);\n\t\t\t}\n\n\t\t\t// apply transition with (1..n) arguments\n\t\t}( args[0], args[1] ) && innerEquiv.apply( this, args.splice(1, args.length - 1 )) );\n\t};\n\n\treturn innerEquiv;\n}());\n\n/**\n * jsDump Copyright (c) 2008 Ariel Flesler - aflesler(at)gmail(dot)com |\n * http://flesler.blogspot.com Licensed under BSD\n * (http://www.opensource.org/licenses/bsd-license.php) Date: 5/15/2008\n *\n * @projectDescription Advanced and extensible data dumping for Javascript.\n * @version 1.0.0\n * @author Ariel Flesler\n * @link {http://flesler.blogspot.com/2008/05/jsdump-pretty-dump-of-any-javascript.html}\n */\nQUnit.jsDump = (function() {\n\tfunction quote( str ) {\n\t\treturn \"\\\"\" + str.toString().replace( /\"/g, \"\\\\\\\"\" ) + \"\\\"\";\n\t}\n\tfunction literal( o ) {\n\t\treturn o + \"\";\n\t}\n\tfunction join( pre, arr, post ) {\n\t\tvar s = jsDump.separator(),\n\t\t\tbase = jsDump.indent(),\n\t\t\tinner = jsDump.indent(1);\n\t\tif ( arr.join ) {\n\t\t\tarr = arr.join( \",\" + s + inner );\n\t\t}\n\t\tif ( !arr ) {\n\t\t\treturn pre + post;\n\t\t}\n\t\treturn [ pre, inner + arr, base + post ].join(s);\n\t}\n\tfunction array( arr, stack ) {\n\t\tvar i = arr.length, ret = new Array(i);\n\t\tthis.up();\n\t\twhile ( i-- ) {\n\t\t\tret[i] = this.parse( arr[i] , undefined , stack);\n\t\t}\n\t\tthis.down();\n\t\treturn join( \"[\", ret, \"]\" );\n\t}\n\n\tvar reName = /^function (\\w+)/,\n\t\tjsDump = {\n\t\t\t// type is used mostly internally, you can fix a (custom)type in advance\n\t\t\tparse: function( obj, type, stack ) {\n\t\t\t\tstack = stack || [ ];\n\t\t\t\tvar inStack, res,\n\t\t\t\t\tparser = this.parsers[ type || this.typeOf(obj) ];\n\n\t\t\t\ttype = typeof parser;\n\t\t\t\tinStack = inArray( obj, stack );\n\n\t\t\t\tif ( inStack !== -1 ) {\n\t\t\t\t\treturn \"recursion(\" + (inStack - stack.length) + \")\";\n\t\t\t\t}\n\t\t\t\tif ( type === \"function\" )  {\n\t\t\t\t\tstack.push( obj );\n\t\t\t\t\tres = parser.call( this, obj, stack );\n\t\t\t\t\tstack.pop();\n\t\t\t\t\treturn res;\n\t\t\t\t}\n\t\t\t\treturn ( type === \"string\" ) ? parser : this.parsers.error;\n\t\t\t},\n\t\t\ttypeOf: function( obj ) {\n\t\t\t\tvar type;\n\t\t\t\tif ( obj === null ) {\n\t\t\t\t\ttype = \"null\";\n\t\t\t\t} else if ( typeof obj === \"undefined\" ) {\n\t\t\t\t\ttype = \"undefined\";\n\t\t\t\t} else if ( QUnit.is( \"regexp\", obj) ) {\n\t\t\t\t\ttype = \"regexp\";\n\t\t\t\t} else if ( QUnit.is( \"date\", obj) ) {\n\t\t\t\t\ttype = \"date\";\n\t\t\t\t} else if ( QUnit.is( \"function\", obj) ) {\n\t\t\t\t\ttype = \"function\";\n\t\t\t\t} else if ( typeof obj.setInterval !== undefined && typeof obj.document !== \"undefined\" && typeof obj.nodeType === \"undefined\" ) {\n\t\t\t\t\ttype = \"window\";\n\t\t\t\t} else if ( obj.nodeType === 9 ) {\n\t\t\t\t\ttype = \"document\";\n\t\t\t\t} else if ( obj.nodeType ) {\n\t\t\t\t\ttype = \"node\";\n\t\t\t\t} else if (\n\t\t\t\t\t// native arrays\n\t\t\t\t\ttoString.call( obj ) === \"[object Array]\" ||\n\t\t\t\t\t// NodeList objects\n\t\t\t\t\t( typeof obj.length === \"number\" && typeof obj.item !== \"undefined\" && ( obj.length ? obj.item(0) === obj[0] : ( obj.item( 0 ) === null && typeof obj[0] === \"undefined\" ) ) )\n\t\t\t\t) {\n\t\t\t\t\ttype = \"array\";\n\t\t\t\t} else if ( obj.constructor === Error.prototype.constructor ) {\n\t\t\t\t\ttype = \"error\";\n\t\t\t\t} else {\n\t\t\t\t\ttype = typeof obj;\n\t\t\t\t}\n\t\t\t\treturn type;\n\t\t\t},\n\t\t\tseparator: function() {\n\t\t\t\treturn this.multiline ?\tthis.HTML ? \"<br />\" : \"\\n\" : this.HTML ? \"&nbsp;\" : \" \";\n\t\t\t},\n\t\t\t// extra can be a number, shortcut for increasing-calling-decreasing\n\t\t\tindent: function( extra ) {\n\t\t\t\tif ( !this.multiline ) {\n\t\t\t\t\treturn \"\";\n\t\t\t\t}\n\t\t\t\tvar chr = this.indentChar;\n\t\t\t\tif ( this.HTML ) {\n\t\t\t\t\tchr = chr.replace( /\\t/g, \"   \" ).replace( / /g, \"&nbsp;\" );\n\t\t\t\t}\n\t\t\t\treturn new Array( this.depth + ( extra || 0 ) ).join(chr);\n\t\t\t},\n\t\t\tup: function( a ) {\n\t\t\t\tthis.depth += a || 1;\n\t\t\t},\n\t\t\tdown: function( a ) {\n\t\t\t\tthis.depth -= a || 1;\n\t\t\t},\n\t\t\tsetParser: function( name, parser ) {\n\t\t\t\tthis.parsers[name] = parser;\n\t\t\t},\n\t\t\t// The next 3 are exposed so you can use them\n\t\t\tquote: quote,\n\t\t\tliteral: literal,\n\t\t\tjoin: join,\n\t\t\t//\n\t\t\tdepth: 1,\n\t\t\t// This is the list of parsers, to modify them, use jsDump.setParser\n\t\t\tparsers: {\n\t\t\t\twindow: \"[Window]\",\n\t\t\t\tdocument: \"[Document]\",\n\t\t\t\terror: function(error) {\n\t\t\t\t\treturn \"Error(\\\"\" + error.message + \"\\\")\";\n\t\t\t\t},\n\t\t\t\tunknown: \"[Unknown]\",\n\t\t\t\t\"null\": \"null\",\n\t\t\t\t\"undefined\": \"undefined\",\n\t\t\t\t\"function\": function( fn ) {\n\t\t\t\t\tvar ret = \"function\",\n\t\t\t\t\t\t// functions never have name in IE\n\t\t\t\t\t\tname = \"name\" in fn ? fn.name : (reName.exec(fn) || [])[1];\n\n\t\t\t\t\tif ( name ) {\n\t\t\t\t\t\tret += \" \" + name;\n\t\t\t\t\t}\n\t\t\t\t\tret += \"( \";\n\n\t\t\t\t\tret = [ ret, QUnit.jsDump.parse( fn, \"functionArgs\" ), \"){\" ].join( \"\" );\n\t\t\t\t\treturn join( ret, QUnit.jsDump.parse(fn,\"functionCode\" ), \"}\" );\n\t\t\t\t},\n\t\t\t\tarray: array,\n\t\t\t\tnodelist: array,\n\t\t\t\t\"arguments\": array,\n\t\t\t\tobject: function( map, stack ) {\n\t\t\t\t\t/*jshint forin:false */\n\t\t\t\t\tvar ret = [ ], keys, key, val, i;\n\t\t\t\t\tQUnit.jsDump.up();\n\t\t\t\t\tkeys = [];\n\t\t\t\t\tfor ( key in map ) {\n\t\t\t\t\t\tkeys.push( key );\n\t\t\t\t\t}\n\t\t\t\t\tkeys.sort();\n\t\t\t\t\tfor ( i = 0; i < keys.length; i++ ) {\n\t\t\t\t\t\tkey = keys[ i ];\n\t\t\t\t\t\tval = map[ key ];\n\t\t\t\t\t\tret.push( QUnit.jsDump.parse( key, \"key\" ) + \": \" + QUnit.jsDump.parse( val, undefined, stack ) );\n\t\t\t\t\t}\n\t\t\t\t\tQUnit.jsDump.down();\n\t\t\t\t\treturn join( \"{\", ret, \"}\" );\n\t\t\t\t},\n\t\t\t\tnode: function( node ) {\n\t\t\t\t\tvar len, i, val,\n\t\t\t\t\t\topen = QUnit.jsDump.HTML ? \"&lt;\" : \"<\",\n\t\t\t\t\t\tclose = QUnit.jsDump.HTML ? \"&gt;\" : \">\",\n\t\t\t\t\t\ttag = node.nodeName.toLowerCase(),\n\t\t\t\t\t\tret = open + tag,\n\t\t\t\t\t\tattrs = node.attributes;\n\n\t\t\t\t\tif ( attrs ) {\n\t\t\t\t\t\tfor ( i = 0, len = attrs.length; i < len; i++ ) {\n\t\t\t\t\t\t\tval = attrs[i].nodeValue;\n\t\t\t\t\t\t\t// IE6 includes all attributes in .attributes, even ones not explicitly set.\n\t\t\t\t\t\t\t// Those have values like undefined, null, 0, false, \"\" or \"inherit\".\n\t\t\t\t\t\t\tif ( val && val !== \"inherit\" ) {\n\t\t\t\t\t\t\t\tret += \" \" + attrs[i].nodeName + \"=\" + QUnit.jsDump.parse( val, \"attribute\" );\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tret += close;\n\n\t\t\t\t\t// Show content of TextNode or CDATASection\n\t\t\t\t\tif ( node.nodeType === 3 || node.nodeType === 4 ) {\n\t\t\t\t\t\tret += node.nodeValue;\n\t\t\t\t\t}\n\n\t\t\t\t\treturn ret + open + \"/\" + tag + close;\n\t\t\t\t},\n\t\t\t\t// function calls it internally, it's the arguments part of the function\n\t\t\t\tfunctionArgs: function( fn ) {\n\t\t\t\t\tvar args,\n\t\t\t\t\t\tl = fn.length;\n\n\t\t\t\t\tif ( !l ) {\n\t\t\t\t\t\treturn \"\";\n\t\t\t\t\t}\n\n\t\t\t\t\targs = new Array(l);\n\t\t\t\t\twhile ( l-- ) {\n\t\t\t\t\t\t// 97 is 'a'\n\t\t\t\t\t\targs[l] = String.fromCharCode(97+l);\n\t\t\t\t\t}\n\t\t\t\t\treturn \" \" + args.join( \", \" ) + \" \";\n\t\t\t\t},\n\t\t\t\t// object calls it internally, the key part of an item in a map\n\t\t\t\tkey: quote,\n\t\t\t\t// function calls it internally, it's the content of the function\n\t\t\t\tfunctionCode: \"[code]\",\n\t\t\t\t// node calls it internally, it's an html attribute value\n\t\t\t\tattribute: quote,\n\t\t\t\tstring: quote,\n\t\t\t\tdate: quote,\n\t\t\t\tregexp: literal,\n\t\t\t\tnumber: literal,\n\t\t\t\t\"boolean\": literal\n\t\t\t},\n\t\t\t// if true, entities are escaped ( <, >, \\t, space and \\n )\n\t\t\tHTML: false,\n\t\t\t// indentation unit\n\t\t\tindentChar: \"  \",\n\t\t\t// if true, items in a collection, are separated by a \\n, else just a space.\n\t\t\tmultiline: true\n\t\t};\n\n\treturn jsDump;\n}());\n\n// from jquery.js\nfunction inArray( elem, array ) {\n\tif ( array.indexOf ) {\n\t\treturn array.indexOf( elem );\n\t}\n\n\tfor ( var i = 0, length = array.length; i < length; i++ ) {\n\t\tif ( array[ i ] === elem ) {\n\t\t\treturn i;\n\t\t}\n\t}\n\n\treturn -1;\n}\n\n/*\n * Javascript Diff Algorithm\n *  By John Resig (http://ejohn.org/)\n *  Modified by Chu Alan \"sprite\"\n *\n * Released under the MIT license.\n *\n * More Info:\n *  http://ejohn.org/projects/javascript-diff-algorithm/\n *\n * Usage: QUnit.diff(expected, actual)\n *\n * QUnit.diff( \"the quick brown fox jumped over\", \"the quick fox jumps over\" ) == \"the  quick <del>brown </del> fox <del>jumped </del><ins>jumps </ins> over\"\n */\nQUnit.diff = (function() {\n\t/*jshint eqeqeq:false, eqnull:true */\n\tfunction diff( o, n ) {\n\t\tvar i,\n\t\t\tns = {},\n\t\t\tos = {};\n\n\t\tfor ( i = 0; i < n.length; i++ ) {\n\t\t\tif ( !hasOwn.call( ns, n[i] ) ) {\n\t\t\t\tns[ n[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\to: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tns[ n[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i = 0; i < o.length; i++ ) {\n\t\t\tif ( !hasOwn.call( os, o[i] ) ) {\n\t\t\t\tos[ o[i] ] = {\n\t\t\t\t\trows: [],\n\t\t\t\t\tn: null\n\t\t\t\t};\n\t\t\t}\n\t\t\tos[ o[i] ].rows.push( i );\n\t\t}\n\n\t\tfor ( i in ns ) {\n\t\t\tif ( hasOwn.call( ns, i ) ) {\n\t\t\t\tif ( ns[i].rows.length === 1 && hasOwn.call( os, i ) && os[i].rows.length === 1 ) {\n\t\t\t\t\tn[ ns[i].rows[0] ] = {\n\t\t\t\t\t\ttext: n[ ns[i].rows[0] ],\n\t\t\t\t\t\trow: os[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t\to[ os[i].rows[0] ] = {\n\t\t\t\t\t\ttext: o[ os[i].rows[0] ],\n\t\t\t\t\t\trow: ns[i].rows[0]\n\t\t\t\t\t};\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = 0; i < n.length - 1; i++ ) {\n\t\t\tif ( n[i].text != null && n[ i + 1 ].text == null && n[i].row + 1 < o.length && o[ n[i].row + 1 ].text == null &&\n\t\t\t\t\t\tn[ i + 1 ] == o[ n[i].row + 1 ] ) {\n\n\t\t\t\tn[ i + 1 ] = {\n\t\t\t\t\ttext: n[ i + 1 ],\n\t\t\t\t\trow: n[i].row + 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row + 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row + 1 ],\n\t\t\t\t\trow: i + 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\tfor ( i = n.length - 1; i > 0; i-- ) {\n\t\t\tif ( n[i].text != null && n[ i - 1 ].text == null && n[i].row > 0 && o[ n[i].row - 1 ].text == null &&\n\t\t\t\t\t\tn[ i - 1 ] == o[ n[i].row - 1 ]) {\n\n\t\t\t\tn[ i - 1 ] = {\n\t\t\t\t\ttext: n[ i - 1 ],\n\t\t\t\t\trow: n[i].row - 1\n\t\t\t\t};\n\t\t\t\to[ n[i].row - 1 ] = {\n\t\t\t\t\ttext: o[ n[i].row - 1 ],\n\t\t\t\t\trow: i - 1\n\t\t\t\t};\n\t\t\t}\n\t\t}\n\n\t\treturn {\n\t\t\to: o,\n\t\t\tn: n\n\t\t};\n\t}\n\n\treturn function( o, n ) {\n\t\to = o.replace( /\\s+$/, \"\" );\n\t\tn = n.replace( /\\s+$/, \"\" );\n\n\t\tvar i, pre,\n\t\t\tstr = \"\",\n\t\t\tout = diff( o === \"\" ? [] : o.split(/\\s+/), n === \"\" ? [] : n.split(/\\s+/) ),\n\t\t\toSpace = o.match(/\\s+/g),\n\t\t\tnSpace = n.match(/\\s+/g);\n\n\t\tif ( oSpace == null ) {\n\t\t\toSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\toSpace.push( \" \" );\n\t\t}\n\n\t\tif ( nSpace == null ) {\n\t\t\tnSpace = [ \" \" ];\n\t\t}\n\t\telse {\n\t\t\tnSpace.push( \" \" );\n\t\t}\n\n\t\tif ( out.n.length === 0 ) {\n\t\t\tfor ( i = 0; i < out.o.length; i++ ) {\n\t\t\t\tstr += \"<del>\" + out.o[i] + oSpace[i] + \"</del>\";\n\t\t\t}\n\t\t}\n\t\telse {\n\t\t\tif ( out.n[0].text == null ) {\n\t\t\t\tfor ( n = 0; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\tstr += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tfor ( i = 0; i < out.n.length; i++ ) {\n\t\t\t\tif (out.n[i].text == null) {\n\t\t\t\t\tstr += \"<ins>\" + out.n[i] + nSpace[i] + \"</ins>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t// `pre` initialized at top of scope\n\t\t\t\t\tpre = \"\";\n\n\t\t\t\t\tfor ( n = out.n[i].row + 1; n < out.o.length && out.o[n].text == null; n++ ) {\n\t\t\t\t\t\tpre += \"<del>\" + out.o[n] + oSpace[n] + \"</del>\";\n\t\t\t\t\t}\n\t\t\t\t\tstr += \" \" + out.n[i].text + nSpace[i] + pre;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn str;\n\t};\n}());\n\n// for CommonJS environments, export everything\nif ( typeof exports !== \"undefined\" ) {\n\textend( exports, QUnit.constructor.prototype );\n}\n\n// get at whatever the global object is, like window in browsers\n}( (function() {return this;}.call()) ));"
  },
  {
    "path": "talk/reveal.js/test/test-markdown-element-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Element Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\" data-element-attributes=\"{_\\s*?([^}]+?)}\">>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\t\t\t\t\t\t<!-- {_class=\"fragment fade-out\" data-fragment-index=\"1\"} -->\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\t\t\t\t\t\t<!-- {_class=\"fragment shrink\"} -->\n\n\t\t\t\t\t\tParagraph 1\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\tParagraph 2\n\t\t\t\t\t\t<!-- {_class=\"fragment grow\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 2 <!-- {_class=\"fragment grow\"} -->\n\t\t\t\t\t\t- list item 3 <!-- {_class=\"fragment grow\"} -->\n\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\n\n\t\t\t\t\t\tParagraph 1.2  \n\t\t\t\t\t\tmulti-line <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.2 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.3 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\tParagraph 2.4 <!-- {_class=\"fragment highlight-red\"} -->\n\n\t\t\t\t\t\t- list item 1 <!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 2<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 3<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 4\n\t\t\t\t\t\t<!-- {_class=\"fragment highlight-green\"} -->\n\t\t\t\t\t\t- list item 5<!-- {_class=\"fragment highlight-green\"} -->\n\n\t\t\t\t\t\tTest\n\n\t\t\t\t\t\t![Example Picture](examples/assets/image2.png)\n\t\t\t\t\t\t<!-- {_class=\"reveal stretch\"} -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def <!-- .element: class=\"fragment highlight-red\" data-fragment-index=\"1\" -->\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .element: class=\"fragment highlight-red\" -->\n\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\t\t\t\t\tA paragraph\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tMultiple  \n\t\t\t\t\tLine\n\t\t\t\t\t<!-- .element: class=\"fragment highlight-blue\" -->\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t  <script type=\"text/template\">\n\t\t\t\t\t## Hello world\n\n\t\t\t\t\tTest<!-- .element: class=\"fragment highlight-blue\" -->\n\n\t\t\t\t\tMore Test\n\t\t\t\t  </script>\n\t\t\t\t</section>\n\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-element-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/test-markdown-element-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 4, 'found four slides' );\n\t});\n\n\n\ttest( 'Attributes on element header in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.fade-out' ).length, 1, 'found one vertical slide with class fragment.fade-out on header' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section h2.fragment.shrink' ).length, 1, 'found one vertical slide with class fragment.shrink on header' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section p.fragment.grow' ).length, 2, 'found a vertical slide with two paragraphs with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element list items in vertical slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section>section li.fragment.grow' ).length, 3, 'found a vertical slide with three list items with class fragment.grow' );\n\t});\n\n\ttest( 'Attributes on element paragraphs in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-red' ).length, 4, 'found a horizontal slide with four paragraphs with class fragment.grow' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section li.fragment.highlight-green' ).length, 5, 'found a horizontal slide with five list items with class fragment.roll-in' );\n\t});\n\ttest( 'Attributes on element list items in horizontal slides', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section img.reveal.stretch' ).length, 1, 'found a horizontal slide with stretched image, class img.reveal.stretch' );\n\t});\n\n\ttest( 'Attributes on elements in vertical slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section h2.fragment.highlight-red' ).length, 2, 'found two h2 titles with fragment highlight-red in vertical slides with default element attribute separator' );\n\t});\n\n\ttest( 'Attributes on elements in single slides with default element attribute separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section p.fragment.highlight-blue' ).length, 3, 'found three elements with fragment highlight-blue in single slide with default element attribute separator' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "talk/reveal.js/test/test-markdown-slide-attributes.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown Attributes</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n\t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by three lines, vertical slides by two lines, attributes are one any line starting with (spaces and) two dashes -->\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-attributes=\"--\\s(.*?)$\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown\n\t\t\t\t\t\t## Slide 1\n\n\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t\t<!-- -- id=\"slide2\" data-transition=\"zoom\" data-background=\"#A0C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1\n\t\t\t\t\t\t<!-- -- data-background=\"#ff0000\" data-transition=\"fade\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2\n\t\t\t\t\t\t[Link to Slide2](#/slide2)\n\n\n\n\t\t\t\t\t\t## Slide 3\n\t\t\t\t\t\t<!-- -- data-transition=\"zoom\" data-background=\"#C6916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section \tdata-markdown data-separator=\"^\\n\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-vertical=\"^\\n\\n\"\n\t\t\t\t\t\t\t\t\tdata-separator-notes=\"^Note:\"\n\t\t\t\t\t\t\t\t\tdata-charset=\"utf-8\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t# Test attributes in Markdown with default separator\n\t\t\t\t\t\t## Slide 1 Def\n\n\n\n\t\t\t\t\t\t## Slide 2 Def\n\t\t\t\t\t\t<!-- .slide: id=\"slide2def\" data-transition=\"concave\" data-background=\"#A7C66B\" -->\n\n\n\t\t\t\t\t\t## Slide 2.1 Def\n\t\t\t\t\t\t<!-- .slide: data-background=\"#f70000\" data-transition=\"page\" -->\n\n\n\t\t\t\t\t\t## Slide 2.2 Def\n\t\t\t\t\t\t[Link to Slide2](#/slide2def)\n\n\n\n\t\t\t\t\t\t## Slide 3 Def\n\t\t\t\t\t\t<!-- .slide: data-transition=\"concave\" data-background=\"#C7916B\" -->\n\n\n\n\t\t\t\t\t\t## Slide 4\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t\t<section data-markdown>\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Hello world\n\n\t\t\t\t\t\tTest\n\t\t\t\t\t\t<!-- .slide: data-background=\"#ff0000\" -->\n\n\t\t\t\t\t\tMore Test\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown-slide-attributes.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/test-markdown-slide-attributes.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 6, 'found six vertical slides' );\n\t});\n\n\ttest( 'Id on slide', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section#slide2' ).length, 1, 'found one slide with id slide2' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section a[href=\"#/slide2\"]' ).length, 1, 'found one slide with a link to slide2' );\n\t});\n\n\ttest( 'data-background attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A0C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#ff0000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C6916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"zoom\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"fade\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"zoom\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-background attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#A7C66B\"]' ).length, 1, 'found one vertical slide with data-background=\"#A0C66B\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-background=\"#f70000\"]' ).length, 1, 'found one vertical slide with data-background=\"#ff0000\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#C7916B\"]' ).length, 1, 'found one slide with data-background=\"#C6916B\"' );\n\t});\n\n\ttest( 'data-transition attributes with default separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"concave\"]' ).length, 1, 'found one vertical slide with data-transition=\"zoom\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section[data-transition=\"page\"]' ).length, 1, 'found one vertical slide with data-transition=\"fade\"' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section [data-transition=\"concave\"]' ).length, 1, 'found one slide with data-transition=\"zoom\"' );\n\t});\n\n\ttest( 'data-transition attributes with inline content', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section[data-background=\"#ff0000\"]' ).length, 3, 'found three horizontal slides with data-background=\"#ff0000\"' );\n\t});\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "talk/reveal.js/test/test-markdown.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test Markdown</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<!-- <section data-markdown=\"example.md\" data-separator=\"^\\n\\n\\n\" data-separator-vertical=\"^\\n\\n\"></section> -->\n\n\t\t\t\t<!-- Slides are separated by newline + three dashes + newline, vertical slides identical but two dashes -->\n\t\t\t\t<section data-markdown data-separator=\"^\\n---\\n$\" data-separator-vertical=\"^\\n--\\n$\">\n\t\t\t\t\t<script type=\"text/template\">\n\t\t\t\t\t\t## Slide 1.1\n\n\t\t\t\t\t\t--\n\n\t\t\t\t\t\t## Slide 1.2\n\n\t\t\t\t\t\t---\n\n\t\t\t\t\t\t## Slide 2\n\t\t\t\t\t</script>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"../plugin/markdown/marked.js\"></script>\n\t\t<script src=\"../plugin/markdown/markdown.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-markdown.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/test-markdown.js",
    "content": "\n\nReveal.addEventListener( 'ready', function() {\n\n\tQUnit.module( 'Markdown' );\n\n\ttest( 'Vertical separator', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section>section' ).length, 2, 'found two slides' );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  },
  {
    "path": "talk/reveal.js/test/test-pdf.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Test PDF exports</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"../css/print/pdf.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test-pdf.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/test-pdf.js",
    "content": "\nReveal.addEventListener( 'ready', function() {\n\n\t// Only one test for now, we're mainly ensuring that there\n\t// are no execution errors when running PDF mode\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\n} );\n\nReveal.initialize({ pdf: true });\n\n"
  },
  {
    "path": "talk/reveal.js/test/test.html",
    "content": "<!doctype html>\n<html lang=\"en\">\n\n\t<head>\n\t\t<meta charset=\"utf-8\">\n\n\t\t<title>reveal.js - Tests</title>\n\n\t\t<link rel=\"stylesheet\" href=\"../css/reveal.css\">\n\t\t<link rel=\"stylesheet\" href=\"qunit-1.12.0.css\">\n\t</head>\n\n\t<body style=\"overflow: auto;\">\n\n\t\t<div id=\"qunit\"></div>\n  \t\t<div id=\"qunit-fixture\"></div>\n\n\t\t<div class=\"reveal\" style=\"display: none;\">\n\n\t\t\t<div class=\"slides\">\n\n\t\t\t\t<section data-background-image=\"examples/assets/image1.png\">\n\t\t\t\t\t<h1>1</h1>\n\t\t\t\t\t<img data-src=\"fake-url.png\">\n\t\t\t\t\t<video data-src=\"fake-url.mp4\"></video>\n\t\t\t\t\t<audio data-src=\"fake-url.mp3\"></audio>\n\t\t\t\t\t<aside class=\"notes\">speaker notes 1</aside>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<section data-background=\"examples/assets/image2.png\" data-notes=\"speaker notes 2\">\n\t\t\t\t\t\t<h1>2.1</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.2</h1>\n\t\t\t\t\t</section>\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>2.3</h1>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section id=\"fragment-slides\">\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.1</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\">4.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.2</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"0\">4.2</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<iframe data-src=\"http://example.com\"></iframe>\n\t\t\t\t\t</section>\n\n\t\t\t\t\t<section>\n\t\t\t\t\t\t<h1>3.3</h1>\n\t\t\t\t\t\t<ul>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"1\">3.3.1</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.2</li>\n\t\t\t\t\t\t\t<li class=\"fragment\" data-fragment-index=\"4\">3.3.3</li>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</section>\n\t\t\t\t</section>\n\n\t\t\t\t<section>\n\t\t\t\t\t<h1>4</h1>\n\t\t\t\t</section>\n\n\t\t\t</div>\n\n\t\t</div>\n\n\t\t<script src=\"../lib/js/head.min.js\"></script>\n\t\t<script src=\"../js/reveal.js\"></script>\n\t\t<script src=\"qunit-1.12.0.js\"></script>\n\n\t\t<script src=\"test.js\"></script>\n\n\t</body>\n</html>\n"
  },
  {
    "path": "talk/reveal.js/test/test.js",
    "content": "\n// These tests expect the DOM to contain a presentation\n// with the following slide structure:\n//\n// 1\n// 2 - Three sub-slides\n// 3 - Three fragment elements\n// 3 - Two fragments with same data-fragment-index\n// 4\n\n\nReveal.addEventListener( 'ready', function() {\n\n\t// ---------------------------------------------------------------\n\t// DOM TESTS\n\n\tQUnit.module( 'DOM' );\n\n\ttest( 'Initial slides classes', function() {\n\t\tvar horizontalSlides = document.querySelectorAll( '.reveal .slides>section' )\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.past' ).length, 0, 'no .past slides' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.present' ).length, 1, 'one .present slide' );\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides>section.future' ).length, horizontalSlides.length - 1, 'remaining horizontal slides are .future' );\n\n\t\tstrictEqual( document.querySelectorAll( '.reveal .slides section.stack' ).length, 2, 'two .stacks' );\n\n\t\tok( document.querySelectorAll( '.reveal .slides section.stack' )[0].querySelectorAll( '.future' ).length > 0, 'vertical slides are given .future' );\n\t});\n\n\t// ---------------------------------------------------------------\n\t// API TESTS\n\n\tQUnit.module( 'API' );\n\n\ttest( 'Reveal.isReady', function() {\n\t\tstrictEqual( Reveal.isReady(), true, 'returns true' );\n\t});\n\n\ttest( 'Reveal.isOverview', function() {\n\t\tstrictEqual( Reveal.isOverview(), false, 'false by default' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), true, 'true after toggling on' );\n\n\t\tReveal.toggleOverview();\n\t\tstrictEqual( Reveal.isOverview(), false, 'false after toggling off' );\n\t});\n\n\ttest( 'Reveal.isPaused', function() {\n\t\tstrictEqual( Reveal.isPaused(), false, 'false by default' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), true, 'true after pausing' );\n\n\t\tReveal.togglePause();\n\t\tstrictEqual( Reveal.isPaused(), false, 'false after resuming' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), false, 'false after Reveal.slide( 1, 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isFirstSlide after vertical slide', function() {\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isFirstSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.isLastSlide(), false, 'false after Reveal.slide( 0, 0 )' );\n\t});\n\n\ttest( 'Reveal.isLastSlide after vertical slide', function() {\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( 1, 1 );\n\t\tReveal.slide( lastSlideIndex );\n\t\tstrictEqual( Reveal.isLastSlide(), true, 'true after Reveal.slide( 1, 1 ) and then Reveal.slide( '+ lastSlideIndex +', 0 )' );\n\t});\n\n\ttest( 'Reveal.getTotalSlides', function() {\n\t\tstrictEqual( Reveal.getTotalSlides(), 8, 'eight slides in total' );\n\t});\n\n\ttest( 'Reveal.getIndices', function() {\n\t\tvar indices = Reveal.getIndices();\n\n\t\tok( indices.hasOwnProperty( 'h' ), 'h exists' );\n\t\tok( indices.hasOwnProperty( 'v' ), 'v exists' );\n\t\tok( indices.hasOwnProperty( 'f' ), 'f exists' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\n\t\tReveal.slide( 1, 2 );\n\t\tstrictEqual( Reveal.getIndices().h, 1, 'h 1' );\n\t\tstrictEqual( Reveal.getIndices().v, 2, 'v 2' );\n\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getIndices().h, 0, 'h 0' );\n\t\tstrictEqual( Reveal.getIndices().v, 0, 'v 0' );\n\t});\n\n\ttest( 'Reveal.getSlide', function() {\n\t\tequal( Reveal.getSlide( 0 ), document.querySelector( '.reveal .slides>section:first-child' ), 'gets correct first slide' );\n\t\tequal( Reveal.getSlide( 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlide( 1, 0 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlide( 1, 1 ), document.querySelector( '.reveal .slides>section:nth-child(2)>section:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlide( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlide( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideBackground', function() {\n\t\tequal( Reveal.getSlideBackground( 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:first-child' ), 'gets correct first background' );\n\t\tequal( Reveal.getSlideBackground( 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2)' ), 'no v index returns stack' );\n\t\tequal( Reveal.getSlideBackground( 1, 0 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(1)' ), 'v index 0 returns first vertical child' );\n\t\tequal( Reveal.getSlideBackground( 1, 1 ), document.querySelector( '.reveal .backgrounds>.slide-background:nth-child(2) .slide-background:nth-child(2)' ), 'v index 1 returns second vertical child' );\n\n\t\tstrictEqual( Reveal.getSlideBackground( 100 ), undefined, 'undefined when out of horizontal bounds' );\n\t\tstrictEqual( Reveal.getSlideBackground( 1, 100 ), undefined, 'undefined when out of vertical bounds' );\n\t});\n\n\ttest( 'Reveal.getSlideNotes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 1', 'works with <aside class=\"notes\">' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tok( Reveal.getSlideNotes() === 'speaker notes 2', 'works with <section data-notes=\"\">' );\n\t});\n\n\ttest( 'Reveal.getPreviousSlide/getCurrentSlide', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tReveal.slide( 1, 0 );\n\n\t\tvar firstSlide = document.querySelector( '.reveal .slides>section:first-child' );\n\t\tvar secondSlide = document.querySelector( '.reveal .slides>section:nth-child(2)>section' );\n\n\t\tequal( Reveal.getPreviousSlide(), firstSlide, 'previous is slide #0' );\n\t\tequal( Reveal.getCurrentSlide(), secondSlide, 'current is slide #1' );\n\t});\n\n\ttest( 'Reveal.getProgress', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 0, 'progress is 0 on first slide' );\n\n\t\tvar lastSlideIndex = document.querySelectorAll( '.reveal .slides>section' ).length - 1;\n\n\t\tReveal.slide( lastSlideIndex, 0 );\n\t\tstrictEqual( Reveal.getProgress(), 1, 'progress is 1 on last slide' );\n\t});\n\n\ttest( 'Reveal.getScale', function() {\n\t\tok( typeof Reveal.getScale() === 'number', 'has scale' );\n\t});\n\n\ttest( 'Reveal.getConfig', function() {\n\t\tok( typeof Reveal.getConfig() === 'object', 'has config' );\n\t});\n\n\ttest( 'Reveal.configure', function() {\n\t\tstrictEqual( Reveal.getConfig().loop, false, '\"loop\" is false to start with' );\n\n\t\tReveal.configure({ loop: true });\n\t\tstrictEqual( Reveal.getConfig().loop, true, '\"loop\" has changed to true' );\n\n\t\tReveal.configure({ loop: false, customTestValue: 1 });\n\t\tstrictEqual( Reveal.getConfig().customTestValue, 1, 'supports custom values' );\n\t});\n\n\ttest( 'Reveal.availableRoutes', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: false, up: false, down: false, right: true }, 'correct for first slide' );\n\n\t\tReveal.slide( 1, 0 );\n\t\tdeepEqual( Reveal.availableRoutes(), { left: true, up: false, down: true, right: true }, 'correct for vertical slide' );\n\t});\n\n\ttest( 'Reveal.next', function() {\n\t\tReveal.slide( 0, 0 );\n\n\t\t// Step through vertical child slides\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 1, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 1, v: 2, f: undefined } );\n\n\t\t// Step through fragments\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 } );\n\t});\n\n\ttest( 'Reveal.next at end', function() {\n\t\tReveal.slide( 3 );\n\n\t\t// We're at the end, this should have no effect\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 3, v: 0, f: undefined } );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// FRAGMENT TESTS\n\n\tQUnit.module( 'Fragments' );\n\n\ttest( 'Sliding to fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: -1 }, 'Reveal.slide( 2, 0, -1 )' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'Reveal.slide( 2, 0, 0 )' );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'Reveal.slide( 2, 0, 2 )' );\n\n\t\tReveal.slide( 2, 0, 1 );\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'Reveal.slide( 2, 0, 1 )' );\n\t});\n\n\ttest( 'Hiding all fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 1, 'one fragment visible when index is 0' );\n\n\t\tReveal.slide( 2, 0, -1 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when index is -1' );\n\t});\n\n\ttest( 'Current fragment', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 2, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment at index -1' );\n\n\t\tReveal.slide( 2, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 1, 'one current fragment at index 0' );\n\n\t\tReveal.slide( 1, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tstrictEqual( fragmentSlide.querySelectorAll( '.fragment.current-fragment' ).length, 0, 'no current fragment when navigating to next slide' );\n\t});\n\n\ttest( 'Stepping through fragments', function() {\n\t\tReveal.slide( 2, 0, -1 );\n\n\t\t// forwards:\n\n\t\tReveal.next();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'next() goes to next fragment' );\n\n\t\tReveal.right();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'right() goes to next fragment' );\n\n\t\tReveal.down();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'down() goes to next fragment' );\n\n\t\tReveal.down(); // moves to f #3\n\n\t\t// backwards:\n\n\t\tReveal.prev();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 2 }, 'prev() goes to prev fragment' );\n\n\t\tReveal.left();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 1 }, 'left() goes to prev fragment' );\n\n\t\tReveal.up();\n\t\tdeepEqual( Reveal.getIndices(), { h: 2, v: 0, f: 0 }, 'up() goes to prev fragment' );\n\t});\n\n\ttest( 'Stepping past fragments', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\tReveal.slide( 0, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 0, 'no fragments visible when on previous slide' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 3, 'all fragments visible when on future slide' );\n\t});\n\n\ttest( 'Fragment indices', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(2)' );\n\n\t\tReveal.slide( 3, 0, 0 );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment.visible' ).length, 2, 'both fragments of same index are shown' );\n\n\t\t// This slide has three fragments, first one is index 0, second and third have index 1\n\t\tReveal.slide( 2, 2, 0 );\n\t\tequal( Reveal.getIndices().f, 0, 'returns correct index for first fragment' );\n\n\t\tReveal.slide( 2, 2, 1 );\n\t\tequal( Reveal.getIndices().f, 1, 'returns correct index for two fragments with same index' );\n\t});\n\n\ttest( 'Index generation', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(1)' );\n\n\t\t// These have no indices defined to start with\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '2' );\n\t});\n\n\ttest( 'Index normalization', function() {\n\t\tvar fragmentSlide = document.querySelector( '#fragment-slides>section:nth-child(3)' );\n\n\t\t// These start out as 1-4-4 and should normalize to 0-1-1\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[0].getAttribute( 'data-fragment-index' ), '0' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[1].getAttribute( 'data-fragment-index' ), '1' );\n\t\tequal( fragmentSlide.querySelectorAll( '.fragment' )[2].getAttribute( 'data-fragment-index' ), '1' );\n\t});\n\n\tasyncTest( 'fragmentshown event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmentshown', _onEvent );\n\n\t\tReveal.slide( 2, 0 );\n\t\tReveal.slide( 2, 0 ); // should do nothing\n\t\tReveal.slide( 2, 0, 0 ); // should do nothing\n\t\tReveal.next();\n\t\tReveal.next();\n\t\tReveal.prev(); // shouldn't fire fragmentshown\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmentshown', _onEvent );\n\t});\n\n\tasyncTest( 'fragmenthidden event', function() {\n\t\texpect( 2 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'fragmenthidden', _onEvent );\n\n\t\tReveal.slide( 2, 0, 2 );\n\t\tReveal.slide( 2, 0, 2 ); // should do nothing\n\t\tReveal.prev();\n\t\tReveal.prev();\n\t\tReveal.next(); // shouldn't fire fragmenthidden\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'fragmenthidden', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// AUTO-SLIDE TESTS\n\n\tQUnit.module( 'Auto Sliding' );\n\n\ttest( 'Reveal.isAutoSliding', function() {\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false by default' );\n\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after starting' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after setting to 0' );\n\t});\n\n\ttest( 'Reveal.toggleAutoSlide', function() {\n\t\tReveal.configure({ autoSlide: 10000 });\n\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), false, 'false after first toggle' );\n\t\tReveal.toggleAutoSlide();\n\t\tstrictEqual( Reveal.isAutoSliding(), true, 'true after second toggle' );\n\n\t\tReveal.configure({ autoSlide: 0 });\n\t});\n\n\tasyncTest( 'autoslidepaused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslidepaused', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslidepaused', _onEvent );\n\t});\n\n\tasyncTest( 'autoslideresumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'autoslideresumed', _onEvent );\n\t\tReveal.configure({ autoSlide: 10000 });\n\t\tReveal.toggleAutoSlide();\n\t\tReveal.toggleAutoSlide();\n\n\t\tstart();\n\n\t\t// cleanup\n\t\tReveal.configure({ autoSlide: 0 });\n\t\tReveal.removeEventListener( 'autoslideresumed', _onEvent );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// CONFIGURATION VALUES\n\n\tQUnit.module( 'Configuration' );\n\n\ttest( 'Controls', function() {\n\t\tvar controlsElement = document.querySelector( '.reveal>.controls' );\n\n\t\tReveal.configure({ controls: false });\n\t\tequal( controlsElement.style.display, 'none', 'controls are hidden' );\n\n\t\tReveal.configure({ controls: true });\n\t\tequal( controlsElement.style.display, 'block', 'controls are visible' );\n\t});\n\n\ttest( 'Progress', function() {\n\t\tvar progressElement = document.querySelector( '.reveal>.progress' );\n\n\t\tReveal.configure({ progress: false });\n\t\tequal( progressElement.style.display, 'none', 'progress are hidden' );\n\n\t\tReveal.configure({ progress: true });\n\t\tequal( progressElement.style.display, 'block', 'progress are visible' );\n\t});\n\n\ttest( 'Loop', function() {\n\t\tReveal.configure({ loop: true });\n\n\t\tReveal.slide( 0, 0 );\n\n\t\tReveal.left();\n\t\tnotEqual( Reveal.getIndices().h, 0, 'looped from start to end' );\n\n\t\tReveal.right();\n\t\tequal( Reveal.getIndices().h, 0, 'looped from end to start' );\n\n\t\tReveal.configure({ loop: false });\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// LAZY-LOADING TESTS\n\n\tQUnit.module( 'Lazy-Loading' );\n\n\ttest( 'img with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section img[src]' ).length, 1, 'Image source has been set' );\n\t});\n\n\ttest( 'video with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section video[src]' ).length, 1, 'Video source has been set' );\n\t});\n\n\ttest( 'audio with data-src', function() {\n\t\tstrictEqual( document.querySelectorAll( '.reveal section audio[src]' ).length, 1, 'Audio source has been set' );\n\t});\n\n\ttest( 'iframe with data-src', function() {\n\t\tReveal.slide( 0, 0 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t\tReveal.slide( 2, 1 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 1, 'Iframe source is set' );\n\t\tReveal.slide( 2, 2 );\n\t\tstrictEqual( document.querySelectorAll( '.reveal section iframe[src]' ).length, 0, 'Iframe source is not set' );\n\t});\n\n\ttest( 'background images', function() {\n\t\tvar imageSource1 = Reveal.getSlide( 0 ).getAttribute( 'data-background-image' );\n\t\tvar imageSource2 = Reveal.getSlide( 1, 0 ).getAttribute( 'data-background' );\n\n\t\t// check that the images are applied to the background elements\n\t\tok( Reveal.getSlideBackground( 0 ).style.backgroundImage.indexOf( imageSource1 ) !== -1, 'data-background-image worked' );\n\t\tok( Reveal.getSlideBackground( 1, 0 ).style.backgroundImage.indexOf( imageSource2 ) !== -1, 'data-background worked' );\n\t});\n\n\n\t// ---------------------------------------------------------------\n\t// EVENT TESTS\n\n\tQUnit.module( 'Events' );\n\n\tasyncTest( 'slidechanged', function() {\n\t\texpect( 3 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'slidechanged', _onEvent );\n\n\t\tReveal.slide( 1, 0 ); // should trigger\n\t\tReveal.slide( 1, 0 ); // should do nothing\n\t\tReveal.next(); // should trigger\n\t\tReveal.slide( 3, 0 ); // should trigger\n\t\tReveal.next(); // should do nothing\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'slidechanged', _onEvent );\n\n\t});\n\n\tasyncTest( 'paused', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'paused', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'paused', _onEvent );\n\t});\n\n\tasyncTest( 'resumed', function() {\n\t\texpect( 1 );\n\n\t\tvar _onEvent = function( event ) {\n\t\t\tok( true, 'event fired' );\n\t\t}\n\n\t\tReveal.addEventListener( 'resumed', _onEvent );\n\n\t\tReveal.togglePause();\n\t\tReveal.togglePause();\n\n\t\tstart();\n\n\t\tReveal.removeEventListener( 'resumed', _onEvent );\n\t});\n\n\n} );\n\nReveal.initialize();\n\n"
  }
]