diff --git a/.editorconfig b/.editorconfig index 70f5ed3..71a639e 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,20 +1,17 @@ -# This file is for unifying the coding style for different editors and IDEs -# editorconfig.org +# EditorConfig is awesome: https://EditorConfig.org +# top-most EditorConfig file root = true +# Unix-style newlines with a newline ending every file [*] -charset = utf-8 end_of_line = lf insert_final_newline = true -trim_trailing_whitespace = true -indent_style = tab -indent_size = 4 -tab_width = 4 - -[*.{json,txt,js}] indent_style = space +charset = utf-8 + +[*.{js,jsx,ts,tsx,css,html}] indent_size = 2 -[*.txt] -end_of_line = crlf +[*.yml,*.yaml,*.json,*.toml] +indent_size = 2 diff --git a/.eslintrc b/.eslintrc deleted file mode 100644 index e3578aa..0000000 --- a/.eslintrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "extends": "standard" -} diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml new file mode 100644 index 0000000..0a1d807 --- /dev/null +++ b/.github/workflows/deploy.yaml @@ -0,0 +1,73 @@ +# Sample workflow for building and deploying a Hugo site to GitHub Pages +name: Deploy Hugo site to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: + - master + - main + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. +# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. +concurrency: + group: "pages" + cancel-in-progress: false + +# Default to bash +defaults: + run: + shell: bash + +jobs: + # Build job + build: + runs-on: ubuntu-22.04 + steps: + - name: Setup Hugo + uses: peaceiris/actions-hugo@v3 + with: + hugo-version: 'latest' + extended: true + + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup Pages + id: pages + uses: actions/configure-pages@v4 + + - name: Build with Hugo + env: + # For maximum backward compatibility with Hugo modules + HUGO_ENVIRONMENT: production + HUGO_ENV: production + run: | + hugo -s exampleSite --minify --gc --themesDir ../.. \ + --baseURL "${{ steps.pages.outputs.base_url }}/" + + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + with: + path: ./exampleSite/public + + # Deployment job + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 diff --git a/.gitignore b/.gitignore index c016021..c3e0e21 100644 --- a/.gitignore +++ b/.gitignore @@ -1,170 +1,6 @@ -# Created by https://www.gitignore.io/api/node,sublimetext,windows,macos,sass +node_modules +public -### macOS ### -# General -.DS_Store -.AppleDouble -.LSOverride - -# Icon must end with two \r -Icon - -# Thumbnails -._* - -# Files that might appear in the root of a volume -.DocumentRevisions-V100 -.fseventsd -.Spotlight-V100 -.TemporaryItems -.Trashes -.VolumeIcon.icns -.com.apple.timemachine.donotpresent - -# Directories potentially created on remote AFP share -.AppleDB -.AppleDesktop -Network Trash Folder -Temporary Items -.apdisk - -### Node ### -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity +.hugo_build.lock -# dotenv environment variables file -.env - -# parcel-bundler cache (https://parceljs.org/) -.cache - -# next.js build output -.next - -# nuxt.js build output -.nuxt - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless - -### Sass ### -.sass-cache/ -*.css.map -*.sass.map -*.scss.map - -### SublimeText ### -# Cache files for Sublime Text -*.tmlanguage.cache -*.tmPreferences.cache -*.stTheme.cache - -# Workspace files are user-specific -*.sublime-workspace - -# Project files should be checked into the repository, unless a significant -# proportion of contributors will probably not be using Sublime Text -# *.sublime-project - -# SFTP configuration file -sftp-config.json - -# Package control specific files -Package Control.last-run -Package Control.ca-list -Package Control.ca-bundle -Package Control.system-ca-bundle -Package Control.cache/ -Package Control.ca-certs/ -Package Control.merged-ca-bundle -Package Control.user-ca-bundle -oscrypto-ca-bundle.crt -bh_unicode_properties.cache - -# Sublime-github package stores a github token in this file -# https://packagecontrol.io/packages/sublime-github -GitHub.sublime-settings - -### Windows ### -# Windows thumbnail cache files -Thumbs.db -ehthumbs.db -ehthumbs_vista.db - -# Dump file -*.stackdump - -# Folder config file -[Dd]esktop.ini - -# Recycle Bin used on file shares -$RECYCLE.BIN/ - -# Windows Installer files -*.cab -*.msi -*.msix -*.msm -*.msp - -# Windows shortcuts -*.lnk - - -# End of https://www.gitignore.io/api/node,sublimetext,windows,macos,sass +.DS_Store diff --git a/.stylelintrc b/.stylelintrc deleted file mode 100644 index 3dce7a2..0000000 --- a/.stylelintrc +++ /dev/null @@ -1,8 +0,0 @@ -"rules": { - "block-no-empty": true, - "color-hex-case": "lower", - "color-hex-length": "short", - "color-no-invalid-hex": true, - "declaration-colon-space-after": "always", - "max-empty-lines": 2 -} diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index ed369a4..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,5 +0,0 @@ -# CHANGELOG.md - -## 1.0.0 (Apr 16, 2019) - -First release diff --git a/CNAME b/CNAME deleted file mode 100644 index e6af898..0000000 --- a/CNAME +++ /dev/null @@ -1 +0,0 @@ -xvowl.raydak.de \ No newline at end of file diff --git a/LICENSE b/LICENSE index 5f37774..ef63b5f 100644 --- a/LICENSE +++ b/LICENSE @@ -1,674 +1,21 @@ - GNU GENERAL PUBLIC LICENSE - Version 3, 29 June 2007 - - Copyright (C) 2007 Free Software Foundation, Inc. - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - - Preamble - - The GNU General Public License is a free, copyleft license for -software and other kinds of works. - - The licenses for most software and other practical works are designed -to take away your freedom to share and change the works. By contrast, -the GNU General Public License is intended to guarantee your freedom to -share and change all versions of a program--to make sure it remains free -software for all its users. We, the Free Software Foundation, use the -GNU General Public License for most of our software; it applies also to -any other work released this way by its authors. You can apply it to -your programs, too. - - When we speak of free software, we are referring to freedom, not -price. Our General Public Licenses are designed to make sure that you -have the freedom to distribute copies of free software (and charge for -them if you wish), that you receive source code or can get it if you -want it, that you can change the software or use pieces of it in new -free programs, and that you know you can do these things. - - To protect your rights, we need to prevent others from denying you -these rights or asking you to surrender the rights. Therefore, you have -certain responsibilities if you distribute copies of the software, or if -you modify it: responsibilities to respect the freedom of others. - - For example, if you distribute copies of such a program, whether -gratis or for a fee, you must pass on to the recipients the same -freedoms that you received. You must make sure that they, too, receive -or can get the source code. And you must show them these terms so they -know their rights. - - Developers that use the GNU GPL protect your rights with two steps: -(1) assert copyright on the software, and (2) offer you this License -giving you legal permission to copy, distribute and/or modify it. - - For the developers' and authors' protection, the GPL clearly explains -that there is no warranty for this free software. For both users' and -authors' sake, the GPL requires that modified versions be marked as -changed, so that their problems will not be attributed erroneously to -authors of previous versions. - - Some devices are designed to deny users access to install or run -modified versions of the software inside them, although the manufacturer -can do so. This is fundamentally incompatible with the aim of -protecting users' freedom to change the software. The systematic -pattern of such abuse occurs in the area of products for individuals to -use, which is precisely where it is most unacceptable. Therefore, we -have designed this version of the GPL to prohibit the practice for those -products. If such problems arise substantially in other domains, we -stand ready to extend this provision to those domains in future versions -of the GPL, as needed to protect the freedom of users. - - Finally, every program is threatened constantly by software patents. -States should not allow patents to restrict development and use of -software on general-purpose computers, but in those that do, we wish to -avoid the special danger that patents applied to a free program could -make it effectively proprietary. To prevent this, the GPL assures that -patents cannot be used to render the program non-free. - - The precise terms and conditions for copying, distribution and -modification follow. - - TERMS AND CONDITIONS - - 0. Definitions. - - "This License" refers to version 3 of the GNU General Public License. - - "Copyright" also means copyright-like laws that apply to other kinds of -works, such as semiconductor masks. - - "The Program" refers to any copyrightable work licensed under this -License. Each licensee is addressed as "you". "Licensees" and -"recipients" may be individuals or organizations. - - To "modify" a work means to copy from or adapt all or part of the work -in a fashion requiring copyright permission, other than the making of an -exact copy. The resulting work is called a "modified version" of the -earlier work or a work "based on" the earlier work. - - A "covered work" means either the unmodified Program or a work based -on the Program. - - To "propagate" a work means to do anything with it that, without -permission, would make you directly or secondarily liable for -infringement under applicable copyright law, except executing it on a -computer or modifying a private copy. Propagation includes copying, -distribution (with or without modification), making available to the -public, and in some countries other activities as well. - - To "convey" a work means any kind of propagation that enables other -parties to make or receive copies. Mere interaction with a user through -a computer network, with no transfer of a copy, is not conveying. - - An interactive user interface displays "Appropriate Legal Notices" -to the extent that it includes a convenient and prominently visible -feature that (1) displays an appropriate copyright notice, and (2) -tells the user that there is no warranty for the work (except to the -extent that warranties are provided), that licensees may convey the -work under this License, and how to view a copy of this License. If -the interface presents a list of user commands or options, such as a -menu, a prominent item in the list meets this criterion. - - 1. Source Code. - - The "source code" for a work means the preferred form of the work -for making modifications to it. "Object code" means any non-source -form of a work. - - A "Standard Interface" means an interface that either is an official -standard defined by a recognized standards body, or, in the case of -interfaces specified for a particular programming language, one that -is widely used among developers working in that language. - - The "System Libraries" of an executable work include anything, other -than the work as a whole, that (a) is included in the normal form of -packaging a Major Component, but which is not part of that Major -Component, and (b) serves only to enable use of the work with that -Major Component, or to implement a Standard Interface for which an -implementation is available to the public in source code form. A -"Major Component", in this context, means a major essential component -(kernel, window system, and so on) of the specific operating system -(if any) on which the executable work runs, or a compiler used to -produce the work, or an object code interpreter used to run it. - - The "Corresponding Source" for a work in object code form means all -the source code needed to generate, install, and (for an executable -work) run the object code and to modify the work, including scripts to -control those activities. However, it does not include the work's -System Libraries, or general-purpose tools or generally available free -programs which are used unmodified in performing those activities but -which are not part of the work. For example, Corresponding Source -includes interface definition files associated with source files for -the work, and the source code for shared libraries and dynamically -linked subprograms that the work is specifically designed to require, -such as by intimate data communication or control flow between those -subprograms and other parts of the work. - - The Corresponding Source need not include anything that users -can regenerate automatically from other parts of the Corresponding -Source. - - The Corresponding Source for a work in source code form is that -same work. - - 2. Basic Permissions. - - All rights granted under this License are granted for the term of -copyright on the Program, and are irrevocable provided the stated -conditions are met. This License explicitly affirms your unlimited -permission to run the unmodified Program. The output from running a -covered work is covered by this License only if the output, given its -content, constitutes a covered work. This License acknowledges your -rights of fair use or other equivalent, as provided by copyright law. - - You may make, run and propagate covered works that you do not -convey, without conditions so long as your license otherwise remains -in force. You may convey covered works to others for the sole purpose -of having them make modifications exclusively for you, or provide you -with facilities for running those works, provided that you comply with -the terms of this License in conveying all material for which you do -not control copyright. Those thus making or running the covered works -for you must do so exclusively on your behalf, under your direction -and control, on terms that prohibit them from making any copies of -your copyrighted material outside their relationship with you. - - Conveying under any other circumstances is permitted solely under -the conditions stated below. Sublicensing is not allowed; section 10 -makes it unnecessary. - - 3. Protecting Users' Legal Rights From Anti-Circumvention Law. - - No covered work shall be deemed part of an effective technological -measure under any applicable law fulfilling obligations under article -11 of the WIPO copyright treaty adopted on 20 December 1996, or -similar laws prohibiting or restricting circumvention of such -measures. - - When you convey a covered work, you waive any legal power to forbid -circumvention of technological measures to the extent such circumvention -is effected by exercising rights under this License with respect to -the covered work, and you disclaim any intention to limit operation or -modification of the work as a means of enforcing, against the work's -users, your or third parties' legal rights to forbid circumvention of -technological measures. - - 4. Conveying Verbatim Copies. - - You may convey verbatim copies of the Program's source code as you -receive it, in any medium, provided that you conspicuously and -appropriately publish on each copy an appropriate copyright notice; -keep intact all notices stating that this License and any -non-permissive terms added in accord with section 7 apply to the code; -keep intact all notices of the absence of any warranty; and give all -recipients a copy of this License along with the Program. - - You may charge any price or no price for each copy that you convey, -and you may offer support or warranty protection for a fee. - - 5. Conveying Modified Source Versions. - - You may convey a work based on the Program, or the modifications to -produce it from the Program, in the form of source code under the -terms of section 4, provided that you also meet all of these conditions: - - a) The work must carry prominent notices stating that you modified - it, and giving a relevant date. - - b) The work must carry prominent notices stating that it is - released under this License and any conditions added under section - 7. This requirement modifies the requirement in section 4 to - "keep intact all notices". - - c) You must license the entire work, as a whole, under this - License to anyone who comes into possession of a copy. This - License will therefore apply, along with any applicable section 7 - additional terms, to the whole of the work, and all its parts, - regardless of how they are packaged. This License gives no - permission to license the work in any other way, but it does not - invalidate such permission if you have separately received it. - - d) If the work has interactive user interfaces, each must display - Appropriate Legal Notices; however, if the Program has interactive - interfaces that do not display Appropriate Legal Notices, your - work need not make them do so. - - A compilation of a covered work with other separate and independent -works, which are not by their nature extensions of the covered work, -and which are not combined with it such as to form a larger program, -in or on a volume of a storage or distribution medium, is called an -"aggregate" if the compilation and its resulting copyright are not -used to limit the access or legal rights of the compilation's users -beyond what the individual works permit. Inclusion of a covered work -in an aggregate does not cause this License to apply to the other -parts of the aggregate. - - 6. Conveying Non-Source Forms. - - You may convey a covered work in object code form under the terms -of sections 4 and 5, provided that you also convey the -machine-readable Corresponding Source under the terms of this License, -in one of these ways: - - a) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by the - Corresponding Source fixed on a durable physical medium - customarily used for software interchange. - - b) Convey the object code in, or embodied in, a physical product - (including a physical distribution medium), accompanied by a - written offer, valid for at least three years and valid for as - long as you offer spare parts or customer support for that product - model, to give anyone who possesses the object code either (1) a - copy of the Corresponding Source for all the software in the - product that is covered by this License, on a durable physical - medium customarily used for software interchange, for a price no - more than your reasonable cost of physically performing this - conveying of source, or (2) access to copy the - Corresponding Source from a network server at no charge. - - c) Convey individual copies of the object code with a copy of the - written offer to provide the Corresponding Source. This - alternative is allowed only occasionally and noncommercially, and - only if you received the object code with such an offer, in accord - with subsection 6b. - - d) Convey the object code by offering access from a designated - place (gratis or for a charge), and offer equivalent access to the - Corresponding Source in the same way through the same place at no - further charge. You need not require recipients to copy the - Corresponding Source along with the object code. If the place to - copy the object code is a network server, the Corresponding Source - may be on a different server (operated by you or a third party) - that supports equivalent copying facilities, provided you maintain - clear directions next to the object code saying where to find the - Corresponding Source. Regardless of what server hosts the - Corresponding Source, you remain obligated to ensure that it is - available for as long as needed to satisfy these requirements. - - e) Convey the object code using peer-to-peer transmission, provided - you inform other peers where the object code and Corresponding - Source of the work are being offered to the general public at no - charge under subsection 6d. - - A separable portion of the object code, whose source code is excluded -from the Corresponding Source as a System Library, need not be -included in conveying the object code work. - - A "User Product" is either (1) a "consumer product", which means any -tangible personal property which is normally used for personal, family, -or household purposes, or (2) anything designed or sold for incorporation -into a dwelling. In determining whether a product is a consumer product, -doubtful cases shall be resolved in favor of coverage. For a particular -product received by a particular user, "normally used" refers to a -typical or common use of that class of product, regardless of the status -of the particular user or of the way in which the particular user -actually uses, or expects or is expected to use, the product. A product -is a consumer product regardless of whether the product has substantial -commercial, industrial or non-consumer uses, unless such uses represent -the only significant mode of use of the product. - - "Installation Information" for a User Product means any methods, -procedures, authorization keys, or other information required to install -and execute modified versions of a covered work in that User Product from -a modified version of its Corresponding Source. The information must -suffice to ensure that the continued functioning of the modified object -code is in no case prevented or interfered with solely because -modification has been made. - - If you convey an object code work under this section in, or with, or -specifically for use in, a User Product, and the conveying occurs as -part of a transaction in which the right of possession and use of the -User Product is transferred to the recipient in perpetuity or for a -fixed term (regardless of how the transaction is characterized), the -Corresponding Source conveyed under this section must be accompanied -by the Installation Information. But this requirement does not apply -if neither you nor any third party retains the ability to install -modified object code on the User Product (for example, the work has -been installed in ROM). - - The requirement to provide Installation Information does not include a -requirement to continue to provide support service, warranty, or updates -for a work that has been modified or installed by the recipient, or for -the User Product in which it has been modified or installed. Access to a -network may be denied when the modification itself materially and -adversely affects the operation of the network or violates the rules and -protocols for communication across the network. - - Corresponding Source conveyed, and Installation Information provided, -in accord with this section must be in a format that is publicly -documented (and with an implementation available to the public in -source code form), and must require no special password or key for -unpacking, reading or copying. - - 7. Additional Terms. - - "Additional permissions" are terms that supplement the terms of this -License by making exceptions from one or more of its conditions. -Additional permissions that are applicable to the entire Program shall -be treated as though they were included in this License, to the extent -that they are valid under applicable law. If additional permissions -apply only to part of the Program, that part may be used separately -under those permissions, but the entire Program remains governed by -this License without regard to the additional permissions. - - When you convey a copy of a covered work, you may at your option -remove any additional permissions from that copy, or from any part of -it. (Additional permissions may be written to require their own -removal in certain cases when you modify the work.) You may place -additional permissions on material, added by you to a covered work, -for which you have or can give appropriate copyright permission. - - Notwithstanding any other provision of this License, for material you -add to a covered work, you may (if authorized by the copyright holders of -that material) supplement the terms of this License with terms: - - a) Disclaiming warranty or limiting liability differently from the - terms of sections 15 and 16 of this License; or - - b) Requiring preservation of specified reasonable legal notices or - author attributions in that material or in the Appropriate Legal - Notices displayed by works containing it; or - - c) Prohibiting misrepresentation of the origin of that material, or - requiring that modified versions of such material be marked in - reasonable ways as different from the original version; or - - d) Limiting the use for publicity purposes of names of licensors or - authors of the material; or - - e) Declining to grant rights under trademark law for use of some - trade names, trademarks, or service marks; or - - f) Requiring indemnification of licensors and authors of that - material by anyone who conveys the material (or modified versions of - it) with contractual assumptions of liability to the recipient, for - any liability that these contractual assumptions directly impose on - those licensors and authors. - - All other non-permissive additional terms are considered "further -restrictions" within the meaning of section 10. If the Program as you -received it, or any part of it, contains a notice stating that it is -governed by this License along with a term that is a further -restriction, you may remove that term. If a license document contains -a further restriction but permits relicensing or conveying under this -License, you may add to a covered work material governed by the terms -of that license document, provided that the further restriction does -not survive such relicensing or conveying. - - If you add terms to a covered work in accord with this section, you -must place, in the relevant source files, a statement of the -additional terms that apply to those files, or a notice indicating -where to find the applicable terms. - - Additional terms, permissive or non-permissive, may be stated in the -form of a separately written license, or stated as exceptions; -the above requirements apply either way. - - 8. Termination. - - You may not propagate or modify a covered work except as expressly -provided under this License. Any attempt otherwise to propagate or -modify it is void, and will automatically terminate your rights under -this License (including any patent licenses granted under the third -paragraph of section 11). - - However, if you cease all violation of this License, then your -license from a particular copyright holder is reinstated (a) -provisionally, unless and until the copyright holder explicitly and -finally terminates your license, and (b) permanently, if the copyright -holder fails to notify you of the violation by some reasonable means -prior to 60 days after the cessation. - - Moreover, your license from a particular copyright holder is -reinstated permanently if the copyright holder notifies you of the -violation by some reasonable means, this is the first time you have -received notice of violation of this License (for any work) from that -copyright holder, and you cure the violation prior to 30 days after -your receipt of the notice. - - Termination of your rights under this section does not terminate the -licenses of parties who have received copies or rights from you under -this License. If your rights have been terminated and not permanently -reinstated, you do not qualify to receive new licenses for the same -material under section 10. - - 9. Acceptance Not Required for Having Copies. - - You are not required to accept this License in order to receive or -run a copy of the Program. Ancillary propagation of a covered work -occurring solely as a consequence of using peer-to-peer transmission -to receive a copy likewise does not require acceptance. However, -nothing other than this License grants you permission to propagate or -modify any covered work. These actions infringe copyright if you do -not accept this License. Therefore, by modifying or propagating a -covered work, you indicate your acceptance of this License to do so. - - 10. Automatic Licensing of Downstream Recipients. - - Each time you convey a covered work, the recipient automatically -receives a license from the original licensors, to run, modify and -propagate that work, subject to this License. You are not responsible -for enforcing compliance by third parties with this License. - - An "entity transaction" is a transaction transferring control of an -organization, or substantially all assets of one, or subdividing an -organization, or merging organizations. If propagation of a covered -work results from an entity transaction, each party to that -transaction who receives a copy of the work also receives whatever -licenses to the work the party's predecessor in interest had or could -give under the previous paragraph, plus a right to possession of the -Corresponding Source of the work from the predecessor in interest, if -the predecessor has it or can get it with reasonable efforts. - - You may not impose any further restrictions on the exercise of the -rights granted or affirmed under this License. For example, you may -not impose a license fee, royalty, or other charge for exercise of -rights granted under this License, and you may not initiate litigation -(including a cross-claim or counterclaim in a lawsuit) alleging that -any patent claim is infringed by making, using, selling, offering for -sale, or importing the Program or any portion of it. - - 11. Patents. - - A "contributor" is a copyright holder who authorizes use under this -License of the Program or a work on which the Program is based. The -work thus licensed is called the contributor's "contributor version". - - A contributor's "essential patent claims" are all patent claims -owned or controlled by the contributor, whether already acquired or -hereafter acquired, that would be infringed by some manner, permitted -by this License, of making, using, or selling its contributor version, -but do not include claims that would be infringed only as a -consequence of further modification of the contributor version. For -purposes of this definition, "control" includes the right to grant -patent sublicenses in a manner consistent with the requirements of -this License. - - Each contributor grants you a non-exclusive, worldwide, royalty-free -patent license under the contributor's essential patent claims, to -make, use, sell, offer for sale, import and otherwise run, modify and -propagate the contents of its contributor version. - - In the following three paragraphs, a "patent license" is any express -agreement or commitment, however denominated, not to enforce a patent -(such as an express permission to practice a patent or covenant not to -sue for patent infringement). To "grant" such a patent license to a -party means to make such an agreement or commitment not to enforce a -patent against the party. - - If you convey a covered work, knowingly relying on a patent license, -and the Corresponding Source of the work is not available for anyone -to copy, free of charge and under the terms of this License, through a -publicly available network server or other readily accessible means, -then you must either (1) cause the Corresponding Source to be so -available, or (2) arrange to deprive yourself of the benefit of the -patent license for this particular work, or (3) arrange, in a manner -consistent with the requirements of this License, to extend the patent -license to downstream recipients. "Knowingly relying" means you have -actual knowledge that, but for the patent license, your conveying the -covered work in a country, or your recipient's use of the covered work -in a country, would infringe one or more identifiable patents in that -country that you have reason to believe are valid. - - If, pursuant to or in connection with a single transaction or -arrangement, you convey, or propagate by procuring conveyance of, a -covered work, and grant a patent license to some of the parties -receiving the covered work authorizing them to use, propagate, modify -or convey a specific copy of the covered work, then the patent license -you grant is automatically extended to all recipients of the covered -work and works based on it. - - A patent license is "discriminatory" if it does not include within -the scope of its coverage, prohibits the exercise of, or is -conditioned on the non-exercise of one or more of the rights that are -specifically granted under this License. You may not convey a covered -work if you are a party to an arrangement with a third party that is -in the business of distributing software, under which you make payment -to the third party based on the extent of your activity of conveying -the work, and under which the third party grants, to any of the -parties who would receive the covered work from you, a discriminatory -patent license (a) in connection with copies of the covered work -conveyed by you (or copies made from those copies), or (b) primarily -for and in connection with specific products or compilations that -contain the covered work, unless you entered into that arrangement, -or that patent license was granted, prior to 28 March 2007. - - Nothing in this License shall be construed as excluding or limiting -any implied license or other defenses to infringement that may -otherwise be available to you under applicable patent law. - - 12. No Surrender of Others' Freedom. - - If conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot convey a -covered work so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you may -not convey it at all. For example, if you agree to terms that obligate you -to collect a royalty for further conveying from those to whom you convey -the Program, the only way you could satisfy both those terms and this -License would be to refrain entirely from conveying the Program. - - 13. Use with the GNU Affero General Public License. - - Notwithstanding any other provision of this License, you have -permission to link or combine any covered work with a work licensed -under version 3 of the GNU Affero General Public License into a single -combined work, and to convey the resulting work. The terms of this -License will continue to apply to the part which is the covered work, -but the special requirements of the GNU Affero General Public License, -section 13, concerning interaction through a network will apply to the -combination as such. - - 14. Revised Versions of this License. - - The Free Software Foundation may publish revised and/or new versions of -the GNU General Public License from time to time. Such new versions will -be similar in spirit to the present version, but may differ in detail to -address new problems or concerns. - - Each version is given a distinguishing version number. If the -Program specifies that a certain numbered version of the GNU General -Public License "or any later version" applies to it, you have the -option of following the terms and conditions either of that numbered -version or of any later version published by the Free Software -Foundation. If the Program does not specify a version number of the -GNU General Public License, you may choose any version ever published -by the Free Software Foundation. - - If the Program specifies that a proxy can decide which future -versions of the GNU General Public License can be used, that proxy's -public statement of acceptance of a version permanently authorizes you -to choose that version for the Program. - - Later license versions may give you additional or different -permissions. However, no additional obligations are imposed on any -author or copyright holder as a result of your choosing to follow a -later version. - - 15. Disclaimer of Warranty. - - THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY -APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT -HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY -OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, -THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM -IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF -ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. Limitation of Liability. - - IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING -WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS -THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY -GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE -USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF -DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD -PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), -EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF -SUCH DAMAGES. - - 17. Interpretation of Sections 15 and 16. - - If the disclaimer of warranty and limitation of liability provided -above cannot be given local legal effect according to their terms, -reviewing courts shall apply local law that most closely approximates -an absolute waiver of all civil liability in connection with the -Program, unless a warranty or assumption of liability accompanies a -copy of the Program in return for a fee. - - END OF TERMS AND CONDITIONS - - How to Apply These Terms to Your New Programs - - If you develop a new program, and you want it to be of the greatest -possible use to the public, the best way to achieve this is to make it -free software which everyone can redistribute and change under these terms. - - To do so, attach the following notices to the program. It is safest -to attach them to the start of each source file to most effectively -state the exclusion of warranty; and each file should have at least -the "copyright" line and a pointer to where the full notice is found. - - {one line to give the program's name and a brief idea of what it does.} - Copyright (C) {year} {name of author} - - This program is free software: you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation, either version 3 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program. If not, see . - -Also add information on how to contact you by electronic and paper mail. - - If the program does terminal interaction, make it output a short -notice like this when it starts in an interactive mode: - - {project} Copyright (C) {year} {fullname} - This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. - This is free software, and you are welcome to redistribute it - under certain conditions; type `show c' for details. - -The hypothetical commands `show w' and `show c' should show the appropriate -parts of the General Public License. Of course, your program's commands -might be different; for a GUI interface, you would use an "about box". - - You should also get your employer (if you work as a programmer) or school, -if any, to sign a "copyright disclaimer" for the program, if necessary. -For more information on this, and how to apply and follow the GNU GPL, see -. - - The GNU General Public License does not permit incorporating your program -into proprietary programs. If your program is a subroutine library, you -may consider it more useful to permit linking proprietary applications with -the library. If this is what you want to do, use the GNU Lesser General -Public License instead of this License. But first, please read -. +MIT License + +Copyright (c) [2024] [raydak] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index 2b020bb..c480be4 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,7 @@ -# xVOWL +# xVOWL Landing page -Landing page for new project idea. +Landing page for xvowl. + +## Credits + +https://github.com/tomowang/hugo-theme-tailwind diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..c6f3fce --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +title = '{{ replace .File.ContentBaseName "-" " " | title }}' +date = {{ .Date }} +draft = true ++++ diff --git a/assets/css/index.css b/assets/css/index.css new file mode 100644 index 0000000..6ce68f1 --- /dev/null +++ b/assets/css/index.css @@ -0,0 +1,3083 @@ +.footnote-backref { + text-decoration: none !important; +} + +.darkmode-toggle .icon-tabler.icon-tabler-brightness-down { + fill: white; + stroke: white; +} + +.darkmode-toggle .icon-tabler.icon-tabler-moon-stars { + fill: white; + stroke: white; +} + +/* +! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com +*/ + +/* +1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4) +2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116) +*/ + +*, +::before, +::after { + box-sizing: border-box; + /* 1 */ + border-width: 0; + /* 2 */ + border-style: solid; + /* 2 */ + border-color: #e5e7eb; + /* 2 */ +} + +::before, +::after { + --tw-content: ''; +} + +/* +1. Use a consistent sensible line-height in all browsers. +2. Prevent adjustments of font size after orientation changes in iOS. +3. Use a more readable tab size. +4. Use the user's configured `sans` font-family by default. +5. Use the user's configured `sans` font-feature-settings by default. +6. Use the user's configured `sans` font-variation-settings by default. +7. Disable tap highlights on iOS +*/ + +html, +:host { + line-height: 1.5; + /* 1 */ + -webkit-text-size-adjust: 100%; + /* 2 */ + -moz-tab-size: 4; + /* 3 */ + -o-tab-size: 4; + tab-size: 4; + /* 3 */ + font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + /* 4 */ + font-feature-settings: normal; + /* 5 */ + font-variation-settings: normal; + /* 6 */ + -webkit-tap-highlight-color: transparent; + /* 7 */ +} + +/* +1. Remove the margin in all browsers. +2. Inherit line-height from `html` so users can set them as a class directly on the `html` element. +*/ + +body { + margin: 0; + /* 1 */ + line-height: inherit; + /* 2 */ +} + +/* +1. Add the correct height in Firefox. +2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655) +3. Ensure horizontal rules are visible by default. +*/ + +hr { + height: 0; + /* 1 */ + color: inherit; + /* 2 */ + border-top-width: 1px; + /* 3 */ +} + +/* +Add the correct text decoration in Chrome, Edge, and Safari. +*/ + +abbr:where([title]) { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; +} + +/* +Remove the default font size and weight for headings. +*/ + +h1, +h2, +h3, +h4, +h5, +h6 { + font-size: inherit; + font-weight: inherit; +} + +/* +Reset links to optimize for opt-in styling instead of opt-out. +*/ + +a { + color: inherit; + text-decoration: inherit; +} + +/* +Add the correct font weight in Edge and Safari. +*/ + +b, +strong { + font-weight: bolder; +} + +/* +1. Use the user's configured `mono` font-family by default. +2. Use the user's configured `mono` font-feature-settings by default. +3. Use the user's configured `mono` font-variation-settings by default. +4. Correct the odd `em` font sizing in all browsers. +*/ + +code, +kbd, +samp, +pre { + font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + /* 1 */ + font-feature-settings: normal; + /* 2 */ + font-variation-settings: normal; + /* 3 */ + font-size: 1em; + /* 4 */ +} + +/* +Add the correct font size in all browsers. +*/ + +small { + font-size: 80%; +} + +/* +Prevent `sub` and `sup` elements from affecting the line height in all browsers. +*/ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* +1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297) +2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016) +3. Remove gaps between table borders by default. +*/ + +table { + text-indent: 0; + /* 1 */ + border-color: inherit; + /* 2 */ + border-collapse: collapse; + /* 3 */ +} + +/* +1. Change the font styles in all browsers. +2. Remove the margin in Firefox and Safari. +3. Remove default padding in all browsers. +*/ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; + /* 1 */ + font-feature-settings: inherit; + /* 1 */ + font-variation-settings: inherit; + /* 1 */ + font-size: 100%; + /* 1 */ + font-weight: inherit; + /* 1 */ + line-height: inherit; + /* 1 */ + letter-spacing: inherit; + /* 1 */ + color: inherit; + /* 1 */ + margin: 0; + /* 2 */ + padding: 0; + /* 3 */ +} + +/* +Remove the inheritance of text transform in Edge and Firefox. +*/ + +button, +select { + text-transform: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Remove default button styles. +*/ + +button, +input:where([type='button']), +input:where([type='reset']), +input:where([type='submit']) { + -webkit-appearance: button; + /* 1 */ + background-color: transparent; + /* 2 */ + background-image: none; + /* 2 */ +} + +/* +Use the modern Firefox focus style for all focusable elements. +*/ + +:-moz-focusring { + outline: auto; +} + +/* +Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737) +*/ + +:-moz-ui-invalid { + box-shadow: none; +} + +/* +Add the correct vertical alignment in Chrome and Firefox. +*/ + +progress { + vertical-align: baseline; +} + +/* +Correct the cursor style of increment and decrement buttons in Safari. +*/ + +::-webkit-inner-spin-button, +::-webkit-outer-spin-button { + height: auto; +} + +/* +1. Correct the odd appearance in Chrome and Safari. +2. Correct the outline style in Safari. +*/ + +[type='search'] { + -webkit-appearance: textfield; + /* 1 */ + outline-offset: -2px; + /* 2 */ +} + +/* +Remove the inner padding in Chrome and Safari on macOS. +*/ + +::-webkit-search-decoration { + -webkit-appearance: none; +} + +/* +1. Correct the inability to style clickable types in iOS and Safari. +2. Change font properties to `inherit` in Safari. +*/ + +::-webkit-file-upload-button { + -webkit-appearance: button; + /* 1 */ + font: inherit; + /* 2 */ +} + +/* +Add the correct display in Chrome and Safari. +*/ + +summary { + display: list-item; +} + +/* +Removes the default spacing and border for appropriate elements. +*/ + +blockquote, +dl, +dd, +h1, +h2, +h3, +h4, +h5, +h6, +hr, +figure, +p, +pre { + margin: 0; +} + +fieldset { + margin: 0; + padding: 0; +} + +legend { + padding: 0; +} + +ol, +ul, +menu { + list-style: none; + margin: 0; + padding: 0; +} + +/* +Reset default styling for dialogs. +*/ + +dialog { + padding: 0; +} + +/* +Prevent resizing textareas horizontally by default. +*/ + +textarea { + resize: vertical; +} + +/* +1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300) +2. Set the default placeholder color to the user's configured gray 400 color. +*/ + +input::-moz-placeholder, textarea::-moz-placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +input::placeholder, +textarea::placeholder { + opacity: 1; + /* 1 */ + color: #9ca3af; + /* 2 */ +} + +/* +Set the default cursor for buttons. +*/ + +button, +[role="button"] { + cursor: pointer; +} + +/* +Make sure disabled buttons don't get the pointer cursor. +*/ + +:disabled { + cursor: default; +} + +/* +1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14) +2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210) + This can trigger a poorly considered lint error in some tools but is included by design. +*/ + +img, +svg, +video, +canvas, +audio, +iframe, +embed, +object { + display: block; + /* 1 */ + vertical-align: middle; + /* 2 */ +} + +/* +Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14) +*/ + +img, +video { + max-width: 100%; + height: auto; +} + +/* Make elements with the HTML hidden attribute stay hidden by default */ + +[hidden] { + display: none; +} + +*, ::before, ::after { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} + +::backdrop { + --tw-border-spacing-x: 0; + --tw-border-spacing-y: 0; + --tw-translate-x: 0; + --tw-translate-y: 0; + --tw-rotate: 0; + --tw-skew-x: 0; + --tw-skew-y: 0; + --tw-scale-x: 1; + --tw-scale-y: 1; + --tw-pan-x: ; + --tw-pan-y: ; + --tw-pinch-zoom: ; + --tw-scroll-snap-strictness: proximity; + --tw-gradient-from-position: ; + --tw-gradient-via-position: ; + --tw-gradient-to-position: ; + --tw-ordinal: ; + --tw-slashed-zero: ; + --tw-numeric-figure: ; + --tw-numeric-spacing: ; + --tw-numeric-fraction: ; + --tw-ring-inset: ; + --tw-ring-offset-width: 0px; + --tw-ring-offset-color: #fff; + --tw-ring-color: rgb(59 130 246 / 0.5); + --tw-ring-offset-shadow: 0 0 #0000; + --tw-ring-shadow: 0 0 #0000; + --tw-shadow: 0 0 #0000; + --tw-shadow-colored: 0 0 #0000; + --tw-blur: ; + --tw-brightness: ; + --tw-contrast: ; + --tw-grayscale: ; + --tw-hue-rotate: ; + --tw-invert: ; + --tw-saturate: ; + --tw-sepia: ; + --tw-drop-shadow: ; + --tw-backdrop-blur: ; + --tw-backdrop-brightness: ; + --tw-backdrop-contrast: ; + --tw-backdrop-grayscale: ; + --tw-backdrop-hue-rotate: ; + --tw-backdrop-invert: ; + --tw-backdrop-opacity: ; + --tw-backdrop-saturate: ; + --tw-backdrop-sepia: ; + --tw-contain-size: ; + --tw-contain-layout: ; + --tw-contain-paint: ; + --tw-contain-style: ; +} + +.prose { + color: var(--tw-prose-body); + max-width: 65ch; +} + +.prose :where(p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where([class~="lead"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-lead); + font-size: 1.25em; + line-height: 1.6; + margin-top: 1.2em; + margin-bottom: 1.2em; +} + +.prose :where(a):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-links); + text-decoration: underline; + font-weight: 500; +} + +.prose :where(strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-bold); + font-weight: 600; +} + +.prose :where(a strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-inline-start: 1.625em; +} + +.prose :where(ol[type="A"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="A" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-alpha; +} + +.prose :where(ol[type="a" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-alpha; +} + +.prose :where(ol[type="I"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="I" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: upper-roman; +} + +.prose :where(ol[type="i" s]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: lower-roman; +} + +.prose :where(ol[type="1"]):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: decimal; +} + +.prose :where(ul):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + list-style-type: disc; + margin-top: 1.25em; + margin-bottom: 1.25em; + padding-inline-start: 1.625em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + font-weight: 400; + color: var(--tw-prose-counters); +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *))::marker { + color: var(--tw-prose-bullets); +} + +.prose :where(dt):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.25em; +} + +.prose :where(hr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-color: var(--tw-prose-hr); + border-top-width: 1px; + margin-top: 3em; + margin-bottom: 3em; +} + +.prose :where(blockquote):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-style: italic; + color: var(--tw-prose-quotes); + border-inline-start-width: 0.25rem; + border-inline-start-color: var(--tw-prose-quote-borders); + quotes: "\201C""\201D""\2018""\2019"; + margin-top: 1.6em; + margin-bottom: 1.6em; + padding-inline-start: 1em; +} + +.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: open-quote; +} + +.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: close-quote; +} + +.prose :where(h1):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 800; + font-size: 2.25em; + margin-top: 0; + margin-bottom: 0.8888889em; + line-height: 1.1111111; +} + +.prose :where(h1 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 900; + color: inherit; +} + +.prose :where(h2):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 700; + font-size: 1.5em; + margin-top: 2em; + margin-bottom: 1em; + line-height: 1.3333333; +} + +.prose :where(h2 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 800; + color: inherit; +} + +.prose :where(h3):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + font-size: 1.25em; + margin-top: 1.6em; + margin-bottom: 0.6em; + line-height: 1.6; +} + +.prose :where(h3 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(h4):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + margin-top: 1.5em; + margin-bottom: 0.5em; + line-height: 1.5; +} + +.prose :where(h4 strong):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 700; + color: inherit; +} + +.prose :where(img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(picture):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + display: block; + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(video):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(kbd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + font-weight: 500; + font-family: inherit; + color: var(--tw-prose-kbd); + box-shadow: 0 0 0 1px rgb(var(--tw-prose-kbd-shadows) / 10%), 0 3px 0 rgb(var(--tw-prose-kbd-shadows) / 10%); + font-size: 0.875em; + border-radius: 0.3125rem; + padding-top: 0.1875em; + padding-inline-end: 0.375em; + padding-bottom: 0.1875em; + padding-inline-start: 0.375em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-code); + font-weight: 600; + font-size: 0.875em; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: "`"; +} + +.prose :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: "`"; +} + +.prose :where(a code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h1 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(h2 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.875em; +} + +.prose :where(h3 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; + font-size: 0.9em; +} + +.prose :where(h4 code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(blockquote code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(thead th code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: inherit; +} + +.prose :where(pre):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-pre-code); + background-color: var(--tw-prose-pre-bg); + overflow-x: auto; + font-weight: 400; + font-size: 0.875em; + line-height: 1.7142857; + margin-top: 1.7142857em; + margin-bottom: 1.7142857em; + border-radius: 0.375rem; + padding-top: 0.8571429em; + padding-inline-end: 1.1428571em; + padding-bottom: 0.8571429em; + padding-inline-start: 1.1428571em; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + background-color: transparent; + border-width: 0; + border-radius: 0; + padding: 0; + font-weight: inherit; + color: inherit; + font-size: inherit; + font-family: inherit; + line-height: inherit; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: none; +} + +.prose :where(pre code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: none; +} + +.prose :where(table):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + width: 100%; + table-layout: auto; + margin-top: 2em; + margin-bottom: 2em; + font-size: 0.875em; + line-height: 1.7142857; +} + +.prose :where(thead):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-th-borders); +} + +.prose :where(thead th):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-headings); + font-weight: 600; + vertical-align: bottom; + padding-inline-end: 0.5714286em; + padding-bottom: 0.5714286em; + padding-inline-start: 0.5714286em; +} + +.prose :where(tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 1px; + border-bottom-color: var(--tw-prose-td-borders); +} + +.prose :where(tbody tr:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-bottom-width: 0; +} + +.prose :where(tbody td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: baseline; +} + +.prose :where(tfoot):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-top-width: 1px; + border-top-color: var(--tw-prose-th-borders); +} + +.prose :where(tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + vertical-align: top; +} + +.prose :where(th, td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + text-align: start; +} + +.prose :where(figure > *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(figcaption):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + color: var(--tw-prose-captions); + font-size: 0.875em; + line-height: 1.4285714; + margin-top: 0.8571429em; +} + +.prose { + --tw-prose-body: #374151; + --tw-prose-headings: #111827; + --tw-prose-lead: #4b5563; + --tw-prose-links: #111827; + --tw-prose-bold: #111827; + --tw-prose-counters: #6b7280; + --tw-prose-bullets: #d1d5db; + --tw-prose-hr: #e5e7eb; + --tw-prose-quotes: #111827; + --tw-prose-quote-borders: #e5e7eb; + --tw-prose-captions: #6b7280; + --tw-prose-kbd: #111827; + --tw-prose-kbd-shadows: 17 24 39; + --tw-prose-code: #111827; + --tw-prose-pre-code: #e5e7eb; + --tw-prose-pre-bg: #1f2937; + --tw-prose-th-borders: #d1d5db; + --tw-prose-td-borders: #e5e7eb; + --tw-prose-invert-body: #d1d5db; + --tw-prose-invert-headings: #fff; + --tw-prose-invert-lead: #9ca3af; + --tw-prose-invert-links: #fff; + --tw-prose-invert-bold: #fff; + --tw-prose-invert-counters: #9ca3af; + --tw-prose-invert-bullets: #4b5563; + --tw-prose-invert-hr: #374151; + --tw-prose-invert-quotes: #f3f4f6; + --tw-prose-invert-quote-borders: #374151; + --tw-prose-invert-captions: #9ca3af; + --tw-prose-invert-kbd: #fff; + --tw-prose-invert-kbd-shadows: 255 255 255; + --tw-prose-invert-code: #fff; + --tw-prose-invert-pre-code: #d1d5db; + --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); + --tw-prose-invert-th-borders: #4b5563; + --tw-prose-invert-td-borders: #374151; + font-size: 1rem; + line-height: 1.75; +} + +.prose :where(picture > img):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; + margin-bottom: 0; +} + +.prose :where(li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + margin-bottom: 0.5em; +} + +.prose :where(ol > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-start: 0.375em; +} + +.prose :where(ul > li):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-start: 0.375em; +} + +.prose :where(.prose > ul > li p):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(.prose > ul > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ul > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(.prose > ol > li > p:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; +} + +.prose :where(.prose > ol > li > p:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 1.25em; +} + +.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.75em; + margin-bottom: 0.75em; +} + +.prose :where(dl):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 1.25em; + margin-bottom: 1.25em; +} + +.prose :where(dd):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0.5em; + padding-inline-start: 1.625em; +} + +.prose :where(hr + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h2 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h3 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(h4 + *):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(thead th:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-start: 0; +} + +.prose :where(thead th:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-end: 0; +} + +.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-top: 0.5714286em; + padding-inline-end: 0.5714286em; + padding-bottom: 0.5714286em; + padding-inline-start: 0.5714286em; +} + +.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-start: 0; +} + +.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + padding-inline-end: 0; +} + +.prose :where(figure):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 2em; + margin-bottom: 2em; +} + +.prose :where(.prose > :first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose :where(.prose > :last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-slate { + --tw-prose-body: #334155; + --tw-prose-headings: #0f172a; + --tw-prose-lead: #475569; + --tw-prose-links: #0f172a; + --tw-prose-bold: #0f172a; + --tw-prose-counters: #64748b; + --tw-prose-bullets: #cbd5e1; + --tw-prose-hr: #e2e8f0; + --tw-prose-quotes: #0f172a; + --tw-prose-quote-borders: #e2e8f0; + --tw-prose-captions: #64748b; + --tw-prose-kbd: #0f172a; + --tw-prose-kbd-shadows: 15 23 42; + --tw-prose-code: #0f172a; + --tw-prose-pre-code: #e2e8f0; + --tw-prose-pre-bg: #1e293b; + --tw-prose-th-borders: #cbd5e1; + --tw-prose-td-borders: #e2e8f0; + --tw-prose-invert-body: #cbd5e1; + --tw-prose-invert-headings: #fff; + --tw-prose-invert-lead: #94a3b8; + --tw-prose-invert-links: #fff; + --tw-prose-invert-bold: #fff; + --tw-prose-invert-counters: #94a3b8; + --tw-prose-invert-bullets: #475569; + --tw-prose-invert-hr: #334155; + --tw-prose-invert-quotes: #f1f5f9; + --tw-prose-invert-quote-borders: #334155; + --tw-prose-invert-captions: #94a3b8; + --tw-prose-invert-kbd: #fff; + --tw-prose-invert-kbd-shadows: 255 255 255; + --tw-prose-invert-code: #fff; + --tw-prose-invert-pre-code: #cbd5e1; + --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%); + --tw-prose-invert-th-borders: #475569; + --tw-prose-invert-td-borders: #334155; +} + +.prose-quoteless :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: none; +} + +.prose-quoteless :where(blockquote p:first-of-type):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: none; +} + +.prose-quoteless :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::before { + content: none; +} + +.prose-quoteless :where(code):not(:where([class~="not-prose"],[class~="not-prose"] *))::after { + content: none; +} + +.prose-quoteless :where(.prose-quoteless > ul > li > input:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-quoteless :where(.prose-quoteless > ul > li > input:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-quoteless :where(.prose-quoteless > ol > li > input:first-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-top: 0; +} + +.prose-quoteless :where(.prose-quoteless > ol > li > input:last-child):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + margin-bottom: 0; +} + +.prose-quoteless :where(.gist .highlight tbody tr):not(:where([class~="not-prose"],[class~="not-prose"] *)) { + border-width: 0; +} + +.sr-only { + position: absolute; + width: 1px; + height: 1px; + padding: 0; + margin: -1px; + overflow: hidden; + clip: rect(0, 0, 0, 0); + white-space: nowrap; + border-width: 0; +} + +.invisible { + visibility: hidden; +} + +.static { + position: static; +} + +.fixed { + position: fixed; +} + +.absolute { + position: absolute; +} + +.relative { + position: relative; +} + +.sticky { + position: sticky; +} + +.left-0 { + left: 0px; +} + +.right-0 { + right: 0px; +} + +.right-1 { + right: 0.25rem; +} + +.top-0 { + top: 0px; +} + +.top-1 { + top: 0.25rem; +} + +.top-10 { + top: 2.5rem; +} + +.top-16 { + top: 4rem; +} + +.z-10 { + z-index: 10; +} + +.z-50 { + z-index: 50; +} + +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +.mx-2 { + margin-left: 0.5rem; + margin-right: 0.5rem; +} + +.my-4 { + margin-top: 1rem; + margin-bottom: 1rem; +} + +.ml-0 { + margin-left: 0px; +} + +.ml-1 { + margin-left: 0.25rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-3 { + margin-left: 0.75rem; +} + +.mr-1 { + margin-right: 0.25rem; +} + +.mr-2 { + margin-right: 0.5rem; +} + +.mt-10 { + margin-top: 2.5rem; +} + +.mt-2 { + margin-top: 0.5rem; +} + +.mt-3 { + margin-top: 0.75rem; +} + +.mt-4 { + margin-top: 1rem; +} + +.mt-6 { + margin-top: 1.5rem; +} + +.block { + display: block; +} + +.flex { + display: flex; +} + +.inline-flex { + display: inline-flex; +} + +.grid { + display: grid; +} + +.hidden { + display: none; +} + +.aspect-video { + aspect-ratio: 16 / 9; +} + +.h-12 { + height: 3rem; +} + +.h-36 { + height: 9rem; +} + +.h-5 { + height: 1.25rem; +} + +.h-6 { + height: 1.5rem; +} + +.h-8 { + height: 2rem; +} + +.h-auto { + height: auto; +} + +.h-full { + height: 100%; +} + +.min-h-full { + min-height: 100%; +} + +.min-h-screen { + min-height: 100vh; +} + +.w-12 { + width: 3rem; +} + +.w-5 { + width: 1.25rem; +} + +.w-6 { + width: 1.5rem; +} + +.w-8 { + width: 2rem; +} + +.w-full { + width: 100%; +} + +.min-w-0 { + min-width: 0px; +} + +.max-w-4xl { + max-width: 56rem; +} + +.max-w-full { + max-width: 100%; +} + +.flex-1 { + flex: 1 1 0%; +} + +.flex-auto { + flex: 1 1 auto; +} + +.flex-none { + flex: none; +} + +.grow { + flex-grow: 1; +} + +.cursor-default { + cursor: default; +} + +.cursor-pointer { + cursor: pointer; +} + +.flex-row { + flex-direction: row; +} + +.flex-col { + flex-direction: column; +} + +.flex-wrap { + flex-wrap: wrap; +} + +.place-items-start { + place-items: start; +} + +.items-center { + align-items: center; +} + +.justify-center { + justify-content: center; +} + +.justify-between { + justify-content: space-between; +} + +.gap-1 { + gap: 0.25rem; +} + +.gap-2 { + gap: 0.5rem; +} + +.gap-3 { + gap: 0.75rem; +} + +.gap-x-1 { + -moz-column-gap: 0.25rem; + column-gap: 0.25rem; +} + +.gap-x-6 { + -moz-column-gap: 1.5rem; + column-gap: 1.5rem; +} + +.gap-y-1 { + row-gap: 0.25rem; +} + +.gap-y-3 { + row-gap: 0.75rem; +} + +.place-self-center { + place-self: center; +} + +.self-start { + align-self: flex-start; +} + +.self-center { + align-self: center; +} + +.overflow-hidden { + overflow: hidden; +} + +.rounded { + border-radius: 0.25rem; +} + +.rounded-full { + border-radius: 9999px; +} + +.rounded-lg { + border-radius: 0.5rem; +} + +.rounded-md { + border-radius: 0.375rem; +} + +.rounded-none { + border-radius: 0px; +} + +.rounded-sm { + border-radius: 0.125rem; +} + +.rounded-e-lg { + border-start-end-radius: 0.5rem; + border-end-end-radius: 0.5rem; +} + +.rounded-s-lg { + border-start-start-radius: 0.5rem; + border-end-start-radius: 0.5rem; +} + +.border { + border-width: 1px; +} + +.border-e-0 { + border-inline-end-width: 0px; +} + +.border-l-0 { + border-left-width: 0px; +} + +.border-emerald-800 { + --tw-border-opacity: 1; + border-color: rgb(6 95 70 / var(--tw-border-opacity)); +} + +.border-gray-300 { + --tw-border-opacity: 1; + border-color: rgb(209 213 219 / var(--tw-border-opacity)); +} + +.border-slate-300 { + --tw-border-opacity: 1; + border-color: rgb(203 213 225 / var(--tw-border-opacity)); +} + +.bg-emerald-800 { + --tw-bg-opacity: 1; + background-color: rgb(6 95 70 / var(--tw-bg-opacity)); +} + +.bg-gray-100 { + --tw-bg-opacity: 1; + background-color: rgb(243 244 246 / var(--tw-bg-opacity)); +} + +.bg-gray-200 { + --tw-bg-opacity: 1; + background-color: rgb(229 231 235 / var(--tw-bg-opacity)); +} + +.bg-indigo-600 { + --tw-bg-opacity: 1; + background-color: rgb(79 70 229 / var(--tw-bg-opacity)); +} + +.bg-red-400 { + --tw-bg-opacity: 1; + background-color: rgb(248 113 113 / var(--tw-bg-opacity)); +} + +.bg-slate-200 { + --tw-bg-opacity: 1; + background-color: rgb(226 232 240 / var(--tw-bg-opacity)); +} + +.bg-slate-50 { + --tw-bg-opacity: 1; + background-color: rgb(248 250 252 / var(--tw-bg-opacity)); +} + +.bg-white { + --tw-bg-opacity: 1; + background-color: rgb(255 255 255 / var(--tw-bg-opacity)); +} + +.bg-yellow-400 { + --tw-bg-opacity: 1; + background-color: rgb(250 204 21 / var(--tw-bg-opacity)); +} + +.object-cover { + -o-object-fit: cover; + object-fit: cover; +} + +.p-2 { + padding: 0.5rem; +} + +.p-3 { + padding: 0.75rem; +} + +.p-6 { + padding: 1.5rem; +} + +.px-1 { + padding-left: 0.25rem; + padding-right: 0.25rem; +} + +.px-2 { + padding-left: 0.5rem; + padding-right: 0.5rem; +} + +.px-3 { + padding-left: 0.75rem; + padding-right: 0.75rem; +} + +.px-3\.5 { + padding-left: 0.875rem; + padding-right: 0.875rem; +} + +.px-6 { + padding-left: 1.5rem; + padding-right: 1.5rem; +} + +.py-1 { + padding-top: 0.25rem; + padding-bottom: 0.25rem; +} + +.py-2\.5 { + padding-top: 0.625rem; + padding-bottom: 0.625rem; +} + +.py-24 { + padding-top: 6rem; + padding-bottom: 6rem; +} + +.py-3 { + padding-top: 0.75rem; + padding-bottom: 0.75rem; +} + +.py-6 { + padding-top: 1.5rem; + padding-bottom: 1.5rem; +} + +.pl-0 { + padding-left: 0px; +} + +.pl-1 { + padding-left: 0.25rem; +} + +.pl-3 { + padding-left: 0.75rem; +} + +.pl-6 { + padding-left: 1.5rem; +} + +.pr-3 { + padding-right: 0.75rem; +} + +.text-center { + text-align: center; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-4xl { + font-size: 2.25rem; + line-height: 2.5rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + +.text-lg { + font-size: 1.125rem; + line-height: 1.75rem; +} + +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-xs { + font-size: 0.75rem; + line-height: 1rem; +} + +.font-bold { + font-weight: 700; +} + +.font-medium { + font-weight: 500; +} + +.font-semibold { + font-weight: 600; +} + +.uppercase { + text-transform: uppercase; +} + +.leading-7 { + line-height: 1.75rem; +} + +.tracking-tight { + letter-spacing: -0.025em; +} + +.text-black { + --tw-text-opacity: 1; + color: rgb(0 0 0 / var(--tw-text-opacity)); +} + +.text-emerald-600 { + --tw-text-opacity: 1; + color: rgb(5 150 105 / var(--tw-text-opacity)); +} + +.text-indigo-600 { + --tw-text-opacity: 1; + color: rgb(79 70 229 / var(--tw-text-opacity)); +} + +.text-red-600 { + --tw-text-opacity: 1; + color: rgb(220 38 38 / var(--tw-text-opacity)); +} + +.text-slate-50 { + --tw-text-opacity: 1; + color: rgb(248 250 252 / var(--tw-text-opacity)); +} + +.text-slate-500 { + --tw-text-opacity: 1; + color: rgb(100 116 139 / var(--tw-text-opacity)); +} + +.text-slate-600 { + --tw-text-opacity: 1; + color: rgb(71 85 105 / var(--tw-text-opacity)); +} + +.text-slate-700 { + --tw-text-opacity: 1; + color: rgb(51 65 85 / var(--tw-text-opacity)); +} + +.text-slate-800 { + --tw-text-opacity: 1; + color: rgb(30 41 59 / var(--tw-text-opacity)); +} + +.text-slate-900 { + --tw-text-opacity: 1; + color: rgb(15 23 42 / var(--tw-text-opacity)); +} + +.text-white { + --tw-text-opacity: 1; + color: rgb(255 255 255 / var(--tw-text-opacity)); +} + +.underline { + text-decoration-line: underline; +} + +.shadow-lg { + --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-md { + --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); + --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-sm { + --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); + --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color); + box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); +} + +.shadow-slate-800\/5 { + --tw-shadow-color: rgb(30 41 59 / 0.05); + --tw-shadow: var(--tw-shadow-colored); +} + +.ring-1 { + --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); + --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color); + box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); +} + +.ring-slate-900\/5 { + --tw-ring-color: rgb(15 23 42 / 0.05); +} + +.filter { + filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow); +} + +.backdrop-blur { + --tw-backdrop-blur: blur(8px); + -webkit-backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); + backdrop-filter: var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia); +} + +/* generated by `hugo gen chromastyles --style=solarized-light` */ + +/* Background */ + +.bg { + color: #586e75; + background-color: #eee8d5; +} + +/* PreWrapper */ + +.chroma { + color: #586e75; + background-color: #eee8d5; +} + +/* Other */ + +.chroma .x { +} + +/* Error */ + +.chroma .err { +} + +/* CodeLine */ + +.chroma .cl { +} + +/* LineLink */ + +.chroma .lnlinks { + outline: none; + text-decoration: none; + color: inherit +} + +/* LineTableTD */ + +.chroma .lntd { + vertical-align: top; + padding: 0; + margin: 0; + border: 0; +} + +/* LineTable */ + +.chroma .lntable { + border-spacing: 0; + padding: 0; + margin: 0; + border: 0; +} + +/* LineHighlight */ + +.chroma .hl { + background-color: #d6d0bf +} + +/* LineNumbersTable */ + +.chroma .lnt { + white-space: pre; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + margin-right: 0.4em; + padding: 0 0.4em 0 0.4em; + color: #7f7f7f +} + +/* LineNumbers */ + +.chroma .ln { + white-space: pre; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + margin-right: 0.4em; + padding: 0 0.4em 0 0.4em; + color: #7f7f7f +} + +/* Line */ + +.chroma .line { + display: flex; +} + +/* Keyword */ + +.chroma .k { + color: #859900 +} + +/* KeywordConstant */ + +.chroma .kc { + color: #859900; + font-weight: bold +} + +/* KeywordDeclaration */ + +.chroma .kd { + color: #859900 +} + +/* KeywordNamespace */ + +.chroma .kn { + color: #dc322f; + font-weight: bold +} + +/* KeywordPseudo */ + +.chroma .kp { + color: #859900 +} + +/* KeywordReserved */ + +.chroma .kr { + color: #859900 +} + +/* KeywordType */ + +.chroma .kt { + color: #859900; + font-weight: bold +} + +/* Name */ + +.chroma .n { + color: #268bd2 +} + +/* NameAttribute */ + +.chroma .na { + color: #268bd2 +} + +/* NameBuiltin */ + +.chroma .nb { + color: #cb4b16 +} + +/* NameBuiltinPseudo */ + +.chroma .bp { + color: #268bd2 +} + +/* NameClass */ + +.chroma .nc { + color: #cb4b16 +} + +/* NameConstant */ + +.chroma .no { + color: #268bd2 +} + +/* NameDecorator */ + +.chroma .nd { + color: #268bd2 +} + +/* NameEntity */ + +.chroma .ni { + color: #268bd2 +} + +/* NameException */ + +.chroma .ne { + color: #268bd2 +} + +/* NameFunction */ + +.chroma .nf { + color: #268bd2 +} + +/* NameFunctionMagic */ + +.chroma .fm { + color: #268bd2 +} + +/* NameLabel */ + +.chroma .nl { + color: #268bd2 +} + +/* NameNamespace */ + +.chroma .nn { + color: #268bd2 +} + +/* NameOther */ + +.chroma .nx { + color: #268bd2 +} + +/* NameProperty */ + +.chroma .py { + color: #268bd2 +} + +/* NameTag */ + +.chroma .nt { + color: #268bd2; + font-weight: bold +} + +/* NameVariable */ + +.chroma .nv { + color: #268bd2 +} + +/* NameVariableClass */ + +.chroma .vc { + color: #268bd2 +} + +/* NameVariableGlobal */ + +.chroma .vg { + color: #268bd2 +} + +/* NameVariableInstance */ + +.chroma .vi { + color: #268bd2 +} + +/* NameVariableMagic */ + +.chroma .vm { + color: #268bd2 +} + +/* Literal */ + +.chroma .l { + color: #2aa198 +} + +/* LiteralDate */ + +.chroma .ld { + color: #2aa198 +} + +/* LiteralString */ + +.chroma .s { + color: #2aa198 +} + +/* LiteralStringAffix */ + +.chroma .sa { + color: #2aa198 +} + +/* LiteralStringBacktick */ + +.chroma .sb { + color: #2aa198 +} + +/* LiteralStringChar */ + +.chroma .sc { + color: #2aa198 +} + +/* LiteralStringDelimiter */ + +.chroma .dl { + color: #2aa198 +} + +/* LiteralStringDoc */ + +.chroma .sd { + color: #2aa198 +} + +/* LiteralStringDouble */ + +.chroma .s2 { + color: #2aa198 +} + +/* LiteralStringEscape */ + +.chroma .se { + color: #2aa198 +} + +/* LiteralStringHeredoc */ + +.chroma .sh { + color: #2aa198 +} + +/* LiteralStringInterpol */ + +.chroma .si { + color: #2aa198 +} + +/* LiteralStringOther */ + +.chroma .sx { + color: #2aa198 +} + +/* LiteralStringRegex */ + +.chroma .sr { + color: #2aa198 +} + +/* LiteralStringSingle */ + +.chroma .s1 { + color: #2aa198 +} + +/* LiteralStringSymbol */ + +.chroma .ss { + color: #2aa198 +} + +/* LiteralNumber */ + +.chroma .m { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberBin */ + +.chroma .mb { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberFloat */ + +.chroma .mf { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberHex */ + +.chroma .mh { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberInteger */ + +.chroma .mi { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberIntegerLong */ + +.chroma .il { + color: #2aa198; + font-weight: bold +} + +/* LiteralNumberOct */ + +.chroma .mo { + color: #2aa198; + font-weight: bold +} + +/* Operator */ + +.chroma .o { +} + +/* OperatorWord */ + +.chroma .ow { + color: #859900 +} + +/* Punctuation */ + +.chroma .p { +} + +/* Comment */ + +.chroma .c { + color: #93a1a1; + font-style: italic +} + +/* CommentHashbang */ + +.chroma .ch { + color: #93a1a1; + font-style: italic +} + +/* CommentMultiline */ + +.chroma .cm { + color: #93a1a1; + font-style: italic +} + +/* CommentSingle */ + +.chroma .c1 { + color: #93a1a1; + font-style: italic +} + +/* CommentSpecial */ + +.chroma .cs { + color: #93a1a1; + font-style: italic +} + +/* CommentPreproc */ + +.chroma .cp { + color: #93a1a1; + font-style: italic +} + +/* CommentPreprocFile */ + +.chroma .cpf { + color: #93a1a1; + font-style: italic +} + +/* Generic */ + +.chroma .g { + color: #d33682 +} + +/* GenericDeleted */ + +.chroma .gd { + color: #d33682 +} + +/* GenericEmph */ + +.chroma .ge { + color: #d33682 +} + +/* GenericError */ + +.chroma .gr { + color: #d33682 +} + +/* GenericHeading */ + +.chroma .gh { + color: #d33682 +} + +/* GenericInserted */ + +.chroma .gi { + color: #d33682 +} + +/* GenericOutput */ + +.chroma .go { + color: #d33682 +} + +/* GenericPrompt */ + +.chroma .gp { + color: #d33682 +} + +/* GenericStrong */ + +.chroma .gs { + color: #d33682 +} + +/* GenericSubheading */ + +.chroma .gu { + color: #d33682 +} + +/* GenericTraceback */ + +.chroma .gt { + color: #d33682 +} + +/* GenericUnderline */ + +.chroma .gl { + color: #d33682 +} + +/* TextWhitespace */ + +.chroma .w { +} + +/* generated by `hugo gen chromastyles --style=solarized-dark` with `.dark` scope */ + +.dark /* Background */ .bg { + color: #93a1a1; + background-color: #002b36; +} + +.dark /* PreWrapper */ .chroma { + color: #93a1a1; + background-color: #002b36; +} + +.dark /* Other */ .chroma .x { + color: #cb4b16 +} + +.dark /* Error */ .chroma .err { +} + +.dark /* CodeLine */ .chroma .cl { +} + +.dark /* LineLink */ .chroma .lnlinks { + outline: none; + text-decoration: none; + color: inherit +} + +.dark /* LineTableTD */ .chroma .lntd { + vertical-align: top; + padding: 0; + margin: 0; + border: 0; +} + +.dark /* LineTable */ .chroma .lntable { + border-spacing: 0; + padding: 0; + margin: 0; + border: 0; +} + +.dark /* LineHighlight */ .chroma .hl { + background-color: #19404a +} + +.dark /* LineNumbersTable */ .chroma .lnt { + white-space: pre; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + margin-right: 0.4em; + padding: 0 0.4em 0 0.4em; + color: #495050 +} + +.dark /* LineNumbers */ .chroma .ln { + white-space: pre; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + margin-right: 0.4em; + padding: 0 0.4em 0 0.4em; + color: #495050 +} + +.dark /* Line */ .chroma .line { + display: flex; +} + +.dark /* Keyword */ .chroma .k { + color: #719e07 +} + +.dark /* KeywordConstant */ .chroma .kc { + color: #cb4b16 +} + +.dark /* KeywordDeclaration */ .chroma .kd { + color: #268bd2 +} + +.dark /* KeywordNamespace */ .chroma .kn { + color: #719e07 +} + +.dark /* KeywordPseudo */ .chroma .kp { + color: #719e07 +} + +.dark /* KeywordReserved */ .chroma .kr { + color: #268bd2 +} + +.dark /* KeywordType */ .chroma .kt { + color: #dc322f +} + +.dark /* Name */ .chroma .n { +} + +.dark /* NameAttribute */ .chroma .na { +} + +.dark /* NameBuiltin */ .chroma .nb { + color: #b58900 +} + +.dark /* NameBuiltinPseudo */ .chroma .bp { + color: #268bd2 +} + +.dark /* NameClass */ .chroma .nc { + color: #268bd2 +} + +.dark /* NameConstant */ .chroma .no { + color: #cb4b16 +} + +.dark /* NameDecorator */ .chroma .nd { + color: #268bd2 +} + +.dark /* NameEntity */ .chroma .ni { + color: #cb4b16 +} + +.dark /* NameException */ .chroma .ne { + color: #cb4b16 +} + +.dark /* NameFunction */ .chroma .nf { + color: #268bd2 +} + +.dark /* NameFunctionMagic */ .chroma .fm { +} + +.dark /* NameLabel */ .chroma .nl { +} + +.dark /* NameNamespace */ .chroma .nn { +} + +.dark /* NameOther */ .chroma .nx { +} + +.dark /* NameProperty */ .chroma .py { +} + +.dark /* NameTag */ .chroma .nt { + color: #268bd2 +} + +.dark /* NameVariable */ .chroma .nv { + color: #268bd2 +} + +.dark /* NameVariableClass */ .chroma .vc { +} + +.dark /* NameVariableGlobal */ .chroma .vg { +} + +.dark /* NameVariableInstance */ .chroma .vi { +} + +.dark /* NameVariableMagic */ .chroma .vm { +} + +.dark /* Literal */ .chroma .l { +} + +.dark /* LiteralDate */ .chroma .ld { +} + +.dark /* LiteralString */ .chroma .s { + color: #2aa198 +} + +.dark /* LiteralStringAffix */ .chroma .sa { + color: #2aa198 +} + +.dark /* LiteralStringBacktick */ .chroma .sb { + color: #586e75 +} + +.dark /* LiteralStringChar */ .chroma .sc { + color: #2aa198 +} + +.dark /* LiteralStringDelimiter */ .chroma .dl { + color: #2aa198 +} + +.dark /* LiteralStringDoc */ .chroma .sd { +} + +.dark /* LiteralStringDouble */ .chroma .s2 { + color: #2aa198 +} + +.dark /* LiteralStringEscape */ .chroma .se { + color: #cb4b16 +} + +.dark /* LiteralStringHeredoc */ .chroma .sh { +} + +.dark /* LiteralStringInterpol */ .chroma .si { + color: #2aa198 +} + +.dark /* LiteralStringOther */ .chroma .sx { + color: #2aa198 +} + +.dark /* LiteralStringRegex */ .chroma .sr { + color: #dc322f +} + +.dark /* LiteralStringSingle */ .chroma .s1 { + color: #2aa198 +} + +.dark /* LiteralStringSymbol */ .chroma .ss { + color: #2aa198 +} + +.dark /* LiteralNumber */ .chroma .m { + color: #2aa198 +} + +.dark /* LiteralNumberBin */ .chroma .mb { + color: #2aa198 +} + +.dark /* LiteralNumberFloat */ .chroma .mf { + color: #2aa198 +} + +.dark /* LiteralNumberHex */ .chroma .mh { + color: #2aa198 +} + +.dark /* LiteralNumberInteger */ .chroma .mi { + color: #2aa198 +} + +.dark /* LiteralNumberIntegerLong */ .chroma .il { + color: #2aa198 +} + +.dark /* LiteralNumberOct */ .chroma .mo { + color: #2aa198 +} + +.dark /* Operator */ .chroma .o { + color: #719e07 +} + +.dark /* OperatorWord */ .chroma .ow { + color: #719e07 +} + +.dark /* Punctuation */ .chroma .p { +} + +.dark /* Comment */ .chroma .c { + color: #586e75 +} + +.dark /* CommentHashbang */ .chroma .ch { + color: #586e75 +} + +.dark /* CommentMultiline */ .chroma .cm { + color: #586e75 +} + +.dark /* CommentSingle */ .chroma .c1 { + color: #586e75 +} + +.dark /* CommentSpecial */ .chroma .cs { + color: #719e07 +} + +.dark /* CommentPreproc */ .chroma .cp { + color: #719e07 +} + +.dark /* CommentPreprocFile */ .chroma .cpf { + color: #719e07 +} + +.dark /* Generic */ .chroma .g { +} + +.dark /* GenericDeleted */ .chroma .gd { + color: #dc322f +} + +.dark /* GenericEmph */ .chroma .ge { + font-style: italic +} + +.dark /* GenericError */ .chroma .gr { + color: #dc322f; + font-weight: bold +} + +.dark /* GenericHeading */ .chroma .gh { + color: #cb4b16 +} + +.dark /* GenericInserted */ .chroma .gi { + color: #719e07 +} + +.dark /* GenericOutput */ .chroma .go { +} + +.dark /* GenericPrompt */ .chroma .gp { +} + +.dark /* GenericStrong */ .chroma .gs { + font-weight: bold +} + +.dark /* GenericSubheading */ .chroma .gu { + color: #268bd2 +} + +.dark /* GenericTraceback */ .chroma .gt { +} + +.dark /* GenericUnderline */ .chroma .gl { +} + +.dark /* TextWhitespace */ .chroma .w { +} + +.highlight { + position: relative; +} + +.highlight .icon-tabler.icon-tabler-check { + stroke: rgb(74 222 128); + /* tailwindcss green-400 */ +} + +/* fix highlight with line number */ + +.highlight .chroma .lntable { + margin: 1.7142857em 0; + padding: 0.8571429em 1.1428571em; + border-radius: 0.375rem; + overflow: hidden; +} + +.highlight .chroma .lntable pre { + margin: 0; + padding: 0.8571429em 0; + border-radius: 0; +} + +/* https://caniuse.com/css-has */ + +.highlight .chroma:has(table) { + background-color: transparent; +} + +.highlight .lntable tr { + display: flex; +} + +.highlight .lntable tr .lntd:last-child { + flex-grow: 1; +} + +.dark\:prose-invert:is(.dark *) { + --tw-prose-body: var(--tw-prose-invert-body); + --tw-prose-headings: var(--tw-prose-invert-headings); + --tw-prose-lead: var(--tw-prose-invert-lead); + --tw-prose-links: var(--tw-prose-invert-links); + --tw-prose-bold: var(--tw-prose-invert-bold); + --tw-prose-counters: var(--tw-prose-invert-counters); + --tw-prose-bullets: var(--tw-prose-invert-bullets); + --tw-prose-hr: var(--tw-prose-invert-hr); + --tw-prose-quotes: var(--tw-prose-invert-quotes); + --tw-prose-quote-borders: var(--tw-prose-invert-quote-borders); + --tw-prose-captions: var(--tw-prose-invert-captions); + --tw-prose-kbd: var(--tw-prose-invert-kbd); + --tw-prose-kbd-shadows: var(--tw-prose-invert-kbd-shadows); + --tw-prose-code: var(--tw-prose-invert-code); + --tw-prose-pre-code: var(--tw-prose-invert-pre-code); + --tw-prose-pre-bg: var(--tw-prose-invert-pre-bg); + --tw-prose-th-borders: var(--tw-prose-invert-th-borders); + --tw-prose-td-borders: var(--tw-prose-invert-td-borders); +} + +.hover\:bg-indigo-500:hover { + --tw-bg-opacity: 1; + background-color: rgb(99 102 241 / var(--tw-bg-opacity)); +} + +.hover\:text-emerald-600:hover { + --tw-text-opacity: 1; + color: rgb(5 150 105 / var(--tw-text-opacity)); +} + +.focus\:border-blue-500:focus { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.focus\:outline-none:focus { + outline: 2px solid transparent; + outline-offset: 2px; +} + +.focus\:ring-blue-500:focus { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +.focus-visible\:outline:focus-visible { + outline-style: solid; +} + +.focus-visible\:outline-2:focus-visible { + outline-width: 2px; +} + +.focus-visible\:outline-offset-2:focus-visible { + outline-offset: 2px; +} + +.focus-visible\:outline-indigo-600:focus-visible { + outline-color: #4f46e5; +} + +.peer:checked ~ .group .peer-checked\:group-\[\]\:visible { + visibility: visible; +} + +.peer:checked ~ .group .peer-checked\:group-\[\]\:invisible { + visibility: hidden; +} + +.dark\:border-slate-400:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(148 163 184 / var(--tw-border-opacity)); +} + +.dark\:border-slate-600:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(71 85 105 / var(--tw-border-opacity)); +} + +.dark\:bg-gray-600:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(75 85 99 / var(--tw-bg-opacity)); +} + +.dark\:bg-gray-700:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(55 65 81 / var(--tw-bg-opacity)); +} + +.dark\:bg-gray-800:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(31 41 55 / var(--tw-bg-opacity)); +} + +.dark\:bg-slate-600:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(71 85 105 / var(--tw-bg-opacity)); +} + +.dark\:bg-slate-700:is(.dark *) { + --tw-bg-opacity: 1; + background-color: rgb(51 65 85 / var(--tw-bg-opacity)); +} + +.dark\:text-indigo-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(165 180 252 / var(--tw-text-opacity)); +} + +.dark\:text-slate-100:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(241 245 249 / var(--tw-text-opacity)); +} + +.dark\:text-slate-200:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(226 232 240 / var(--tw-text-opacity)); +} + +.dark\:text-slate-300:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(203 213 225 / var(--tw-text-opacity)); +} + +.dark\:text-slate-400:is(.dark *) { + --tw-text-opacity: 1; + color: rgb(148 163 184 / var(--tw-text-opacity)); +} + +.dark\:placeholder-slate-400:is(.dark *)::-moz-placeholder { + --tw-placeholder-opacity: 1; + color: rgb(148 163 184 / var(--tw-placeholder-opacity)); +} + +.dark\:placeholder-slate-400:is(.dark *)::placeholder { + --tw-placeholder-opacity: 1; + color: rgb(148 163 184 / var(--tw-placeholder-opacity)); +} + +.dark\:shadow-slate-200\/5:is(.dark *) { + --tw-shadow-color: rgb(226 232 240 / 0.05); + --tw-shadow: var(--tw-shadow-colored); +} + +.dark\:ring-slate-100\/5:is(.dark *) { + --tw-ring-color: rgb(241 245 249 / 0.05); +} + +.dark\:ring-slate-50\/5:is(.dark *) { + --tw-ring-color: rgb(248 250 252 / 0.05); +} + +.dark\:focus\:border-blue-500:focus:is(.dark *) { + --tw-border-opacity: 1; + border-color: rgb(59 130 246 / var(--tw-border-opacity)); +} + +.dark\:focus\:ring-blue-500:focus:is(.dark *) { + --tw-ring-opacity: 1; + --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity)); +} + +@media (min-width: 640px) { + .sm\:block { + display: block; + } + + .sm\:hidden { + display: none; + } + + .sm\:bg-red-200 { + --tw-bg-opacity: 1; + background-color: rgb(254 202 202 / var(--tw-bg-opacity)); + } + + .sm\:text-5xl { + font-size: 3rem; + line-height: 1; + } +} + +@media (min-width: 768px) { + .md\:static { + position: static; + } + + .md\:mx-0 { + margin-left: 0px; + margin-right: 0px; + } + + .md\:ml-0 { + margin-left: 0px; + } + + .md\:ml-2 { + margin-left: 0.5rem; + } + + .md\:mr-0 { + margin-right: 0px; + } + + .md\:block { + display: block; + } + + .md\:flex { + display: flex; + } + + .md\:hidden { + display: none; + } + + .md\:h-48 { + height: 12rem; + } + + .md\:w-1\/3 { + width: 33.333333%; + } + + .md\:w-2\/3 { + width: 66.666667%; + } + + .md\:w-auto { + width: auto; + } + + .md\:flex-row { + flex-direction: row; + } + + .md\:gap-0 { + gap: 0px; + } + + .md\:gap-x-4 { + -moz-column-gap: 1rem; + column-gap: 1rem; + } + + .md\:gap-y-0 { + row-gap: 0px; + } + + .md\:rounded-full { + border-radius: 9999px; + } + + .md\:border-0 { + border-width: 0px; + } + + .md\:border-l { + border-left-width: 1px; + } + + .md\:bg-yellow-200 { + --tw-bg-opacity: 1; + background-color: rgb(254 240 138 / var(--tw-bg-opacity)); + } + + .md\:pl-2 { + padding-left: 0.5rem; + } +} + +@media (min-width: 1024px) { + .lg\:block { + display: block; + } + + .lg\:hidden { + display: none; + } + + .lg\:max-w-5xl { + max-width: 64rem; + } + + .lg\:bg-green-200 { + --tw-bg-opacity: 1; + background-color: rgb(187 247 208 / var(--tw-bg-opacity)); + } +} + +@media (min-width: 1280px) { + .xl\:block { + display: block; + } + + .xl\:hidden { + display: none; + } + + .xl\:h-60 { + height: 15rem; + } + + .xl\:bg-blue-200 { + --tw-bg-opacity: 1; + background-color: rgb(191 219 254 / var(--tw-bg-opacity)); + } +} + +@media (min-width: 1536px) { + .\32xl\:block { + display: block; + } + + .\32xl\:hidden { + display: none; + } + + .\32xl\:bg-pink-200 { + --tw-bg-opacity: 1; + background-color: rgb(251 207 232 / var(--tw-bg-opacity)); + } +} diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..f933d98 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,230 @@ +.footnote-backref { + text-decoration: none !important; +} +.darkmode-toggle .icon-tabler.icon-tabler-brightness-down { + fill: white; + stroke: white; +} +.darkmode-toggle .icon-tabler.icon-tabler-moon-stars { + fill: white; + stroke: white; +} + +@tailwind base; +@tailwind components; +@tailwind utilities; + + +/* generated by `hugo gen chromastyles --style=solarized-light` */ + +/* Background */ .bg { color: #586e75; background-color: #eee8d5; } +/* PreWrapper */ .chroma { color: #586e75; background-color: #eee8d5; } +/* Other */ .chroma .x { } +/* Error */ .chroma .err { } +/* CodeLine */ .chroma .cl { } +/* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit } +/* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } +/* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; } +/* LineHighlight */ .chroma .hl { background-color: #d6d0bf } +/* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +/* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #7f7f7f } +/* Line */ .chroma .line { display: flex; } +/* Keyword */ .chroma .k { color: #859900 } +/* KeywordConstant */ .chroma .kc { color: #859900; font-weight: bold } +/* KeywordDeclaration */ .chroma .kd { color: #859900 } +/* KeywordNamespace */ .chroma .kn { color: #dc322f; font-weight: bold } +/* KeywordPseudo */ .chroma .kp { color: #859900 } +/* KeywordReserved */ .chroma .kr { color: #859900 } +/* KeywordType */ .chroma .kt { color: #859900; font-weight: bold } +/* Name */ .chroma .n { color: #268bd2 } +/* NameAttribute */ .chroma .na { color: #268bd2 } +/* NameBuiltin */ .chroma .nb { color: #cb4b16 } +/* NameBuiltinPseudo */ .chroma .bp { color: #268bd2 } +/* NameClass */ .chroma .nc { color: #cb4b16 } +/* NameConstant */ .chroma .no { color: #268bd2 } +/* NameDecorator */ .chroma .nd { color: #268bd2 } +/* NameEntity */ .chroma .ni { color: #268bd2 } +/* NameException */ .chroma .ne { color: #268bd2 } +/* NameFunction */ .chroma .nf { color: #268bd2 } +/* NameFunctionMagic */ .chroma .fm { color: #268bd2 } +/* NameLabel */ .chroma .nl { color: #268bd2 } +/* NameNamespace */ .chroma .nn { color: #268bd2 } +/* NameOther */ .chroma .nx { color: #268bd2 } +/* NameProperty */ .chroma .py { color: #268bd2 } +/* NameTag */ .chroma .nt { color: #268bd2; font-weight: bold } +/* NameVariable */ .chroma .nv { color: #268bd2 } +/* NameVariableClass */ .chroma .vc { color: #268bd2 } +/* NameVariableGlobal */ .chroma .vg { color: #268bd2 } +/* NameVariableInstance */ .chroma .vi { color: #268bd2 } +/* NameVariableMagic */ .chroma .vm { color: #268bd2 } +/* Literal */ .chroma .l { color: #2aa198 } +/* LiteralDate */ .chroma .ld { color: #2aa198 } +/* LiteralString */ .chroma .s { color: #2aa198 } +/* LiteralStringAffix */ .chroma .sa { color: #2aa198 } +/* LiteralStringBacktick */ .chroma .sb { color: #2aa198 } +/* LiteralStringChar */ .chroma .sc { color: #2aa198 } +/* LiteralStringDelimiter */ .chroma .dl { color: #2aa198 } +/* LiteralStringDoc */ .chroma .sd { color: #2aa198 } +/* LiteralStringDouble */ .chroma .s2 { color: #2aa198 } +/* LiteralStringEscape */ .chroma .se { color: #2aa198 } +/* LiteralStringHeredoc */ .chroma .sh { color: #2aa198 } +/* LiteralStringInterpol */ .chroma .si { color: #2aa198 } +/* LiteralStringOther */ .chroma .sx { color: #2aa198 } +/* LiteralStringRegex */ .chroma .sr { color: #2aa198 } +/* LiteralStringSingle */ .chroma .s1 { color: #2aa198 } +/* LiteralStringSymbol */ .chroma .ss { color: #2aa198 } +/* LiteralNumber */ .chroma .m { color: #2aa198; font-weight: bold } +/* LiteralNumberBin */ .chroma .mb { color: #2aa198; font-weight: bold } +/* LiteralNumberFloat */ .chroma .mf { color: #2aa198; font-weight: bold } +/* LiteralNumberHex */ .chroma .mh { color: #2aa198; font-weight: bold } +/* LiteralNumberInteger */ .chroma .mi { color: #2aa198; font-weight: bold } +/* LiteralNumberIntegerLong */ .chroma .il { color: #2aa198; font-weight: bold } +/* LiteralNumberOct */ .chroma .mo { color: #2aa198; font-weight: bold } +/* Operator */ .chroma .o { } +/* OperatorWord */ .chroma .ow { color: #859900 } +/* Punctuation */ .chroma .p { } +/* Comment */ .chroma .c { color: #93a1a1; font-style: italic } +/* CommentHashbang */ .chroma .ch { color: #93a1a1; font-style: italic } +/* CommentMultiline */ .chroma .cm { color: #93a1a1; font-style: italic } +/* CommentSingle */ .chroma .c1 { color: #93a1a1; font-style: italic } +/* CommentSpecial */ .chroma .cs { color: #93a1a1; font-style: italic } +/* CommentPreproc */ .chroma .cp { color: #93a1a1; font-style: italic } +/* CommentPreprocFile */ .chroma .cpf { color: #93a1a1; font-style: italic } +/* Generic */ .chroma .g { color: #d33682 } +/* GenericDeleted */ .chroma .gd { color: #d33682 } +/* GenericEmph */ .chroma .ge { color: #d33682 } +/* GenericError */ .chroma .gr { color: #d33682 } +/* GenericHeading */ .chroma .gh { color: #d33682 } +/* GenericInserted */ .chroma .gi { color: #d33682 } +/* GenericOutput */ .chroma .go { color: #d33682 } +/* GenericPrompt */ .chroma .gp { color: #d33682 } +/* GenericStrong */ .chroma .gs { color: #d33682 } +/* GenericSubheading */ .chroma .gu { color: #d33682 } +/* GenericTraceback */ .chroma .gt { color: #d33682 } +/* GenericUnderline */ .chroma .gl { color: #d33682 } +/* TextWhitespace */ .chroma .w { } + +/* generated by `hugo gen chromastyles --style=solarized-dark` with `.dark` scope */ + +.dark /* Background */ .bg { color: #93a1a1; background-color: #002b36; } +.dark /* PreWrapper */ .chroma { color: #93a1a1; background-color: #002b36; } +.dark /* Other */ .chroma .x { color: #cb4b16 } +.dark /* Error */ .chroma .err { } +.dark /* CodeLine */ .chroma .cl { } +.dark /* LineLink */ .chroma .lnlinks { outline: none; text-decoration: none; color: inherit } +.dark /* LineTableTD */ .chroma .lntd { vertical-align: top; padding: 0; margin: 0; border: 0; } +.dark /* LineTable */ .chroma .lntable { border-spacing: 0; padding: 0; margin: 0; border: 0; } +.dark /* LineHighlight */ .chroma .hl { background-color: #19404a } +.dark /* LineNumbersTable */ .chroma .lnt { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #495050 } +.dark /* LineNumbers */ .chroma .ln { white-space: pre; -webkit-user-select: none; user-select: none; margin-right: 0.4em; padding: 0 0.4em 0 0.4em;color: #495050 } +.dark /* Line */ .chroma .line { display: flex; } +.dark /* Keyword */ .chroma .k { color: #719e07 } +.dark /* KeywordConstant */ .chroma .kc { color: #cb4b16 } +.dark /* KeywordDeclaration */ .chroma .kd { color: #268bd2 } +.dark /* KeywordNamespace */ .chroma .kn { color: #719e07 } +.dark /* KeywordPseudo */ .chroma .kp { color: #719e07 } +.dark /* KeywordReserved */ .chroma .kr { color: #268bd2 } +.dark /* KeywordType */ .chroma .kt { color: #dc322f } +.dark /* Name */ .chroma .n { } +.dark /* NameAttribute */ .chroma .na { } +.dark /* NameBuiltin */ .chroma .nb { color: #b58900 } +.dark /* NameBuiltinPseudo */ .chroma .bp { color: #268bd2 } +.dark /* NameClass */ .chroma .nc { color: #268bd2 } +.dark /* NameConstant */ .chroma .no { color: #cb4b16 } +.dark /* NameDecorator */ .chroma .nd { color: #268bd2 } +.dark /* NameEntity */ .chroma .ni { color: #cb4b16 } +.dark /* NameException */ .chroma .ne { color: #cb4b16 } +.dark /* NameFunction */ .chroma .nf { color: #268bd2 } +.dark /* NameFunctionMagic */ .chroma .fm { } +.dark /* NameLabel */ .chroma .nl { } +.dark /* NameNamespace */ .chroma .nn { } +.dark /* NameOther */ .chroma .nx { } +.dark /* NameProperty */ .chroma .py { } +.dark /* NameTag */ .chroma .nt { color: #268bd2 } +.dark /* NameVariable */ .chroma .nv { color: #268bd2 } +.dark /* NameVariableClass */ .chroma .vc { } +.dark /* NameVariableGlobal */ .chroma .vg { } +.dark /* NameVariableInstance */ .chroma .vi { } +.dark /* NameVariableMagic */ .chroma .vm { } +.dark /* Literal */ .chroma .l { } +.dark /* LiteralDate */ .chroma .ld { } +.dark /* LiteralString */ .chroma .s { color: #2aa198 } +.dark /* LiteralStringAffix */ .chroma .sa { color: #2aa198 } +.dark /* LiteralStringBacktick */ .chroma .sb { color: #586e75 } +.dark /* LiteralStringChar */ .chroma .sc { color: #2aa198 } +.dark /* LiteralStringDelimiter */ .chroma .dl { color: #2aa198 } +.dark /* LiteralStringDoc */ .chroma .sd { } +.dark /* LiteralStringDouble */ .chroma .s2 { color: #2aa198 } +.dark /* LiteralStringEscape */ .chroma .se { color: #cb4b16 } +.dark /* LiteralStringHeredoc */ .chroma .sh { } +.dark /* LiteralStringInterpol */ .chroma .si { color: #2aa198 } +.dark /* LiteralStringOther */ .chroma .sx { color: #2aa198 } +.dark /* LiteralStringRegex */ .chroma .sr { color: #dc322f } +.dark /* LiteralStringSingle */ .chroma .s1 { color: #2aa198 } +.dark /* LiteralStringSymbol */ .chroma .ss { color: #2aa198 } +.dark /* LiteralNumber */ .chroma .m { color: #2aa198 } +.dark /* LiteralNumberBin */ .chroma .mb { color: #2aa198 } +.dark /* LiteralNumberFloat */ .chroma .mf { color: #2aa198 } +.dark /* LiteralNumberHex */ .chroma .mh { color: #2aa198 } +.dark /* LiteralNumberInteger */ .chroma .mi { color: #2aa198 } +.dark /* LiteralNumberIntegerLong */ .chroma .il { color: #2aa198 } +.dark /* LiteralNumberOct */ .chroma .mo { color: #2aa198 } +.dark /* Operator */ .chroma .o { color: #719e07 } +.dark /* OperatorWord */ .chroma .ow { color: #719e07 } +.dark /* Punctuation */ .chroma .p { } +.dark /* Comment */ .chroma .c { color: #586e75 } +.dark /* CommentHashbang */ .chroma .ch { color: #586e75 } +.dark /* CommentMultiline */ .chroma .cm { color: #586e75 } +.dark /* CommentSingle */ .chroma .c1 { color: #586e75 } +.dark /* CommentSpecial */ .chroma .cs { color: #719e07 } +.dark /* CommentPreproc */ .chroma .cp { color: #719e07 } +.dark /* CommentPreprocFile */ .chroma .cpf { color: #719e07 } +.dark /* Generic */ .chroma .g { } +.dark /* GenericDeleted */ .chroma .gd { color: #dc322f } +.dark /* GenericEmph */ .chroma .ge { font-style: italic } +.dark /* GenericError */ .chroma .gr { color: #dc322f; font-weight: bold } +.dark /* GenericHeading */ .chroma .gh { color: #cb4b16 } +.dark /* GenericInserted */ .chroma .gi { color: #719e07 } +.dark /* GenericOutput */ .chroma .go { } +.dark /* GenericPrompt */ .chroma .gp { } +.dark /* GenericStrong */ .chroma .gs { font-weight: bold } +.dark /* GenericSubheading */ .chroma .gu { color: #268bd2 } +.dark /* GenericTraceback */ .chroma .gt { } +.dark /* GenericUnderline */ .chroma .gl { } +.dark /* TextWhitespace */ .chroma .w { } + + +.highlight { + position: relative; +} + +.highlight .icon-tabler.icon-tabler-check { + stroke: rgb(74 222 128); /* tailwindcss green-400 */ +} + +/* fix highlight with line number */ +.highlight .chroma .lntable { + margin: 1.7142857em 0; + padding: 0.8571429em 1.1428571em; + border-radius: 0.375rem; + overflow: hidden; +} + +.highlight .chroma .lntable pre { + margin: 0; + padding: 0.8571429em 0; + border-radius: 0; +} + +/* https://caniuse.com/css-has */ +.highlight .chroma:has(table) { + background-color: transparent; +} + +.highlight .lntable tr { + display: flex; +} + +.highlight .lntable tr .lntd:last-child { + flex-grow: 1; +} diff --git a/assets/icons/brand-facebook.svg b/assets/icons/brand-facebook.svg new file mode 100644 index 0000000..6d9411d --- /dev/null +++ b/assets/icons/brand-facebook.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/brand-github.svg b/assets/icons/brand-github.svg new file mode 100644 index 0000000..95f9c40 --- /dev/null +++ b/assets/icons/brand-github.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/brand-instagram.svg b/assets/icons/brand-instagram.svg new file mode 100644 index 0000000..5a3daab --- /dev/null +++ b/assets/icons/brand-instagram.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/assets/icons/brand-linkedin.svg b/assets/icons/brand-linkedin.svg new file mode 100644 index 0000000..ace5a6a --- /dev/null +++ b/assets/icons/brand-linkedin.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/icons/brand-twitter.svg b/assets/icons/brand-twitter.svg new file mode 100644 index 0000000..1f0b239 --- /dev/null +++ b/assets/icons/brand-twitter.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/brand-x.svg b/assets/icons/brand-x.svg new file mode 100644 index 0000000..5c24025 --- /dev/null +++ b/assets/icons/brand-x.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/brand-youtube.svg b/assets/icons/brand-youtube.svg new file mode 100644 index 0000000..f842538 --- /dev/null +++ b/assets/icons/brand-youtube.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/brightness-down.svg b/assets/icons/brightness-down.svg new file mode 100644 index 0000000..018b307 --- /dev/null +++ b/assets/icons/brightness-down.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/assets/icons/calendar.svg b/assets/icons/calendar.svg new file mode 100644 index 0000000..7f08b61 --- /dev/null +++ b/assets/icons/calendar.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/assets/icons/caret-left.svg b/assets/icons/caret-left.svg new file mode 100644 index 0000000..11a3c6f --- /dev/null +++ b/assets/icons/caret-left.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/caret-right.svg b/assets/icons/caret-right.svg new file mode 100644 index 0000000..0aba3f4 --- /dev/null +++ b/assets/icons/caret-right.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/category-2.svg b/assets/icons/category-2.svg new file mode 100644 index 0000000..1038e3c --- /dev/null +++ b/assets/icons/category-2.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/icons/check.svg b/assets/icons/check.svg new file mode 100644 index 0000000..c069ffe --- /dev/null +++ b/assets/icons/check.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/chevron-right.svg b/assets/icons/chevron-right.svg new file mode 100644 index 0000000..04543f2 --- /dev/null +++ b/assets/icons/chevron-right.svg @@ -0,0 +1,4 @@ + + + + diff --git a/assets/icons/copy.svg b/assets/icons/copy.svg new file mode 100644 index 0000000..aeefc22 --- /dev/null +++ b/assets/icons/copy.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/copyright.svg b/assets/icons/copyright.svg new file mode 100644 index 0000000..fbb5412 --- /dev/null +++ b/assets/icons/copyright.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/hash.svg b/assets/icons/hash.svg new file mode 100644 index 0000000..56d190f --- /dev/null +++ b/assets/icons/hash.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/assets/icons/hourglass-high.svg b/assets/icons/hourglass-high.svg new file mode 100644 index 0000000..bb9f3b1 --- /dev/null +++ b/assets/icons/hourglass-high.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/assets/icons/language.svg b/assets/icons/language.svg new file mode 100644 index 0000000..46b3d35 --- /dev/null +++ b/assets/icons/language.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/assets/icons/menu-2.svg b/assets/icons/menu-2.svg new file mode 100644 index 0000000..f1515b4 --- /dev/null +++ b/assets/icons/menu-2.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/assets/icons/moon-stars.svg b/assets/icons/moon-stars.svg new file mode 100644 index 0000000..0ce0d48 --- /dev/null +++ b/assets/icons/moon-stars.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/assets/icons/search.svg b/assets/icons/search.svg new file mode 100644 index 0000000..97bea69 --- /dev/null +++ b/assets/icons/search.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/assets/icons/tags.svg b/assets/icons/tags.svg new file mode 100644 index 0000000..0f23cbd --- /dev/null +++ b/assets/icons/tags.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/assets/icons/user.svg b/assets/icons/user.svg new file mode 100644 index 0000000..97d5d73 --- /dev/null +++ b/assets/icons/user.svg @@ -0,0 +1,7 @@ + + + + + diff --git a/assets/js/code-copy.js b/assets/js/code-copy.js new file mode 100644 index 0000000..fca71e9 --- /dev/null +++ b/assets/js/code-copy.js @@ -0,0 +1,72 @@ +(function () { + const copyIcon = document.getElementById("code-copy").innerHTML; + const copyIconDone = document.getElementById("code-copy-done").innerHTML; + + /** + * code inspired by https://digitaldrummerj.me/hugo-add-copy-code-snippet-button/ + * and https://www.dannyguo.com/blog/how-to-add-copy-to-clipboard-buttons-to-code-blocks-in-hugo + */ + + function createCopyButton(highlightDiv) { + const button = document.createElement("button"); + button.className = "right-1 top-1 absolute"; + button.type = "button"; + button.innerHTML = copyIcon; + button.addEventListener("click", () => copyCodeToClipboard(button, highlightDiv)); + highlightDiv.insertBefore(button, highlightDiv.firstChild); + } + + document.querySelectorAll(".highlight").forEach((highlightDiv) => createCopyButton(highlightDiv)); + + async function copyCodeToClipboard(button, highlightDiv) { + let codeToCopy = highlightDiv.querySelector("code").textContent; + if (highlightDiv.querySelector("table")) { // code with line number + codeToCopy = highlightDiv.querySelector("td:last-child code").textContent; + } + let permissionGranted = true; + try { + var result = await navigator.permissions.query({ name: "clipboard-write" }); + if (result.state != "granted" && result.state != "prompt") { + permissionGranted = false; + } + } catch (_) { + // The clipboard-write permission name is not supported in Firefox, only Chromium browsers. + // default to true in case of error for firefox + } + + try { + if (permissionGranted) { + await navigator.clipboard.writeText(codeToCopy); + } else { + copyCodeBlockExecCommand(codeToCopy, highlightDiv); + } + } catch (_) { + copyCodeBlockExecCommand(codeToCopy, highlightDiv); + } finally { + /* Chrome doesn't seem to blur automatically, + leaving the button in a focused state. */ + button.blur(); + button.innerHTML = copyIconDone; + setTimeout(function () { + button.innerHTML = copyIcon; + }, 2000); + } + } + + function copyCodeBlockExecCommand(codeToCopy, highlightDiv) { + const textArea = document.createElement("textArea"); + textArea.contentEditable = "true"; + textArea.readOnly = "false"; + textArea.className = "copyable-text-area"; + textArea.value = codeToCopy; + highlightDiv.insertBefore(textArea, highlightDiv.firstChild); + const range = document.createRange(); + range.selectNodeContents(textArea); + const sel = window.getSelection(); + sel.removeAllRanges(); + sel.addRange(range); + textArea.setSelectionRange(0, 999999); + document.execCommand("copy"); + highlightDiv.removeChild(textArea); + } +})(); diff --git a/assets/js/doT.js b/assets/js/doT.js new file mode 100644 index 0000000..c61400a --- /dev/null +++ b/assets/js/doT.js @@ -0,0 +1,144 @@ +// doT.js +// 2011-2014, Laura Doktorova, https://github.com/olado/doT +// Licensed under the MIT license. + +(function () { + "use strict"; + + var doT = { + name: "doT", + version: "1.1.1", + templateSettings: { + evaluate: /\{\{([\s\S]+?(\}?)+)\}\}/g, + interpolate: /\{\{=([\s\S]+?)\}\}/g, + encode: /\{\{!([\s\S]+?)\}\}/g, + use: /\{\{#([\s\S]+?)\}\}/g, + useParams: /(^|[^\w$])def(?:\.|\[[\'\"])([\w$\.]+)(?:[\'\"]\])?\s*\:\s*([\w$\.]+|\"[^\"]+\"|\'[^\']+\'|\{[^\}]+\})/g, + define: /\{\{##\s*([\w\.$]+)\s*(\:|=)([\s\S]+?)#\}\}/g, + defineParams:/^\s*([\w$]+):([\s\S]+)/, + conditional: /\{\{\?(\?)?\s*([\s\S]*?)\s*\}\}/g, + iterate: /\{\{~\s*(?:\}\}|([\s\S]+?)\s*\:\s*([\w$]+)\s*(?:\:\s*([\w$]+))?\s*\}\})/g, + varname: "it", + strip: true, + append: true, + selfcontained: false, + doNotSkipEncoded: false + }, + template: undefined, //fn, compile template + compile: undefined, //fn, for express + log: true + }, _globals; + + doT.encodeHTMLSource = function(doNotSkipEncoded) { + var encodeHTMLRules = { "&": "&", "<": "<", ">": ">", '"': """, "'": "'", "/": "/" }, + matchHTML = doNotSkipEncoded ? /[&<>"'\/]/g : /&(?!#?\w+;)|<|>|"|'|\//g; + return function(code) { + return code ? code.toString().replace(matchHTML, function(m) {return encodeHTMLRules[m] || m;}) : ""; + }; + }; + + _globals = (function(){ return this || (0,eval)("this"); }()); + + /* istanbul ignore else */ + if (typeof module !== "undefined" && module.exports) { + module.exports = doT; + } else if (typeof define === "function" && define.amd) { + define(function(){return doT;}); + } else { + _globals.doT = doT; + } + + var startend = { + append: { start: "'+(", end: ")+'", startencode: "'+encodeHTML(" }, + split: { start: "';out+=(", end: ");out+='", startencode: "';out+=encodeHTML(" } + }, skip = /$^/; + + function resolveDefs(c, block, def) { + return ((typeof block === "string") ? block : block.toString()) + .replace(c.define || skip, function(m, code, assign, value) { + if (code.indexOf("def.") === 0) { + code = code.substring(4); + } + if (!(code in def)) { + if (assign === ":") { + if (c.defineParams) value.replace(c.defineParams, function(m, param, v) { + def[code] = {arg: param, text: v}; + }); + if (!(code in def)) def[code]= value; + } else { + new Function("def", "def['"+code+"']=" + value)(def); + } + } + return ""; + }) + .replace(c.use || skip, function(m, code) { + if (c.useParams) code = code.replace(c.useParams, function(m, s, d, param) { + if (def[d] && def[d].arg && param) { + var rw = (d+":"+param).replace(/'|\\/g, "_"); + def.__exp = def.__exp || {}; + def.__exp[rw] = def[d].text.replace(new RegExp("(^|[^\\w$])" + def[d].arg + "([^\\w$])", "g"), "$1" + param + "$2"); + return s + "def.__exp['"+rw+"']"; + } + }); + var v = new Function("def", "return " + code)(def); + return v ? resolveDefs(c, v, def) : v; + }); + } + + function unescape(code) { + return code.replace(/\\('|\\)/g, "$1").replace(/[\r\t\n]/g, " "); + } + + doT.template = function(tmpl, c, def) { + c = c || doT.templateSettings; + var cse = c.append ? startend.append : startend.split, needhtmlencode, sid = 0, indv, + str = (c.use || c.define) ? resolveDefs(c, tmpl, def || {}) : tmpl; + + str = ("var out='" + (c.strip ? str.replace(/(^|\r|\n)\t* +| +\t*(\r|\n|$)/g," ") + .replace(/\r|\n|\t|\/\*[\s\S]*?\*\//g,""): str) + .replace(/'|\\/g, "\\$&") + .replace(c.interpolate || skip, function(m, code) { + return cse.start + unescape(code) + cse.end; + }) + .replace(c.encode || skip, function(m, code) { + needhtmlencode = true; + return cse.startencode + unescape(code) + cse.end; + }) + .replace(c.conditional || skip, function(m, elsecase, code) { + return elsecase ? + (code ? "';}else if(" + unescape(code) + "){out+='" : "';}else{out+='") : + (code ? "';if(" + unescape(code) + "){out+='" : "';}out+='"); + }) + .replace(c.iterate || skip, function(m, iterate, vname, iname) { + if (!iterate) return "';} } out+='"; + sid+=1; indv=iname || "i"+sid; iterate=unescape(iterate); + return "';var arr"+sid+"="+iterate+";if(arr"+sid+"){var "+vname+","+indv+"=-1,l"+sid+"=arr"+sid+".length-1;while("+indv+" response.json()).then(data => { + const fuse = new Fuse(data, fuseOptions); + const result = fuse.search(keywords); + if (result.length > 0) { + showResult(keywords, result); + emptyResult.classList.add('hidden'); + } else { + resultContainer.innerHTML = ''; + emptyResult.classList.remove('hidden'); + } + }); + } + + const resultTemplate = ` +
+

+ {{! it.title }} +

+

+ {{! it.snippet }} +

+
    + {{~ it.categories :v }} +
  • + + {{!v}} + +
  • + {{~}} + {{~ it.tags :v }} +
  • + + {{= it.tagIcon }} + {{!v}} + +
  • + {{~}} +
+
+ `; + + function showResult(keywords, result) { + const templateFn = doT.template(resultTemplate); + const tagIcon = document.getElementById('tag-icon').innerHTML; + resultContainer.innerHTML = ''; + for (const [index, entry] of result.entries()) { + const item = entry.item; + const content = entry.item.content; + item.snippet = content.substring(0, searchOptions.summaryInclude * 2) + '…'; + item.tagIcon = tagIcon; + item.index = index; + resultContainer.innerHTML += templateFn(item); + } + const instance = new Mark(resultContainer); + instance.mark(keywords); + } +})() diff --git a/assets/logo.png b/assets/logo.png new file mode 100644 index 0000000..dc065e0 Binary files /dev/null and b/assets/logo.png differ diff --git a/config/_default/hugo.toml b/config/_default/hugo.toml new file mode 100644 index 0000000..3459e69 --- /dev/null +++ b/config/_default/hugo.toml @@ -0,0 +1,49 @@ +baseURL = 'https://example.org/' +title = 'My New Hugo Site' +copyright = "" +languageCode = 'en' +defaultContentLanguage = "en" +hasCJKLanguage = true +enableInlineShortcodes = true +# prevent build failures when using Hugo's Instagram shortcode due to deprecated Instagram API. +# See https://github.com/gohugoio/hugo/issues/7228#issuecomment-714490456 +ignoreErrors = ["error-remote-getjson"] +enableRobotsTXT = true +enableEmoji = true +enableGitInfo = true + +[markup] +[markup.highlight] +# lineNos = true +noClasses = false +[markup.goldmark] +[markup.goldmark.renderer] +unsafe = true +[markup.goldmark.extensions] +[markup.goldmark.extensions.cjk] +enable = true +eastAsianLineBreaks = true +escapedSpace = true + +[privacy] +[privacy.vimeo] +disabled = false +simple = true + +[privacy.twitter] +disabled = false +enableDNT = true +simple = true + +[privacy.instagram] +disabled = false +simple = true + +[privacy.youtube] +disabled = false +privacyEnhanced = true + +[module] +[module.hugoVersion] +extended = true +min = "0.120.0" diff --git a/config/_default/language.toml b/config/_default/language.toml new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/config/_default/language.toml @@ -0,0 +1 @@ + diff --git a/config/_default/params.toml b/config/_default/params.toml new file mode 100644 index 0000000..c40e825 --- /dev/null +++ b/config/_default/params.toml @@ -0,0 +1,96 @@ +# SEO keywords and description for your site. +keywords = "hugo, tailwind, tailwindcss, hugo theme, hugo theme tailwind" +subtitle = "Example site for hugo-theme-tailwind" + +# dir name of your blog content (default is `content/posts`). +# the list of set content will show up on your index page (baseurl). +contentTypeName = "posts" + +# Show table of contents at the top of your posts (defaults to false) +# Alternatively, add this param to post front matter for specific posts +toc = true + +showReadingTime = true + +# use structure json-ld for articles +jsonLD = false + +showAuthor = false + +[author] +name = "Hugo Author" +email = "user@example.com" + +[search] +summaryInclude = 180 # show only part of content in search result. +minMatchCharLength = 2 # https://www.fusejs.io/api/options.html#minmatchcharlength +threshold = 0.3 # https://www.fusejs.io/api/options.html#threshold + +[header] +logo = "https://placehold.co/512/webp" +sticky = false + +[footer] +since = 2023 +poweredby = true + +[taxonomies.icons] +categories = "category-2" +tags = "hash" + +# giscus is comments system powered by GitHub Discussions +# generate configurations from https://giscus.app/ +[giscus] +enabled = false +repo = "your-repo-name" +repoID = "your-repo-id" +category = "your-category" +categoryID = "your-category-id" +mapping = "pathname" +strict = "0" +reactionsEnabled = "1" +emitMetadata = "0" +inputPosition = "bottom" +lang = "en" + +[social_media] +[[social_media.items]] +enabled = false +title = 'Facebook' +icon = 'brand-facebook' +link = 'https://www.facebook.com/' + +[[social_media.items]] +enabled = false +title = 'Twitter' +icon = 'brand-x' +link = 'https://twitter.com/__PurPleFoX__' + +[[social_media.items]] +enabled = false +title = 'Instagram' +icon = 'brand-instagram' +link = 'https://www.instagram.com/' + +[[social_media.items]] +enabled = false +title = 'LinkedIn' +icon = 'brand-linkedin' +link = 'https://www.linkedin.com/' + +[[social_media.items]] +enabled = false +title = 'Github' +icon = 'brand-github' +link = 'https://github.com/tomowang' + +[pwa] +enabled = true +icon = "logo.png" # should be in assets +icon_sizes = [192, 512] + +# will be used as the manifest.json file and merge the default one +# https://developer.mozilla.org/en-US/docs/Web/Manifest +# https://web.dev/add-manifest/ +[pwa.manifest] +description = "Example site for hugo-theme-tailwind" diff --git a/config/_default/services.toml b/config/_default/services.toml new file mode 100644 index 0000000..0e6626e --- /dev/null +++ b/config/_default/services.toml @@ -0,0 +1,15 @@ +# GA Tracking ID +[googleAnalytics] +ID = "" + +[instagram] +disableInlineCSS = true + +[twitter] +disableInlineCSS = true + +# comments +[disqus] +# https://gohugo.io/templates/internal/#disqus +# disqusShortname = "your-disqus-shortname" +shortname = '' diff --git a/content/manifest.md b/content/manifest.md new file mode 100644 index 0000000..3a60dbe --- /dev/null +++ b/content/manifest.md @@ -0,0 +1,6 @@ ++++ +layout = "manifest" +outputs = ["json"] +url = "/manifest.json" +sitemap = false ++++ diff --git a/content/search/_index.de.md b/content/search/_index.de.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.de.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.en.md b/content/search/_index.en.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.en.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.es.md b/content/search/_index.es.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.es.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.fr.md b/content/search/_index.fr.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.fr.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.hi.md b/content/search/_index.hi.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.hi.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.jp.md b/content/search/_index.jp.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.jp.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.md b/content/search/_index.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.nl.md b/content/search/_index.nl.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.nl.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.pl.md b/content/search/_index.pl.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.pl.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.ru.md b/content/search/_index.ru.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.ru.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/content/search/_index.zh-cn.md b/content/search/_index.zh-cn.md new file mode 100644 index 0000000..d1c826a --- /dev/null +++ b/content/search/_index.zh-cn.md @@ -0,0 +1,5 @@ ++++ +layout = "search" +outputs = ["html", "json"] +sitemap.priority = 0.1 ++++ diff --git a/credits.md b/credits.md deleted file mode 100644 index 26349f6..0000000 --- a/credits.md +++ /dev/null @@ -1,13 +0,0 @@ -# Solid - -A landing page template. - -* [Getting started](#getting-started) - -## Getting started -* First, ensure that node.js & npm are both installed. If not, choose your OS and installation method from [this page](https://nodejs.org/en/download/package-manager/) and follow the instructions. -* This template requires Node 14 to work. You can handle multiple node versions with [NVM](https://github.com/nvm-sh/nvm) -* Next, use your command line to enter your project directory. -* This template comes with a ready-to-use package file called `package-sample.json`. You just need to rename it to `package.json`, then run `npm install` to install all of the dependencies into your project. - -You're ready to go! Run any task by typing `npm run task` (where "task" is the name of the task in the `"scripts"` object). The most useful task for rapid development is `watch`. It will start a new server, open up a browser and watch for any SCSS or JS changes in the `src` directory; once it compiles those changes, the browser will automatically inject the changed file(s)! diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/dist/css/style.css b/dist/css/style.css deleted file mode 100644 index 5d57470..0000000 --- a/dist/css/style.css +++ /dev/null @@ -1,3 +0,0 @@ -html{line-height:1.15;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,footer,header,nav,section{display:block}h1{font-size:2em;margin:0.67em 0}figcaption,figure,main{display:block}figure{margin:1em 40px}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace, monospace;font-size:1em}a{background-color:transparent;-webkit-text-decoration-skip:objects}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:inherit}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace, monospace;font-size:1em}dfn{font-style:italic}mark{background-color:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}audio,video{display:inline-block}audio:not([controls]){display:none;height:0}img{border-style:none}svg:not(:root){overflow:hidden}button,input,optgroup,select,textarea{font-family:sans-serif;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,html [type="button"],[type="reset"],[type="submit"]{-webkit-appearance:button}button::-moz-focus-inner,[type="button"]::-moz-focus-inner,[type="reset"]::-moz-focus-inner,[type="submit"]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type="button"]:-moz-focusring,[type="reset"]:-moz-focusring,[type="submit"]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:0.35em 0.75em 0.625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{display:inline-block;vertical-align:baseline}textarea{overflow:auto}[type="checkbox"],[type="radio"]{box-sizing:border-box;padding:0}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{-webkit-appearance:textfield;outline-offset:-2px}[type="search"]::-webkit-search-cancel-button,[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details,menu{display:block}summary{display:list-item}canvas{display:inline-block}template{display:none}[hidden]{display:none}html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit}body{background:#1D2026;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}hr{border:0;display:block;height:1px;background:#242830;margin-top:24px;margin-bottom:24px}ul,ol{margin-top:0;margin-bottom:24px;padding-left:24px}ul{list-style:disc}ol{list-style:decimal}li>ul,li>ol{margin-bottom:0}dl{margin-top:0;margin-bottom:24px}dt{font-weight:600}dd{margin-left:24px;margin-bottom:24px}img{height:auto;max-width:100%;vertical-align:middle}figure{margin:24px 0}figcaption{font-size:16px;line-height:24px;padding:8px 0}img,svg{display:block}table{border-collapse:collapse;margin-bottom:24px;width:100%}tr{border-bottom:1px solid #242830}th{text-align:left}th,td{padding:10px 16px}th:first-child,td:first-child{padding-left:0}th:last-child,td:last-child{padding-right:0}html{font-size:20px;line-height:30px}body{color:#8A94A7;font-size:1rem}body,button,input,select,textarea{font-family:"IBM Plex Sans", sans-serif}a{color:#8A94A7;text-decoration:underline}a:hover,a:active{outline:0;text-decoration:none}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{clear:both;color:#fff;font-weight:600}h1,.h1{font-size:38px;line-height:48px;letter-spacing:0px}@media (min-width: 641px){h1,.h1{font-size:44px;line-height:54px;letter-spacing:0px}}h2,.h2{font-size:32px;line-height:42px;letter-spacing:0px}@media (min-width: 641px){h2,.h2{font-size:38px;line-height:48px;letter-spacing:0px}}h3,.h3,blockquote{font-size:24px;line-height:34px;letter-spacing:0px}@media (min-width: 641px){h3,.h3,blockquote{font-size:32px;line-height:42px;letter-spacing:0px}}h4,h5,h6,.h4,.h5,.h6{font-size:20px;line-height:30px;letter-spacing:-0.1px}@media (min-width: 641px){h4,h5,h6,.h4,.h5,.h6{font-size:24px;line-height:34px;letter-spacing:0px}}@media (max-width: 640px){.h1-mobile{font-size:38px;line-height:48px;letter-spacing:0px}.h2-mobile{font-size:32px;line-height:42px;letter-spacing:0px}.h3-mobile{font-size:24px;line-height:34px;letter-spacing:0px}.h4-mobile,.h5-mobile,.h6-mobile{font-size:20px;line-height:30px;letter-spacing:-0.1px}}.text-light h1,.text-light h2,.text-light h3,.text-light h4,.text-light h5,.text-light h6,.text-light .h1,.text-light .h2,.text-light .h3,.text-light .h4,.text-light .h5,.text-light .h6{color:!important}.text-sm{font-size:18px;line-height:28px;letter-spacing:-0.1px}.text-xs{font-size:16px;line-height:24px;letter-spacing:-0.1px}h1,h2,.h1,.h2{margin-top:48px;margin-bottom:16px}h3,.h3{margin-top:36px;margin-bottom:12px}h4,h5,h6,.h4,.h5,.h6{margin-top:24px;margin-bottom:4px}p{margin-top:0;margin-bottom:24px}dfn,cite,em,i{font-style:italic}blockquote{color:#3B404C;font-style:italic;margin-top:24px;margin-bottom:24px;margin-left:24px}blockquote::before{content:"\201C"}blockquote::after{content:"\201D"}blockquote p{display:inline}address{color:#8A94A7;border-width:1px 0;border-style:solid;border-color:#242830;padding:24px 0;margin:0 0 24px}pre,pre h1,pre h2,pre h3,pre h4,pre h5,pre h6,pre .h1,pre .h2,pre .h3,pre .h4,pre .h5,pre .h6{font-family:"Courier 10 Pitch", Courier, monospace}pre,code,kbd,tt,var{background:#1D2026}pre{font-size:16px;line-height:24px;margin-bottom:1.6em;max-width:100%;overflow:auto;padding:24px;margin-top:24px;margin-bottom:24px}code,kbd,tt,var{font-family:Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;font-size:16px;padding:2px 4px}abbr,acronym{cursor:help}mark,ins{text-decoration:none}small{font-size:18px;line-height:28px;letter-spacing:-0.1px}b,strong{font-weight:600}button,input,select,textarea,label{font-size:20px;line-height:30px}.container,.container-sm{width:100%;margin:0 auto;padding-left:16px;padding-right:16px}@media (min-width: 481px){.container,.container-sm{padding-left:24px;padding-right:24px}}.container{max-width:1128px}.container-sm{max-width:848px}.container .container-sm{max-width:800px;padding-left:0;padding-right:0}.screen-reader-text{clip:rect(1px, 1px, 1px, 1px);position:absolute !important;height:1px;width:1px;overflow:hidden;word-wrap:normal !important}.screen-reader-text:focus{border-radius:2px;box-shadow:0 0 2px 2px rgba(0,0,0,0.6);clip:auto !important;display:block;font-size:14px;letter-spacing:0px;font-weight:600;line-height:16px;text-decoration:none;text-transform:uppercase;background-color:#1D2026;color:#0270D7 !important;border:none;height:auto;left:8px;padding:16px 32px;top:8px;width:auto;z-index:100000}.list-reset{list-style:none;padding:0}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-primary{color:#0270D7}.has-top-divider{position:relative}.has-top-divider::before{content:'';position:absolute;top:0;left:0;width:100%;display:block;height:1px;background:#242830}.has-bottom-divider{position:relative}.has-bottom-divider::after{content:'';position:absolute;bottom:0;left:0;width:100%;display:block;height:1px;background:#242830}.m-0{margin:0}.mt-0{margin-top:0}.mr-0{margin-right:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.m-8{margin:8px}.mt-8{margin-top:8px}.mr-8{margin-right:8px}.mb-8{margin-bottom:8px}.ml-8{margin-left:8px}.m-16{margin:16px}.mt-16{margin-top:16px}.mr-16{margin-right:16px}.mb-16{margin-bottom:16px}.ml-16{margin-left:16px}.m-24{margin:24px}.mt-24{margin-top:24px}.mr-24{margin-right:24px}.mb-24{margin-bottom:24px}.ml-24{margin-left:24px}.m-32{margin:32px}.mt-32{margin-top:32px}.mr-32{margin-right:32px}.mb-32{margin-bottom:32px}.ml-32{margin-left:32px}.m-40{margin:40px}.mt-40{margin-top:40px}.mr-40{margin-right:40px}.mb-40{margin-bottom:40px}.ml-40{margin-left:40px}.m-48{margin:48px}.mt-48{margin-top:48px}.mr-48{margin-right:48px}.mb-48{margin-bottom:48px}.ml-48{margin-left:48px}.m-56{margin:56px}.mt-56{margin-top:56px}.mr-56{margin-right:56px}.mb-56{margin-bottom:56px}.ml-56{margin-left:56px}.m-64{margin:64px}.mt-64{margin-top:64px}.mr-64{margin-right:64px}.mb-64{margin-bottom:64px}.ml-64{margin-left:64px}.p-0{padding:0}.pt-0{padding-top:0}.pr-0{padding-right:0}.pb-0{padding-bottom:0}.pl-0{padding-left:0}.p-8{padding:8px}.pt-8{padding-top:8px}.pr-8{padding-right:8px}.pb-8{padding-bottom:8px}.pl-8{padding-left:8px}.p-16{padding:16px}.pt-16{padding-top:16px}.pr-16{padding-right:16px}.pb-16{padding-bottom:16px}.pl-16{padding-left:16px}.p-24{padding:24px}.pt-24{padding-top:24px}.pr-24{padding-right:24px}.pb-24{padding-bottom:24px}.pl-24{padding-left:24px}.p-32{padding:32px}.pt-32{padding-top:32px}.pr-32{padding-right:32px}.pb-32{padding-bottom:32px}.pl-32{padding-left:32px}.p-40{padding:40px}.pt-40{padding-top:40px}.pr-40{padding-right:40px}.pb-40{padding-bottom:40px}.pl-40{padding-left:40px}.p-48{padding:48px}.pt-48{padding-top:48px}.pr-48{padding-right:48px}.pb-48{padding-bottom:48px}.pl-48{padding-left:48px}.p-56{padding:56px}.pt-56{padding-top:56px}.pr-56{padding-right:56px}.pb-56{padding-bottom:56px}.pl-56{padding-left:56px}.p-64{padding:64px}.pt-64{padding-top:64px}.pr-64{padding-right:64px}.pb-64{padding-bottom:64px}.pl-64{padding-left:64px}.sr .has-animations .is-revealing{visibility:hidden}.has-animations .anime-element{visibility:hidden}.anime-ready .has-animations .anime-element{visibility:visible}.input,.textarea{background-color:#fff;border-width:1px;border-style:solid;border-color:#242830;border-radius:2px;color:#8A94A7;max-width:100%;width:100%}.input::-moz-placeholder, .textarea::-moz-placeholder{color:#3B404C}.input::placeholder,.textarea::placeholder{color:#3B404C}.input::-ms-input-placeholder,.textarea::-ms-input-placeholder{color:#3B404C}.input:-ms-input-placeholder,.textarea:-ms-input-placeholder{color:#3B404C}.input:hover,.textarea:hover{border-color:#191c21}.input:active,.input:focus,.textarea:active,.textarea:focus{outline:none;border-color:#242830}.input[disabled],.textarea[disabled]{cursor:not-allowed;background-color:#1D2026;border-color:#1D2026}.input{-moz-appearance:none;-webkit-appearance:none;font-size:16px;letter-spacing:-0.1px;line-height:20px;padding:13px 16px;height:48px;box-shadow:none}.input .inline-input{display:inline;width:auto}.textarea{display:block;min-width:100%;resize:vertical}.textarea .inline-textarea{display:inline;width:auto}.field-grouped>.control:not(:last-child){margin-bottom:8px}@media (min-width: 641px){.field-grouped{display:flex}.field-grouped>.control{flex-shrink:0}.field-grouped>.control.control-expanded{flex-grow:1;flex-shrink:1}.field-grouped>.control:not(:last-child){margin-bottom:0;margin-right:8px}}.button{display:inline-flex;font-size:14px;letter-spacing:0px;font-weight:600;line-height:16px;text-decoration:none !important;text-transform:uppercase;background-color:#242830;color:#fff !important;border:none;border-radius:2px;cursor:pointer;justify-content:center;padding:16px 32px;height:48px;text-align:center;white-space:nowrap}.button:hover{background:#262a33}.button:active{outline:0}.button::before{border-radius:2px}.button-sm{padding:8px 24px;height:32px}.button-primary{background:#097dea;background:linear-gradient(65deg, #0270D7 0, #0F8AFD 100%)}.button-primary:hover{background:#0982f4;background:linear-gradient(65deg, #0275e1 0, #198ffd 100%)}.button-block{display:flex}.button-block{display:flex;width:100%}@media (max-width: 640px){.button-wide-mobile{width:100%;max-width:280px}}.site-header{padding:24px 0}.site-header-inner{position:relative;display:flex;justify-content:space-between;align-items:center}.header-links{display:inline-flex}.header-links li{display:inline-flex}.header-links a:not(.button){font-size:16px;line-height:24px;letter-spacing:-0.1px;font-weight:600;color:#8A94A7;text-transform:uppercase;text-decoration:none;line-height:16px;padding:8px 24px}@media (min-width: 641px){.site-header{position:relative}.site-header::before{content:'';position:absolute;top:0;left:0;width:100%;height:700px;background:#242830;background:linear-gradient(80deg, rgba(36,40,48,0.5) 0%, rgba(36,40,48,0) 100%);transform-origin:0;transform:skewY(-12deg)}}.hero{text-align:center;padding-top:48px;padding-bottom:88px}.hero-copy{position:relative;z-index:1}.hero-cta{margin-bottom:40px}.hero-figure{position:relative}.hero-figure svg{width:100%;height:auto}.hero-figure::before,.hero-figure::after{content:'';position:absolute;background-repeat:no-repeat;background-size:100%}.has-animations .hero-figure::before,.has-animations .hero-figure::after{opacity:0;transition:opacity 2s ease}.anime-ready .has-animations .hero-figure::before,.anime-ready .has-animations .hero-figure::after{opacity:1}.hero-figure::before{top:-57.8%;left:-1.3%;width:152.84%;height:178.78%;background-image:url("../images/hero-back-illustration.svg")}.hero-figure::after{top:-35.6%;left:99.6%;width:57.2%;height:87.88%;background-image:url("../images/hero-top-illustration.svg")}.hero-figure-box{position:absolute;top:0;will-change:transform}.hero-figure-box-01,.hero-figure-box-02,.hero-figure-box-03,.hero-figure-box-04,.hero-figure-box-08,.hero-figure-box-09{overflow:hidden}.hero-figure-box-01::before,.hero-figure-box-02::before,.hero-figure-box-03::before,.hero-figure-box-04::before,.hero-figure-box-08::before,.hero-figure-box-09::before{content:'';position:absolute;top:0;bottom:0;left:0;right:0;transform-origin:100% 100%}.hero-figure-box-01{left:103.2%;top:41.9%;width:28.03%;height:37.37%;background:linear-gradient(to left top, #00BFFB, rgba(0,191,251,0));transform:rotateZ(45deg)}.hero-figure-box-01::before{background:linear-gradient(to left, #15181D 0%, rgba(21,24,29,0) 60%);transform:rotateZ(45deg) scale(1.5)}.hero-figure-box-02{left:61.3%;top:64.1%;width:37.87%;height:50.50%;background:linear-gradient(to left top, #0270D7, rgba(2,112,215,0));transform:rotateZ(-45deg)}.hero-figure-box-02::before{background:linear-gradient(to top, #15181D 0%, rgba(21,24,29,0) 60%);transform:rotateZ(-45deg) scale(1.5)}.hero-figure-box-03{left:87.7%;top:-56.8%;width:56.81%;height:75.75%;background:linear-gradient(to left top, #00BFFB, rgba(0,191,251,0))}.hero-figure-box-03::before{background:linear-gradient(to left, #15181D 0%, rgba(21,24,29,0) 60%);transform:rotateZ(45deg) scale(1.5)}.hero-figure-box-04{left:54.9%;top:-8%;width:45.45%;height:60.60%;background:linear-gradient(to left top, #0270D7, rgba(2,112,215,0));transform:rotateZ(-135deg)}.hero-figure-box-04::before{background:linear-gradient(to top, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0) 60%);transform:rotateZ(-45deg) scale(1.5)}.hero-figure-box-05,.hero-figure-box-06,.hero-figure-box-07{background-color:#242830;box-shadow:-20px 32px 64px rgba(0,0,0,0.25)}.hero-figure-box-05{left:17.4%;top:13.3%;width:64%;height:73.7%;transform:perspective(500px) rotateY(-15deg) rotateX(8deg) rotateZ(-1deg)}.hero-figure-box-06{left:65.5%;top:6.3%;width:30.3%;height:40.4%;transform:rotateZ(20deg)}.hero-figure-box-07{left:1.9%;top:42.4%;width:12.12%;height:16.16%;transform:rotateZ(20deg)}.hero-figure-box-08{left:27.1%;top:81.6%;width:19.51%;height:26.01%;background:#0270D7;transform:rotateZ(-22deg)}.hero-figure-box-08::before{background:linear-gradient(to left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.48) 100%);transform:rotateZ(45deg) scale(1.5)}.hero-figure-box-09{left:42.6%;top:-17.9%;width:6.63%;height:8.83%;background:#00BFFB;transform:rotateZ(-52deg)}.hero-figure-box-09::before{background:linear-gradient(to left, rgba(255,255,255,0) 0%, rgba(255,255,255,0.64) 100%);transform:rotateZ(45deg) scale(1.5)}.hero-figure-box-10{left:-3.8%;top:4.3%;width:3.03%;height:4.04%;background:rgba(0,191,251,0.32);transform:rotateZ(-50deg)}@media (max-width: 640px){.hero-cta{max-width:280px;margin-left:auto;margin-right:auto}.hero-cta .button{display:flex}.hero-cta .button+.button{margin-top:16px}.hero-figure::after,.hero-figure-box-03,.hero-figure-box-04,.hero-figure-box-09{display:none}}@media (min-width: 641px){.hero{text-align:left;padding-top:64px;padding-bottom:88px}.hero-inner{display:flex;justify-content:space-between;align-items:center}.hero-copy{padding-right:64px;min-width:552px;width:552px}.hero-cta{margin:0}.hero-cta .button{min-width:170px}.hero-cta .button:first-child{margin-right:16px}.hero-figure svg{width:auto}}.features-wrap{display:flex;flex-wrap:wrap;justify-content:space-evenly;margin-right:-32px;margin-left:-32px}.features-wrap:first-of-type{margin-top:-16px}.features-wrap:last-of-type{margin-bottom:-16px}.feature{padding:16px 32px;width:380px;max-width:380px;flex-grow:1}.feature-inner{height:100%}.feature-icon{display:flex;justify-content:center}@media (min-width: 641px){.features-wrap:first-of-type{margin-top:-24px}.features-wrap:last-of-type{margin-bottom:-24px}.feature{padding:32px 32px}}.pricing-header{margin-bottom:48px}.pricing-tables-wrap{display:flex;flex-wrap:wrap;justify-content:center;margin-right:-12px;margin-left:-12px}.pricing-tables-wrap:first-child{margin-top:-12px}.pricing-tables-wrap:last-child{margin-bottom:-12px}.pricing-table{position:relative;padding:12px;width:368px;max-width:368px;flex-grow:1}.pricing-table::before{content:'';position:absolute;left:50%;width:200%;max-width:200%;height:435px;background-repeat:no-repeat;background-position:center;background-size:100%;bottom:18.8%;transform:translateX(-50%);background-image:url("../images/pricing-illustration.svg")}.pricing-table-header,.pricing-table-features-title,.pricing-table-features li{border-bottom:1px solid rgba(138,148,167,0.24)}.pricing-table-inner{position:relative;display:flex;flex-wrap:wrap;background:#2C3039;padding:24px;height:100%}.pricing-table-inner>*{position:relative;width:100%}.pricing-table-inner::before{content:'';position:absolute;top:0;right:0;bottom:0;left:0;box-shadow:0 24px 48px rgba(21,24,29,0.24);mix-blend-mode:multiply}.pricing-table-price-currency{color:#8A94A7}.pricing-table-features-title{color:#fff;font-weight:700}.pricing-table-features li{display:flex;align-items:center;padding:14px 0}.pricing-table-features li::before{content:'';width:16px;height:12px;margin-right:16px;background-image:url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTUuNiA2LjRMMS42IDQgMCA1LjYgNS42IDEyIDE2IDEuNiAxNC40IDB6IiBmaWxsPSIjMDJDQkIxIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4=);background-repeat:no-repeat}.pricing-table-cta{align-self:flex-end}@media (min-width: 641px){.pricing .section-paragraph{padding-left:90px;padding-right:90px}.pricing-header{margin-bottom:52px}}.cta{text-align:center}.cta .section-inner{padding:48px 16px}.cta .section-title{margin-bottom:40px}.cta-inner{position:relative;background:#15181D;overflow:hidden}.cta-inner::before{content:'';position:absolute;right:98px;top:-117px;width:160px;height:187px;background-image:url("../images/cta-illustration.svg");background-repeat:no-repeat}.cta-inner>*{position:relative}@media (min-width: 641px){.cta{text-align:left}.cta .section-inner{padding:64px 32px}.cta .section-title{margin-bottom:0;padding-right:24px}.cta-inner{display:flex;align-items:center;justify-content:space-between}}.is-boxed{background:#242830}.body-wrap{background:#1D2026;overflow:hidden;display:flex;flex-direction:column;min-height:100vh}.boxed-container{max-width:1440px;margin:0 auto;box-shadow:0 24px 48px rgba(21,24,29,0.24);mix-blend-mode:multiply;mix-blend-mode:normal}main{flex:1 0 auto}.section-inner{position:relative;padding-top:48px;padding-bottom:48px}@media (min-width: 641px){.section-inner{padding-top:88px;padding-bottom:88px}}.site-footer{font-size:14px;line-height:22px;letter-spacing:0px}.site-footer a{color:#8A94A7;text-decoration:none}.site-footer a:hover,.site-footer a:active{text-decoration:underline}.site-footer-inner{position:relative;display:flex;flex-wrap:wrap;padding-top:48px;padding-bottom:48px}.footer-brand,.footer-links,.footer-social-links,.footer-copyright{flex:none;width:100%;display:inline-flex;justify-content:center}.footer-brand,.footer-links,.footer-social-links{margin-bottom:24px}.footer-social-links li{display:inline-flex}.footer-social-links li+li{margin-left:16px}.footer-social-links li a{padding:8px}.footer-links li+li{margin-left:24px}@media (min-width: 641px){.site-footer{margin-top:20px}.site-footer-inner{justify-content:space-between;padding-top:64px;padding-bottom:64px}.footer-brand,.footer-links,.footer-social-links,.footer-copyright{flex:50%}.footer-brand,.footer-copyright{justify-content:flex-start}.footer-links,.footer-social-links{justify-content:flex-end}.footer-links{order:1;margin-bottom:0}} - -/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbInN0eWxlLmNzcyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxLQUFLLGdCQUFnQixDQUFDLHlCQUF5QixDQUFDLDZCQUE2QixDQUFDLEtBQUssUUFBUSxDQUFDLHdDQUF3QyxhQUFhLENBQUMsR0FBRyxhQUFhLENBQUMsZUFBZSxDQUFDLHVCQUF1QixhQUFhLENBQUMsT0FBTyxlQUFlLENBQUMsR0FBRyxzQkFBc0IsQ0FBQyxRQUFRLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxnQ0FBZ0MsQ0FBQyxhQUFhLENBQUMsRUFBRSw0QkFBNEIsQ0FBQyxvQ0FBb0MsQ0FBQyxZQUFZLGtCQUFrQixDQUFDLHlCQUF5QixDQUFDLHdDQUErQixDQUEvQixnQ0FBZ0MsQ0FBQyxTQUFTLG1CQUFtQixDQUFDLFNBQVMsa0JBQWtCLENBQUMsY0FBYyxnQ0FBZ0MsQ0FBQyxhQUFhLENBQUMsSUFBSSxpQkFBaUIsQ0FBQyxLQUFLLHFCQUFxQixDQUFDLFVBQVUsQ0FBQyxNQUFNLGFBQWEsQ0FBQyxRQUFRLGFBQWEsQ0FBQyxhQUFhLENBQUMsaUJBQWlCLENBQUMsdUJBQXVCLENBQUMsSUFBSSxjQUFjLENBQUMsSUFBSSxVQUFVLENBQUMsWUFBWSxvQkFBb0IsQ0FBQyxzQkFBc0IsWUFBWSxDQUFDLFFBQVEsQ0FBQyxJQUFJLGlCQUFpQixDQUFDLGVBQWUsZUFBZSxDQUFDLHNDQUFzQyxzQkFBc0IsQ0FBQyxjQUFjLENBQUMsZ0JBQWdCLENBQUMsUUFBUSxDQUFDLGFBQWEsZ0JBQWdCLENBQUMsY0FBYyxtQkFBbUIsQ0FBQywyREFBMkQseUJBQXlCLENBQUMsOEhBQThILGlCQUFpQixDQUFDLFNBQVMsQ0FBQyxrSEFBa0gsNkJBQTZCLENBQUMsU0FBUyw2QkFBNkIsQ0FBQyxPQUFPLHFCQUFxQixDQUFDLGFBQWEsQ0FBQyxhQUFhLENBQUMsY0FBYyxDQUFDLFNBQVMsQ0FBQyxrQkFBa0IsQ0FBQyxTQUFTLG9CQUFvQixDQUFDLHVCQUF1QixDQUFDLFNBQVMsYUFBYSxDQUFDLGlDQUFpQyxxQkFBcUIsQ0FBQyxTQUFTLENBQUMsc0ZBQXNGLFdBQVcsQ0FBQyxnQkFBZ0IsNEJBQTRCLENBQUMsbUJBQW1CLENBQUMseUZBQXlGLHVCQUF1QixDQUFDLDZCQUE2Qix5QkFBeUIsQ0FBQyxZQUFZLENBQUMsYUFBYSxhQUFhLENBQUMsUUFBUSxpQkFBaUIsQ0FBQyxPQUFPLG9CQUFvQixDQUFDLFNBQVMsWUFBWSxDQUFDLFNBQVMsWUFBWSxDQUFDLEtBQUsscUJBQXFCLENBQUMsbUJBQW1CLGtCQUFrQixDQUFDLEtBQUssa0JBQWtCLENBQUMsaUNBQWlDLENBQUMsa0NBQWtDLENBQUMsR0FBRyxRQUFRLENBQUMsYUFBYSxDQUFDLFVBQVUsQ0FBQyxrQkFBa0IsQ0FBQyxlQUFlLENBQUMsa0JBQWtCLENBQUMsTUFBTSxZQUFZLENBQUMsa0JBQWtCLENBQUMsaUJBQWlCLENBQUMsR0FBRyxlQUFlLENBQUMsR0FBRyxrQkFBa0IsQ0FBQyxZQUFZLGVBQWUsQ0FBQyxHQUFHLFlBQVksQ0FBQyxrQkFBa0IsQ0FBQyxHQUFHLGVBQWUsQ0FBQyxHQUFHLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLElBQUksV0FBVyxDQUFDLGNBQWMsQ0FBQyxxQkFBcUIsQ0FBQyxPQUFPLGFBQWEsQ0FBQyxXQUFXLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxhQUFhLENBQUMsUUFBUSxhQUFhLENBQUMsTUFBTSx3QkFBd0IsQ0FBQyxrQkFBa0IsQ0FBQyxVQUFVLENBQUMsR0FBRywrQkFBK0IsQ0FBQyxHQUFHLGVBQWUsQ0FBQyxNQUFNLGlCQUFpQixDQUFDLDhCQUE4QixjQUFjLENBQUMsNEJBQTRCLGVBQWUsQ0FBQyxLQUFLLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxLQUFLLGFBQWEsQ0FBQyxjQUFjLENBQUMsa0NBQWtDLHVDQUF1QyxDQUFDLEVBQUUsYUFBYSxDQUFDLHlCQUF5QixDQUFDLGlCQUFpQixTQUFTLENBQUMsb0JBQW9CLENBQUMsMENBQTBDLFVBQVUsQ0FBQyxVQUFVLENBQUMsZUFBZSxDQUFDLE9BQU8sY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLDBCQUEwQixPQUFPLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLE9BQU8sY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLDBCQUEwQixPQUFPLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLGtCQUFrQixjQUFjLENBQUMsZ0JBQWdCLENBQUMsa0JBQWtCLENBQUMsMEJBQTBCLGtCQUFrQixjQUFjLENBQUMsZ0JBQWdCLENBQUMsa0JBQWtCLENBQUMsQ0FBQyxxQkFBcUIsY0FBYyxDQUFDLGdCQUFnQixDQUFDLHFCQUFxQixDQUFDLDBCQUEwQixxQkFBcUIsY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLENBQUMsMEJBQTBCLFdBQVcsY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLFdBQVcsY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLFdBQVcsY0FBYyxDQUFDLGdCQUFnQixDQUFDLGtCQUFrQixDQUFDLGlDQUFpQyxjQUFjLENBQUMsZ0JBQWdCLENBQUMscUJBQXFCLENBQUMsQ0FBQywwTEFBMEwsZ0JBQWdCLENBQUMsU0FBUyxjQUFjLENBQUMsZ0JBQWdCLENBQUMscUJBQXFCLENBQUMsU0FBUyxjQUFjLENBQUMsZ0JBQWdCLENBQUMscUJBQXFCLENBQUMsY0FBYyxlQUFlLENBQUMsa0JBQWtCLENBQUMsT0FBTyxlQUFlLENBQUMsa0JBQWtCLENBQUMscUJBQXFCLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxFQUFFLFlBQVksQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLGlCQUFpQixDQUFDLFdBQVcsYUFBYSxDQUFDLGlCQUFpQixDQUFDLGVBQWUsQ0FBQyxrQkFBa0IsQ0FBQyxnQkFBZ0IsQ0FBQyxtQkFBbUIsZUFBZSxDQUFDLGtCQUFrQixlQUFlLENBQUMsYUFBYSxjQUFjLENBQUMsUUFBUSxhQUFhLENBQUMsa0JBQWtCLENBQUMsa0JBQWtCLENBQUMsb0JBQW9CLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQyw4RkFBOEYsa0RBQWtELENBQUMsb0JBQW9CLGtCQUFrQixDQUFDLElBQUksY0FBYyxDQUFDLGdCQUFnQixDQUFDLG1CQUFtQixDQUFDLGNBQWMsQ0FBQyxhQUFhLENBQUMsWUFBWSxDQUFDLGVBQWUsQ0FBQyxrQkFBa0IsQ0FBQyxnQkFBZ0IsMEVBQTBFLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQyxhQUFhLFdBQVcsQ0FBQyxTQUFTLG9CQUFvQixDQUFDLE1BQU0sY0FBYyxDQUFDLGdCQUFnQixDQUFDLHFCQUFxQixDQUFDLFNBQVMsZUFBZSxDQUFDLG1DQUFtQyxjQUFjLENBQUMsZ0JBQWdCLENBQUMseUJBQXlCLFVBQVUsQ0FBQyxhQUFhLENBQUMsaUJBQWlCLENBQUMsa0JBQWtCLENBQUMsMEJBQTBCLHlCQUF5QixpQkFBaUIsQ0FBQyxrQkFBa0IsQ0FBQyxDQUFDLFdBQVcsZ0JBQWdCLENBQUMsY0FBYyxlQUFlLENBQUMseUJBQXlCLGVBQWUsQ0FBQyxjQUFjLENBQUMsZUFBZSxDQUFDLG9CQUFvQiw2QkFBNkIsQ0FBQyw0QkFBNEIsQ0FBQyxVQUFVLENBQUMsU0FBUyxDQUFDLGVBQWUsQ0FBQywyQkFBMkIsQ0FBQywwQkFBMEIsaUJBQWlCLENBQUMsc0NBQXNDLENBQUMsb0JBQW9CLENBQUMsYUFBYSxDQUFDLGNBQWMsQ0FBQyxrQkFBa0IsQ0FBQyxlQUFlLENBQUMsZ0JBQWdCLENBQUMsb0JBQW9CLENBQUMsd0JBQXdCLENBQUMsd0JBQXdCLENBQUMsd0JBQXdCLENBQUMsV0FBVyxDQUFDLFdBQVcsQ0FBQyxRQUFRLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxjQUFjLENBQUMsWUFBWSxlQUFlLENBQUMsU0FBUyxDQUFDLFdBQVcsZUFBZSxDQUFDLGFBQWEsaUJBQWlCLENBQUMsWUFBWSxnQkFBZ0IsQ0FBQyxjQUFjLGFBQWEsQ0FBQyxpQkFBaUIsaUJBQWlCLENBQUMseUJBQXlCLFVBQVUsQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsTUFBTSxDQUFDLFVBQVUsQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUFDLGtCQUFrQixDQUFDLG9CQUFvQixpQkFBaUIsQ0FBQywyQkFBMkIsVUFBVSxDQUFDLGlCQUFpQixDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLGFBQWEsQ0FBQyxVQUFVLENBQUMsa0JBQWtCLENBQUMsS0FBSyxRQUFRLENBQUMsTUFBTSxZQUFZLENBQUMsTUFBTSxjQUFjLENBQUMsTUFBTSxlQUFlLENBQUMsTUFBTSxhQUFhLENBQUMsS0FBSyxVQUFVLENBQUMsTUFBTSxjQUFjLENBQUMsTUFBTSxnQkFBZ0IsQ0FBQyxNQUFNLGlCQUFpQixDQUFDLE1BQU0sZUFBZSxDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE1BQU0sV0FBVyxDQUFDLE9BQU8sZUFBZSxDQUFDLE9BQU8saUJBQWlCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLGdCQUFnQixDQUFDLEtBQUssU0FBUyxDQUFDLE1BQU0sYUFBYSxDQUFDLE1BQU0sZUFBZSxDQUFDLE1BQU0sZ0JBQWdCLENBQUMsTUFBTSxjQUFjLENBQUMsS0FBSyxXQUFXLENBQUMsTUFBTSxlQUFlLENBQUMsTUFBTSxpQkFBaUIsQ0FBQyxNQUFNLGtCQUFrQixDQUFDLE1BQU0sZ0JBQWdCLENBQUMsTUFBTSxZQUFZLENBQUMsT0FBTyxnQkFBZ0IsQ0FBQyxPQUFPLGtCQUFrQixDQUFDLE9BQU8sbUJBQW1CLENBQUMsT0FBTyxpQkFBaUIsQ0FBQyxNQUFNLFlBQVksQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE9BQU8sa0JBQWtCLENBQUMsT0FBTyxtQkFBbUIsQ0FBQyxPQUFPLGlCQUFpQixDQUFDLE1BQU0sWUFBWSxDQUFDLE9BQU8sZ0JBQWdCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLG1CQUFtQixDQUFDLE9BQU8saUJBQWlCLENBQUMsTUFBTSxZQUFZLENBQUMsT0FBTyxnQkFBZ0IsQ0FBQyxPQUFPLGtCQUFrQixDQUFDLE9BQU8sbUJBQW1CLENBQUMsT0FBTyxpQkFBaUIsQ0FBQyxNQUFNLFlBQVksQ0FBQyxPQUFPLGdCQUFnQixDQUFDLE9BQU8sa0JBQWtCLENBQUMsT0FBTyxtQkFBbUIsQ0FBQyxPQUFPLGlCQUFpQixDQUFDLE1BQU0sWUFBWSxDQUFDLE9BQU8sZ0JBQWdCLENBQUMsT0FBTyxrQkFBa0IsQ0FBQyxPQUFPLG1CQUFtQixDQUFDLE9BQU8saUJBQWlCLENBQUMsTUFBTSxZQUFZLENBQUMsT0FBTyxnQkFBZ0IsQ0FBQyxPQUFPLGtCQUFrQixDQUFDLE9BQU8sbUJBQW1CLENBQUMsT0FBTyxpQkFBaUIsQ0FBQyxrQ0FBa0MsaUJBQWlCLENBQUMsK0JBQStCLGlCQUFpQixDQUFDLDRDQUE0QyxrQkFBa0IsQ0FBQyxpQkFBaUIscUJBQXFCLENBQUMsZ0JBQWdCLENBQUMsa0JBQWtCLENBQUMsb0JBQW9CLENBQUMsaUJBQWlCLENBQUMsYUFBYSxDQUFDLGNBQWMsQ0FBQyxVQUFVLENBQUMsc0RBQTJDLGFBQWEsQ0FBeEQsMkNBQTJDLGFBQWEsQ0FBQywrREFBK0QsYUFBYSxDQUFDLDZEQUE2RCxhQUFhLENBQUMsNkJBQTZCLG9CQUFvQixDQUFDLDREQUE0RCxZQUFZLENBQUMsb0JBQW9CLENBQUMscUNBQXFDLGtCQUFrQixDQUFDLHdCQUF3QixDQUFDLG9CQUFvQixDQUFDLE9BQU8sb0JBQW9CLENBQUMsdUJBQXVCLENBQUMsY0FBYyxDQUFDLHFCQUFxQixDQUFDLGdCQUFnQixDQUFDLGlCQUFpQixDQUFDLFdBQVcsQ0FBQyxlQUFlLENBQUMscUJBQXFCLGNBQWMsQ0FBQyxVQUFVLENBQUMsVUFBVSxhQUFhLENBQUMsY0FBYyxDQUFDLGVBQWUsQ0FBQywyQkFBMkIsY0FBYyxDQUFDLFVBQVUsQ0FBQyx5Q0FBeUMsaUJBQWlCLENBQUMsMEJBQTBCLGVBQWUsWUFBWSxDQUFDLHdCQUF3QixhQUFhLENBQUMseUNBQXlDLFdBQVcsQ0FBQyxhQUFhLENBQUMseUNBQXlDLGVBQWUsQ0FBQyxnQkFBZ0IsQ0FBQyxDQUFDLFFBQVEsbUJBQW1CLENBQUMsY0FBYyxDQUFDLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxnQkFBZ0IsQ0FBQywrQkFBK0IsQ0FBQyx3QkFBd0IsQ0FBQyx3QkFBd0IsQ0FBQyxxQkFBcUIsQ0FBQyxXQUFXLENBQUMsaUJBQWlCLENBQUMsY0FBYyxDQUFDLHNCQUFzQixDQUFDLGlCQUFpQixDQUFDLFdBQVcsQ0FBQyxpQkFBaUIsQ0FBQyxrQkFBa0IsQ0FBQyxjQUFjLGtCQUFrQixDQUFDLGVBQWUsU0FBUyxDQUFDLGdCQUFnQixpQkFBaUIsQ0FBQyxXQUFXLGdCQUFnQixDQUFDLFdBQVcsQ0FBQyxnQkFBZ0Isa0JBQWtCLENBQUMsMERBQTBELENBQUMsc0JBQXNCLGtCQUFrQixDQUFDLDBEQUEwRCxDQUFDLGNBQWMsWUFBWSxDQUFDLGNBQWMsWUFBWSxDQUFDLFVBQVUsQ0FBQywwQkFBMEIsb0JBQW9CLFVBQVUsQ0FBQyxlQUFlLENBQUMsQ0FBQyxhQUFhLGNBQWMsQ0FBQyxtQkFBbUIsaUJBQWlCLENBQUMsWUFBWSxDQUFDLDZCQUE2QixDQUFDLGtCQUFrQixDQUFDLGNBQWMsbUJBQW1CLENBQUMsaUJBQWlCLG1CQUFtQixDQUFDLDZCQUE2QixjQUFjLENBQUMsZ0JBQWdCLENBQUMscUJBQXFCLENBQUMsZUFBZSxDQUFDLGFBQWEsQ0FBQyx3QkFBd0IsQ0FBQyxvQkFBb0IsQ0FBQyxnQkFBZ0IsQ0FBQyxnQkFBZ0IsQ0FBQywwQkFBMEIsYUFBYSxpQkFBaUIsQ0FBQyxxQkFBcUIsVUFBVSxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxNQUFNLENBQUMsVUFBVSxDQUFDLFlBQVksQ0FBQyxrQkFBa0IsQ0FBQywrRUFBK0UsQ0FBNEIsa0JBQWtCLENBQWlDLHVCQUF1QixDQUFDLENBQUMsTUFBTSxpQkFBaUIsQ0FBQyxnQkFBZ0IsQ0FBQyxtQkFBbUIsQ0FBQyxXQUFXLGlCQUFpQixDQUFDLFNBQVMsQ0FBQyxVQUFVLGtCQUFrQixDQUFDLGFBQWEsaUJBQWlCLENBQUMsaUJBQWlCLFVBQVUsQ0FBQyxXQUFXLENBQUMseUNBQXlDLFVBQVUsQ0FBQyxpQkFBaUIsQ0FBQywyQkFBMkIsQ0FBQyxvQkFBb0IsQ0FBQyx5RUFBeUUsU0FBUyxDQUFDLDBCQUEwQixDQUFDLG1HQUFtRyxTQUFTLENBQUMscUJBQXFCLFVBQVUsQ0FBQyxVQUFVLENBQUMsYUFBYSxDQUFDLGNBQWMsQ0FBQyw0REFBNEQsQ0FBQyxvQkFBb0IsVUFBVSxDQUFDLFVBQVUsQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUFDLDJEQUEyRCxDQUFDLGlCQUFpQixpQkFBaUIsQ0FBQyxLQUFLLENBQUMscUJBQXFCLENBQUMsd0hBQXdILGVBQWUsQ0FBQyx3S0FBd0ssVUFBVSxDQUFDLGlCQUFpQixDQUFDLEtBQUssQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUFDLE9BQU8sQ0FBQywwQkFBMEIsQ0FBQyxvQkFBb0IsV0FBVyxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLG1FQUFtRSxDQUFDLHdCQUF3QixDQUFDLDRCQUE0QixxRUFBcUUsQ0FBQyxtQ0FBbUMsQ0FBQyxvQkFBb0IsVUFBVSxDQUFDLFNBQVMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLG1FQUFtRSxDQUFDLHlCQUF5QixDQUFDLDRCQUE0QixvRUFBb0UsQ0FBQyxvQ0FBb0MsQ0FBQyxvQkFBb0IsVUFBVSxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLG1FQUFtRSxDQUFDLDRCQUE0QixxRUFBcUUsQ0FBQyxtQ0FBbUMsQ0FBQyxvQkFBb0IsVUFBVSxDQUFDLE9BQU8sQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDLG1FQUFtRSxDQUFDLDBCQUEwQixDQUFDLDRCQUE0QixzRkFBc0YsQ0FBQyxvQ0FBb0MsQ0FBQyw0REFBNEQsd0JBQXdCLENBQUMsMkNBQTJDLENBQUMsb0JBQW9CLFVBQVUsQ0FBQyxTQUFTLENBQUMsU0FBUyxDQUFDLFlBQVksQ0FBQyx5RUFBeUUsQ0FBQyxvQkFBb0IsVUFBVSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQUMsWUFBWSxDQUFDLHdCQUF3QixDQUFDLG9CQUFvQixTQUFTLENBQUMsU0FBUyxDQUFDLFlBQVksQ0FBQyxhQUFhLENBQUMsd0JBQXdCLENBQUMsb0JBQW9CLFVBQVUsQ0FBQyxTQUFTLENBQUMsWUFBWSxDQUFDLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQyx5QkFBeUIsQ0FBQyw0QkFBNEIsd0ZBQXdGLENBQUMsbUNBQW1DLENBQUMsb0JBQW9CLFVBQVUsQ0FBQyxVQUFVLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQyxrQkFBa0IsQ0FBQyx5QkFBeUIsQ0FBQyw0QkFBNEIsd0ZBQXdGLENBQUMsbUNBQW1DLENBQUMsb0JBQW9CLFVBQVUsQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQywrQkFBK0IsQ0FBQyx5QkFBeUIsQ0FBQywwQkFBMEIsVUFBVSxlQUFlLENBQUMsZ0JBQWdCLENBQUMsaUJBQWlCLENBQUMsa0JBQWtCLFlBQVksQ0FBQywwQkFBMEIsZUFBZSxDQUFDLGdGQUFnRixZQUFZLENBQUMsQ0FBQywwQkFBMEIsTUFBTSxlQUFlLENBQUMsZ0JBQWdCLENBQUMsbUJBQW1CLENBQUMsWUFBWSxZQUFZLENBQUMsNkJBQTZCLENBQUMsa0JBQWtCLENBQUMsV0FBVyxrQkFBa0IsQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLFVBQVUsUUFBUSxDQUFDLGtCQUFrQixlQUFlLENBQUMsOEJBQThCLGlCQUFpQixDQUFDLGlCQUFpQixVQUFVLENBQUMsQ0FBQyxlQUFlLFlBQVksQ0FBQyxjQUFjLENBQUMsNEJBQTRCLENBQUMsa0JBQWtCLENBQUMsaUJBQWlCLENBQUMsNkJBQTZCLGdCQUFnQixDQUFDLDRCQUE0QixtQkFBbUIsQ0FBQyxTQUFTLGlCQUFpQixDQUFDLFdBQVcsQ0FBQyxlQUFlLENBQUMsV0FBVyxDQUFDLGVBQWUsV0FBVyxDQUFDLGNBQWMsWUFBWSxDQUFDLHNCQUFzQixDQUFDLDBCQUEwQiw2QkFBNkIsZ0JBQWdCLENBQUMsNEJBQTRCLG1CQUFtQixDQUFDLFNBQVMsaUJBQWlCLENBQUMsQ0FBQyxnQkFBZ0Isa0JBQWtCLENBQUMscUJBQXFCLFlBQVksQ0FBQyxjQUFjLENBQUMsc0JBQXNCLENBQUMsa0JBQWtCLENBQUMsaUJBQWlCLENBQUMsaUNBQWlDLGdCQUFnQixDQUFDLGdDQUFnQyxtQkFBbUIsQ0FBQyxlQUFlLGlCQUFpQixDQUFDLFlBQVksQ0FBQyxXQUFXLENBQUMsZUFBZSxDQUFDLFdBQVcsQ0FBQyx1QkFBdUIsVUFBVSxDQUFDLGlCQUFpQixDQUFDLFFBQVEsQ0FBQyxVQUFVLENBQUMsY0FBYyxDQUFDLFlBQVksQ0FBQywyQkFBMkIsQ0FBQywwQkFBMEIsQ0FBQyxvQkFBb0IsQ0FBQyxZQUFZLENBQW9DLDBCQUEwQixDQUFDLDBEQUEwRCxDQUFDLCtFQUErRSw4Q0FBOEMsQ0FBQyxxQkFBcUIsaUJBQWlCLENBQUMsWUFBWSxDQUFDLGNBQWMsQ0FBQyxrQkFBa0IsQ0FBQyxZQUFZLENBQUMsV0FBVyxDQUFDLHVCQUF1QixpQkFBaUIsQ0FBQyxVQUFVLENBQUMsNkJBQTZCLFVBQVUsQ0FBQyxpQkFBaUIsQ0FBQyxLQUFLLENBQUMsT0FBTyxDQUFDLFFBQVEsQ0FBQyxNQUFNLENBQUMsMENBQTBDLENBQUMsdUJBQXVCLENBQUMsOEJBQThCLGFBQWEsQ0FBQyw4QkFBOEIsVUFBVSxDQUFDLGVBQWUsQ0FBQywyQkFBMkIsWUFBWSxDQUFDLGtCQUFrQixDQUFDLGNBQWMsQ0FBQyxtQ0FBbUMsVUFBVSxDQUFDLFVBQVUsQ0FBQyxXQUFXLENBQUMsaUJBQWlCLENBQUMsb1FBQW9RLENBQUMsMkJBQTJCLENBQUMsbUJBQW1CLG1CQUFtQixDQUFDLDBCQUEwQiw0QkFBNEIsaUJBQWlCLENBQUMsa0JBQWtCLENBQUMsZ0JBQWdCLGtCQUFrQixDQUFDLENBQUMsS0FBSyxpQkFBaUIsQ0FBQyxvQkFBb0IsaUJBQWlCLENBQUMsb0JBQW9CLGtCQUFrQixDQUFDLFdBQVcsaUJBQWlCLENBQUMsa0JBQWtCLENBQUMsZUFBZSxDQUFDLG1CQUFtQixVQUFVLENBQUMsaUJBQWlCLENBQUMsVUFBVSxDQUFDLFVBQVUsQ0FBQyxXQUFXLENBQUMsWUFBWSxDQUFDLHNEQUFzRCxDQUFDLDJCQUEyQixDQUFDLGFBQWEsaUJBQWlCLENBQUMsMEJBQTBCLEtBQUssZUFBZSxDQUFDLG9CQUFvQixpQkFBaUIsQ0FBQyxvQkFBb0IsZUFBZSxDQUFDLGtCQUFrQixDQUFDLFdBQVcsWUFBWSxDQUFDLGtCQUFrQixDQUFDLDZCQUE2QixDQUFDLENBQUMsVUFBVSxrQkFBa0IsQ0FBQyxXQUFXLGtCQUFrQixDQUFDLGVBQWUsQ0FBQyxZQUFZLENBQUMscUJBQXFCLENBQUMsZ0JBQWdCLENBQUMsaUJBQWlCLGdCQUFnQixDQUFDLGFBQWEsQ0FBQywwQ0FBMEMsQ0FBQyx1QkFBdUIsQ0FBQyxxQkFBcUIsQ0FBQyxLQUFLLGFBQWEsQ0FBQyxlQUFlLGlCQUFpQixDQUFDLGdCQUFnQixDQUFDLG1CQUFtQixDQUFDLDBCQUEwQixlQUFlLGdCQUFnQixDQUFDLG1CQUFtQixDQUFDLENBQUMsYUFBYSxjQUFjLENBQUMsZ0JBQWdCLENBQUMsa0JBQWtCLENBQUMsZUFBZSxhQUFhLENBQUMsb0JBQW9CLENBQUMsMkNBQTJDLHlCQUF5QixDQUFDLG1CQUFtQixpQkFBaUIsQ0FBQyxZQUFZLENBQUMsY0FBYyxDQUFDLGdCQUFnQixDQUFDLG1CQUFtQixDQUFDLG1FQUFtRSxTQUFTLENBQUMsVUFBVSxDQUFDLG1CQUFtQixDQUFDLHNCQUFzQixDQUFDLGlEQUFpRCxrQkFBa0IsQ0FBQyx3QkFBd0IsbUJBQW1CLENBQUMsMkJBQTJCLGdCQUFnQixDQUFDLDBCQUEwQixXQUFXLENBQUMsb0JBQW9CLGdCQUFnQixDQUFDLDBCQUEwQixhQUFhLGVBQWUsQ0FBQyxtQkFBbUIsNkJBQTZCLENBQUMsZ0JBQWdCLENBQUMsbUJBQW1CLENBQUMsbUVBQW1FLFFBQVEsQ0FBQyxnQ0FBZ0MsMEJBQTBCLENBQUMsbUNBQW1DLHdCQUF3QixDQUFDLGNBQWMsT0FBTyxDQUFDLGVBQWUsQ0FBQyIsImZpbGUiOiJzdHlsZS5jc3MiLCJzb3VyY2VzQ29udGVudCI6WyJodG1se2xpbmUtaGVpZ2h0OjEuMTU7LW1zLXRleHQtc2l6ZS1hZGp1c3Q6MTAwJTstd2Via2l0LXRleHQtc2l6ZS1hZGp1c3Q6MTAwJX1ib2R5e21hcmdpbjowfWFydGljbGUsYXNpZGUsZm9vdGVyLGhlYWRlcixuYXYsc2VjdGlvbntkaXNwbGF5OmJsb2NrfWgxe2ZvbnQtc2l6ZToyZW07bWFyZ2luOjAuNjdlbSAwfWZpZ2NhcHRpb24sZmlndXJlLG1haW57ZGlzcGxheTpibG9ja31maWd1cmV7bWFyZ2luOjFlbSA0MHB4fWhye2JveC1zaXppbmc6Y29udGVudC1ib3g7aGVpZ2h0OjA7b3ZlcmZsb3c6dmlzaWJsZX1wcmV7Zm9udC1mYW1pbHk6bW9ub3NwYWNlLCBtb25vc3BhY2U7Zm9udC1zaXplOjFlbX1he2JhY2tncm91bmQtY29sb3I6dHJhbnNwYXJlbnQ7LXdlYmtpdC10ZXh0LWRlY29yYXRpb24tc2tpcDpvYmplY3RzfWFiYnJbdGl0bGVde2JvcmRlci1ib3R0b206bm9uZTt0ZXh0LWRlY29yYXRpb246dW5kZXJsaW5lO3RleHQtZGVjb3JhdGlvbjp1bmRlcmxpbmUgZG90dGVkfWIsc3Ryb25ne2ZvbnQtd2VpZ2h0OmluaGVyaXR9YixzdHJvbmd7Zm9udC13ZWlnaHQ6Ym9sZGVyfWNvZGUsa2JkLHNhbXB7Zm9udC1mYW1pbHk6bW9ub3NwYWNlLCBtb25vc3BhY2U7Zm9udC1zaXplOjFlbX1kZm57Zm9udC1zdHlsZTppdGFsaWN9bWFya3tiYWNrZ3JvdW5kLWNvbG9yOiNmZjA7Y29sb3I6IzAwMH1zbWFsbHtmb250LXNpemU6ODAlfXN1YixzdXB7Zm9udC1zaXplOjc1JTtsaW5lLWhlaWdodDowO3Bvc2l0aW9uOnJlbGF0aXZlO3ZlcnRpY2FsLWFsaWduOmJhc2VsaW5lfXN1Yntib3R0b206LTAuMjVlbX1zdXB7dG9wOi0wLjVlbX1hdWRpbyx2aWRlb3tkaXNwbGF5OmlubGluZS1ibG9ja31hdWRpbzpub3QoW2NvbnRyb2xzXSl7ZGlzcGxheTpub25lO2hlaWdodDowfWltZ3tib3JkZXItc3R5bGU6bm9uZX1zdmc6bm90KDpyb290KXtvdmVyZmxvdzpoaWRkZW59YnV0dG9uLGlucHV0LG9wdGdyb3VwLHNlbGVjdCx0ZXh0YXJlYXtmb250LWZhbWlseTpzYW5zLXNlcmlmO2ZvbnQtc2l6ZToxMDAlO2xpbmUtaGVpZ2h0OjEuMTU7bWFyZ2luOjB9YnV0dG9uLGlucHV0e292ZXJmbG93OnZpc2libGV9YnV0dG9uLHNlbGVjdHt0ZXh0LXRyYW5zZm9ybTpub25lfWJ1dHRvbixodG1sIFt0eXBlPVwiYnV0dG9uXCJdLFt0eXBlPVwicmVzZXRcIl0sW3R5cGU9XCJzdWJtaXRcIl17LXdlYmtpdC1hcHBlYXJhbmNlOmJ1dHRvbn1idXR0b246Oi1tb3otZm9jdXMtaW5uZXIsW3R5cGU9XCJidXR0b25cIl06Oi1tb3otZm9jdXMtaW5uZXIsW3R5cGU9XCJyZXNldFwiXTo6LW1vei1mb2N1cy1pbm5lcixbdHlwZT1cInN1Ym1pdFwiXTo6LW1vei1mb2N1cy1pbm5lcntib3JkZXItc3R5bGU6bm9uZTtwYWRkaW5nOjB9YnV0dG9uOi1tb3otZm9jdXNyaW5nLFt0eXBlPVwiYnV0dG9uXCJdOi1tb3otZm9jdXNyaW5nLFt0eXBlPVwicmVzZXRcIl06LW1vei1mb2N1c3JpbmcsW3R5cGU9XCJzdWJtaXRcIl06LW1vei1mb2N1c3Jpbmd7b3V0bGluZToxcHggZG90dGVkIEJ1dHRvblRleHR9ZmllbGRzZXR7cGFkZGluZzowLjM1ZW0gMC43NWVtIDAuNjI1ZW19bGVnZW5ke2JveC1zaXppbmc6Ym9yZGVyLWJveDtjb2xvcjppbmhlcml0O2Rpc3BsYXk6dGFibGU7bWF4LXdpZHRoOjEwMCU7cGFkZGluZzowO3doaXRlLXNwYWNlOm5vcm1hbH1wcm9ncmVzc3tkaXNwbGF5OmlubGluZS1ibG9jazt2ZXJ0aWNhbC1hbGlnbjpiYXNlbGluZX10ZXh0YXJlYXtvdmVyZmxvdzphdXRvfVt0eXBlPVwiY2hlY2tib3hcIl0sW3R5cGU9XCJyYWRpb1wiXXtib3gtc2l6aW5nOmJvcmRlci1ib3g7cGFkZGluZzowfVt0eXBlPVwibnVtYmVyXCJdOjotd2Via2l0LWlubmVyLXNwaW4tYnV0dG9uLFt0eXBlPVwibnVtYmVyXCJdOjotd2Via2l0LW91dGVyLXNwaW4tYnV0dG9ue2hlaWdodDphdXRvfVt0eXBlPVwic2VhcmNoXCJdey13ZWJraXQtYXBwZWFyYW5jZTp0ZXh0ZmllbGQ7b3V0bGluZS1vZmZzZXQ6LTJweH1bdHlwZT1cInNlYXJjaFwiXTo6LXdlYmtpdC1zZWFyY2gtY2FuY2VsLWJ1dHRvbixbdHlwZT1cInNlYXJjaFwiXTo6LXdlYmtpdC1zZWFyY2gtZGVjb3JhdGlvbnstd2Via2l0LWFwcGVhcmFuY2U6bm9uZX06Oi13ZWJraXQtZmlsZS11cGxvYWQtYnV0dG9uey13ZWJraXQtYXBwZWFyYW5jZTpidXR0b247Zm9udDppbmhlcml0fWRldGFpbHMsbWVudXtkaXNwbGF5OmJsb2NrfXN1bW1hcnl7ZGlzcGxheTpsaXN0LWl0ZW19Y2FudmFze2Rpc3BsYXk6aW5saW5lLWJsb2NrfXRlbXBsYXRle2Rpc3BsYXk6bm9uZX1baGlkZGVuXXtkaXNwbGF5Om5vbmV9aHRtbHtib3gtc2l6aW5nOmJvcmRlci1ib3h9KiwqOmJlZm9yZSwqOmFmdGVye2JveC1zaXppbmc6aW5oZXJpdH1ib2R5e2JhY2tncm91bmQ6IzFEMjAyNjstbW96LW9zeC1mb250LXNtb290aGluZzpncmF5c2NhbGU7LXdlYmtpdC1mb250LXNtb290aGluZzphbnRpYWxpYXNlZH1ocntib3JkZXI6MDtkaXNwbGF5OmJsb2NrO2hlaWdodDoxcHg7YmFja2dyb3VuZDojMjQyODMwO21hcmdpbi10b3A6MjRweDttYXJnaW4tYm90dG9tOjI0cHh9dWwsb2x7bWFyZ2luLXRvcDowO21hcmdpbi1ib3R0b206MjRweDtwYWRkaW5nLWxlZnQ6MjRweH11bHtsaXN0LXN0eWxlOmRpc2N9b2x7bGlzdC1zdHlsZTpkZWNpbWFsfWxpPnVsLGxpPm9se21hcmdpbi1ib3R0b206MH1kbHttYXJnaW4tdG9wOjA7bWFyZ2luLWJvdHRvbToyNHB4fWR0e2ZvbnQtd2VpZ2h0OjYwMH1kZHttYXJnaW4tbGVmdDoyNHB4O21hcmdpbi1ib3R0b206MjRweH1pbWd7aGVpZ2h0OmF1dG87bWF4LXdpZHRoOjEwMCU7dmVydGljYWwtYWxpZ246bWlkZGxlfWZpZ3VyZXttYXJnaW46MjRweCAwfWZpZ2NhcHRpb257Zm9udC1zaXplOjE2cHg7bGluZS1oZWlnaHQ6MjRweDtwYWRkaW5nOjhweCAwfWltZyxzdmd7ZGlzcGxheTpibG9ja310YWJsZXtib3JkZXItY29sbGFwc2U6Y29sbGFwc2U7bWFyZ2luLWJvdHRvbToyNHB4O3dpZHRoOjEwMCV9dHJ7Ym9yZGVyLWJvdHRvbToxcHggc29saWQgIzI0MjgzMH10aHt0ZXh0LWFsaWduOmxlZnR9dGgsdGR7cGFkZGluZzoxMHB4IDE2cHh9dGg6Zmlyc3QtY2hpbGQsdGQ6Zmlyc3QtY2hpbGR7cGFkZGluZy1sZWZ0OjB9dGg6bGFzdC1jaGlsZCx0ZDpsYXN0LWNoaWxke3BhZGRpbmctcmlnaHQ6MH1odG1se2ZvbnQtc2l6ZToyMHB4O2xpbmUtaGVpZ2h0OjMwcHh9Ym9keXtjb2xvcjojOEE5NEE3O2ZvbnQtc2l6ZToxcmVtfWJvZHksYnV0dG9uLGlucHV0LHNlbGVjdCx0ZXh0YXJlYXtmb250LWZhbWlseTpcIklCTSBQbGV4IFNhbnNcIiwgc2Fucy1zZXJpZn1he2NvbG9yOiM4QTk0QTc7dGV4dC1kZWNvcmF0aW9uOnVuZGVybGluZX1hOmhvdmVyLGE6YWN0aXZle291dGxpbmU6MDt0ZXh0LWRlY29yYXRpb246bm9uZX1oMSxoMixoMyxoNCxoNSxoNiwuaDEsLmgyLC5oMywuaDQsLmg1LC5oNntjbGVhcjpib3RoO2NvbG9yOiNmZmY7Zm9udC13ZWlnaHQ6NjAwfWgxLC5oMXtmb250LXNpemU6MzhweDtsaW5lLWhlaWdodDo0OHB4O2xldHRlci1zcGFjaW5nOjBweH1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpe2gxLC5oMXtmb250LXNpemU6NDRweDtsaW5lLWhlaWdodDo1NHB4O2xldHRlci1zcGFjaW5nOjBweH19aDIsLmgye2ZvbnQtc2l6ZTozMnB4O2xpbmUtaGVpZ2h0OjQycHg7bGV0dGVyLXNwYWNpbmc6MHB4fUBtZWRpYSAobWluLXdpZHRoOiA2NDFweCl7aDIsLmgye2ZvbnQtc2l6ZTozOHB4O2xpbmUtaGVpZ2h0OjQ4cHg7bGV0dGVyLXNwYWNpbmc6MHB4fX1oMywuaDMsYmxvY2txdW90ZXtmb250LXNpemU6MjRweDtsaW5lLWhlaWdodDozNHB4O2xldHRlci1zcGFjaW5nOjBweH1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpe2gzLC5oMyxibG9ja3F1b3Rle2ZvbnQtc2l6ZTozMnB4O2xpbmUtaGVpZ2h0OjQycHg7bGV0dGVyLXNwYWNpbmc6MHB4fX1oNCxoNSxoNiwuaDQsLmg1LC5oNntmb250LXNpemU6MjBweDtsaW5lLWhlaWdodDozMHB4O2xldHRlci1zcGFjaW5nOi0wLjFweH1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpe2g0LGg1LGg2LC5oNCwuaDUsLmg2e2ZvbnQtc2l6ZToyNHB4O2xpbmUtaGVpZ2h0OjM0cHg7bGV0dGVyLXNwYWNpbmc6MHB4fX1AbWVkaWEgKG1heC13aWR0aDogNjQwcHgpey5oMS1tb2JpbGV7Zm9udC1zaXplOjM4cHg7bGluZS1oZWlnaHQ6NDhweDtsZXR0ZXItc3BhY2luZzowcHh9LmgyLW1vYmlsZXtmb250LXNpemU6MzJweDtsaW5lLWhlaWdodDo0MnB4O2xldHRlci1zcGFjaW5nOjBweH0uaDMtbW9iaWxle2ZvbnQtc2l6ZToyNHB4O2xpbmUtaGVpZ2h0OjM0cHg7bGV0dGVyLXNwYWNpbmc6MHB4fS5oNC1tb2JpbGUsLmg1LW1vYmlsZSwuaDYtbW9iaWxle2ZvbnQtc2l6ZToyMHB4O2xpbmUtaGVpZ2h0OjMwcHg7bGV0dGVyLXNwYWNpbmc6LTAuMXB4fX0udGV4dC1saWdodCBoMSwudGV4dC1saWdodCBoMiwudGV4dC1saWdodCBoMywudGV4dC1saWdodCBoNCwudGV4dC1saWdodCBoNSwudGV4dC1saWdodCBoNiwudGV4dC1saWdodCAuaDEsLnRleHQtbGlnaHQgLmgyLC50ZXh0LWxpZ2h0IC5oMywudGV4dC1saWdodCAuaDQsLnRleHQtbGlnaHQgLmg1LC50ZXh0LWxpZ2h0IC5oNntjb2xvcjohaW1wb3J0YW50fS50ZXh0LXNte2ZvbnQtc2l6ZToxOHB4O2xpbmUtaGVpZ2h0OjI4cHg7bGV0dGVyLXNwYWNpbmc6LTAuMXB4fS50ZXh0LXhze2ZvbnQtc2l6ZToxNnB4O2xpbmUtaGVpZ2h0OjI0cHg7bGV0dGVyLXNwYWNpbmc6LTAuMXB4fWgxLGgyLC5oMSwuaDJ7bWFyZ2luLXRvcDo0OHB4O21hcmdpbi1ib3R0b206MTZweH1oMywuaDN7bWFyZ2luLXRvcDozNnB4O21hcmdpbi1ib3R0b206MTJweH1oNCxoNSxoNiwuaDQsLmg1LC5oNnttYXJnaW4tdG9wOjI0cHg7bWFyZ2luLWJvdHRvbTo0cHh9cHttYXJnaW4tdG9wOjA7bWFyZ2luLWJvdHRvbToyNHB4fWRmbixjaXRlLGVtLGl7Zm9udC1zdHlsZTppdGFsaWN9YmxvY2txdW90ZXtjb2xvcjojM0I0MDRDO2ZvbnQtc3R5bGU6aXRhbGljO21hcmdpbi10b3A6MjRweDttYXJnaW4tYm90dG9tOjI0cHg7bWFyZ2luLWxlZnQ6MjRweH1ibG9ja3F1b3RlOjpiZWZvcmV7Y29udGVudDpcIlxcMjAxQ1wifWJsb2NrcXVvdGU6OmFmdGVye2NvbnRlbnQ6XCJcXDIwMURcIn1ibG9ja3F1b3RlIHB7ZGlzcGxheTppbmxpbmV9YWRkcmVzc3tjb2xvcjojOEE5NEE3O2JvcmRlci13aWR0aDoxcHggMDtib3JkZXItc3R5bGU6c29saWQ7Ym9yZGVyLWNvbG9yOiMyNDI4MzA7cGFkZGluZzoyNHB4IDA7bWFyZ2luOjAgMCAyNHB4fXByZSxwcmUgaDEscHJlIGgyLHByZSBoMyxwcmUgaDQscHJlIGg1LHByZSBoNixwcmUgLmgxLHByZSAuaDIscHJlIC5oMyxwcmUgLmg0LHByZSAuaDUscHJlIC5oNntmb250LWZhbWlseTpcIkNvdXJpZXIgMTAgUGl0Y2hcIiwgQ291cmllciwgbW9ub3NwYWNlfXByZSxjb2RlLGtiZCx0dCx2YXJ7YmFja2dyb3VuZDojMUQyMDI2fXByZXtmb250LXNpemU6MTZweDtsaW5lLWhlaWdodDoyNHB4O21hcmdpbi1ib3R0b206MS42ZW07bWF4LXdpZHRoOjEwMCU7b3ZlcmZsb3c6YXV0bztwYWRkaW5nOjI0cHg7bWFyZ2luLXRvcDoyNHB4O21hcmdpbi1ib3R0b206MjRweH1jb2RlLGtiZCx0dCx2YXJ7Zm9udC1mYW1pbHk6TW9uYWNvLCBDb25zb2xhcywgXCJBbmRhbGUgTW9ub1wiLCBcIkRlamFWdSBTYW5zIE1vbm9cIiwgbW9ub3NwYWNlO2ZvbnQtc2l6ZToxNnB4O3BhZGRpbmc6MnB4IDRweH1hYmJyLGFjcm9ueW17Y3Vyc29yOmhlbHB9bWFyayxpbnN7dGV4dC1kZWNvcmF0aW9uOm5vbmV9c21hbGx7Zm9udC1zaXplOjE4cHg7bGluZS1oZWlnaHQ6MjhweDtsZXR0ZXItc3BhY2luZzotMC4xcHh9YixzdHJvbmd7Zm9udC13ZWlnaHQ6NjAwfWJ1dHRvbixpbnB1dCxzZWxlY3QsdGV4dGFyZWEsbGFiZWx7Zm9udC1zaXplOjIwcHg7bGluZS1oZWlnaHQ6MzBweH0uY29udGFpbmVyLC5jb250YWluZXItc217d2lkdGg6MTAwJTttYXJnaW46MCBhdXRvO3BhZGRpbmctbGVmdDoxNnB4O3BhZGRpbmctcmlnaHQ6MTZweH1AbWVkaWEgKG1pbi13aWR0aDogNDgxcHgpey5jb250YWluZXIsLmNvbnRhaW5lci1zbXtwYWRkaW5nLWxlZnQ6MjRweDtwYWRkaW5nLXJpZ2h0OjI0cHh9fS5jb250YWluZXJ7bWF4LXdpZHRoOjExMjhweH0uY29udGFpbmVyLXNte21heC13aWR0aDo4NDhweH0uY29udGFpbmVyIC5jb250YWluZXItc217bWF4LXdpZHRoOjgwMHB4O3BhZGRpbmctbGVmdDowO3BhZGRpbmctcmlnaHQ6MH0uc2NyZWVuLXJlYWRlci10ZXh0e2NsaXA6cmVjdCgxcHgsIDFweCwgMXB4LCAxcHgpO3Bvc2l0aW9uOmFic29sdXRlICFpbXBvcnRhbnQ7aGVpZ2h0OjFweDt3aWR0aDoxcHg7b3ZlcmZsb3c6aGlkZGVuO3dvcmQtd3JhcDpub3JtYWwgIWltcG9ydGFudH0uc2NyZWVuLXJlYWRlci10ZXh0OmZvY3Vze2JvcmRlci1yYWRpdXM6MnB4O2JveC1zaGFkb3c6MCAwIDJweCAycHggcmdiYSgwLDAsMCwwLjYpO2NsaXA6YXV0byAhaW1wb3J0YW50O2Rpc3BsYXk6YmxvY2s7Zm9udC1zaXplOjE0cHg7bGV0dGVyLXNwYWNpbmc6MHB4O2ZvbnQtd2VpZ2h0OjYwMDtsaW5lLWhlaWdodDoxNnB4O3RleHQtZGVjb3JhdGlvbjpub25lO3RleHQtdHJhbnNmb3JtOnVwcGVyY2FzZTtiYWNrZ3JvdW5kLWNvbG9yOiMxRDIwMjY7Y29sb3I6IzAyNzBENyAhaW1wb3J0YW50O2JvcmRlcjpub25lO2hlaWdodDphdXRvO2xlZnQ6OHB4O3BhZGRpbmc6MTZweCAzMnB4O3RvcDo4cHg7d2lkdGg6YXV0bzt6LWluZGV4OjEwMDAwMH0ubGlzdC1yZXNldHtsaXN0LXN0eWxlOm5vbmU7cGFkZGluZzowfS50ZXh0LWxlZnR7dGV4dC1hbGlnbjpsZWZ0fS50ZXh0LWNlbnRlcnt0ZXh0LWFsaWduOmNlbnRlcn0udGV4dC1yaWdodHt0ZXh0LWFsaWduOnJpZ2h0fS50ZXh0LXByaW1hcnl7Y29sb3I6IzAyNzBEN30uaGFzLXRvcC1kaXZpZGVye3Bvc2l0aW9uOnJlbGF0aXZlfS5oYXMtdG9wLWRpdmlkZXI6OmJlZm9yZXtjb250ZW50OicnO3Bvc2l0aW9uOmFic29sdXRlO3RvcDowO2xlZnQ6MDt3aWR0aDoxMDAlO2Rpc3BsYXk6YmxvY2s7aGVpZ2h0OjFweDtiYWNrZ3JvdW5kOiMyNDI4MzB9Lmhhcy1ib3R0b20tZGl2aWRlcntwb3NpdGlvbjpyZWxhdGl2ZX0uaGFzLWJvdHRvbS1kaXZpZGVyOjphZnRlcntjb250ZW50OicnO3Bvc2l0aW9uOmFic29sdXRlO2JvdHRvbTowO2xlZnQ6MDt3aWR0aDoxMDAlO2Rpc3BsYXk6YmxvY2s7aGVpZ2h0OjFweDtiYWNrZ3JvdW5kOiMyNDI4MzB9Lm0tMHttYXJnaW46MH0ubXQtMHttYXJnaW4tdG9wOjB9Lm1yLTB7bWFyZ2luLXJpZ2h0OjB9Lm1iLTB7bWFyZ2luLWJvdHRvbTowfS5tbC0we21hcmdpbi1sZWZ0OjB9Lm0tOHttYXJnaW46OHB4fS5tdC04e21hcmdpbi10b3A6OHB4fS5tci04e21hcmdpbi1yaWdodDo4cHh9Lm1iLTh7bWFyZ2luLWJvdHRvbTo4cHh9Lm1sLTh7bWFyZ2luLWxlZnQ6OHB4fS5tLTE2e21hcmdpbjoxNnB4fS5tdC0xNnttYXJnaW4tdG9wOjE2cHh9Lm1yLTE2e21hcmdpbi1yaWdodDoxNnB4fS5tYi0xNnttYXJnaW4tYm90dG9tOjE2cHh9Lm1sLTE2e21hcmdpbi1sZWZ0OjE2cHh9Lm0tMjR7bWFyZ2luOjI0cHh9Lm10LTI0e21hcmdpbi10b3A6MjRweH0ubXItMjR7bWFyZ2luLXJpZ2h0OjI0cHh9Lm1iLTI0e21hcmdpbi1ib3R0b206MjRweH0ubWwtMjR7bWFyZ2luLWxlZnQ6MjRweH0ubS0zMnttYXJnaW46MzJweH0ubXQtMzJ7bWFyZ2luLXRvcDozMnB4fS5tci0zMnttYXJnaW4tcmlnaHQ6MzJweH0ubWItMzJ7bWFyZ2luLWJvdHRvbTozMnB4fS5tbC0zMnttYXJnaW4tbGVmdDozMnB4fS5tLTQwe21hcmdpbjo0MHB4fS5tdC00MHttYXJnaW4tdG9wOjQwcHh9Lm1yLTQwe21hcmdpbi1yaWdodDo0MHB4fS5tYi00MHttYXJnaW4tYm90dG9tOjQwcHh9Lm1sLTQwe21hcmdpbi1sZWZ0OjQwcHh9Lm0tNDh7bWFyZ2luOjQ4cHh9Lm10LTQ4e21hcmdpbi10b3A6NDhweH0ubXItNDh7bWFyZ2luLXJpZ2h0OjQ4cHh9Lm1iLTQ4e21hcmdpbi1ib3R0b206NDhweH0ubWwtNDh7bWFyZ2luLWxlZnQ6NDhweH0ubS01NnttYXJnaW46NTZweH0ubXQtNTZ7bWFyZ2luLXRvcDo1NnB4fS5tci01NnttYXJnaW4tcmlnaHQ6NTZweH0ubWItNTZ7bWFyZ2luLWJvdHRvbTo1NnB4fS5tbC01NnttYXJnaW4tbGVmdDo1NnB4fS5tLTY0e21hcmdpbjo2NHB4fS5tdC02NHttYXJnaW4tdG9wOjY0cHh9Lm1yLTY0e21hcmdpbi1yaWdodDo2NHB4fS5tYi02NHttYXJnaW4tYm90dG9tOjY0cHh9Lm1sLTY0e21hcmdpbi1sZWZ0OjY0cHh9LnAtMHtwYWRkaW5nOjB9LnB0LTB7cGFkZGluZy10b3A6MH0ucHItMHtwYWRkaW5nLXJpZ2h0OjB9LnBiLTB7cGFkZGluZy1ib3R0b206MH0ucGwtMHtwYWRkaW5nLWxlZnQ6MH0ucC04e3BhZGRpbmc6OHB4fS5wdC04e3BhZGRpbmctdG9wOjhweH0ucHItOHtwYWRkaW5nLXJpZ2h0OjhweH0ucGItOHtwYWRkaW5nLWJvdHRvbTo4cHh9LnBsLTh7cGFkZGluZy1sZWZ0OjhweH0ucC0xNntwYWRkaW5nOjE2cHh9LnB0LTE2e3BhZGRpbmctdG9wOjE2cHh9LnByLTE2e3BhZGRpbmctcmlnaHQ6MTZweH0ucGItMTZ7cGFkZGluZy1ib3R0b206MTZweH0ucGwtMTZ7cGFkZGluZy1sZWZ0OjE2cHh9LnAtMjR7cGFkZGluZzoyNHB4fS5wdC0yNHtwYWRkaW5nLXRvcDoyNHB4fS5wci0yNHtwYWRkaW5nLXJpZ2h0OjI0cHh9LnBiLTI0e3BhZGRpbmctYm90dG9tOjI0cHh9LnBsLTI0e3BhZGRpbmctbGVmdDoyNHB4fS5wLTMye3BhZGRpbmc6MzJweH0ucHQtMzJ7cGFkZGluZy10b3A6MzJweH0ucHItMzJ7cGFkZGluZy1yaWdodDozMnB4fS5wYi0zMntwYWRkaW5nLWJvdHRvbTozMnB4fS5wbC0zMntwYWRkaW5nLWxlZnQ6MzJweH0ucC00MHtwYWRkaW5nOjQwcHh9LnB0LTQwe3BhZGRpbmctdG9wOjQwcHh9LnByLTQwe3BhZGRpbmctcmlnaHQ6NDBweH0ucGItNDB7cGFkZGluZy1ib3R0b206NDBweH0ucGwtNDB7cGFkZGluZy1sZWZ0OjQwcHh9LnAtNDh7cGFkZGluZzo0OHB4fS5wdC00OHtwYWRkaW5nLXRvcDo0OHB4fS5wci00OHtwYWRkaW5nLXJpZ2h0OjQ4cHh9LnBiLTQ4e3BhZGRpbmctYm90dG9tOjQ4cHh9LnBsLTQ4e3BhZGRpbmctbGVmdDo0OHB4fS5wLTU2e3BhZGRpbmc6NTZweH0ucHQtNTZ7cGFkZGluZy10b3A6NTZweH0ucHItNTZ7cGFkZGluZy1yaWdodDo1NnB4fS5wYi01NntwYWRkaW5nLWJvdHRvbTo1NnB4fS5wbC01NntwYWRkaW5nLWxlZnQ6NTZweH0ucC02NHtwYWRkaW5nOjY0cHh9LnB0LTY0e3BhZGRpbmctdG9wOjY0cHh9LnByLTY0e3BhZGRpbmctcmlnaHQ6NjRweH0ucGItNjR7cGFkZGluZy1ib3R0b206NjRweH0ucGwtNjR7cGFkZGluZy1sZWZ0OjY0cHh9LnNyIC5oYXMtYW5pbWF0aW9ucyAuaXMtcmV2ZWFsaW5ne3Zpc2liaWxpdHk6aGlkZGVufS5oYXMtYW5pbWF0aW9ucyAuYW5pbWUtZWxlbWVudHt2aXNpYmlsaXR5OmhpZGRlbn0uYW5pbWUtcmVhZHkgLmhhcy1hbmltYXRpb25zIC5hbmltZS1lbGVtZW50e3Zpc2liaWxpdHk6dmlzaWJsZX0uaW5wdXQsLnRleHRhcmVhe2JhY2tncm91bmQtY29sb3I6I2ZmZjtib3JkZXItd2lkdGg6MXB4O2JvcmRlci1zdHlsZTpzb2xpZDtib3JkZXItY29sb3I6IzI0MjgzMDtib3JkZXItcmFkaXVzOjJweDtjb2xvcjojOEE5NEE3O21heC13aWR0aDoxMDAlO3dpZHRoOjEwMCV9LmlucHV0OjpwbGFjZWhvbGRlciwudGV4dGFyZWE6OnBsYWNlaG9sZGVye2NvbG9yOiMzQjQwNEN9LmlucHV0OjotbXMtaW5wdXQtcGxhY2Vob2xkZXIsLnRleHRhcmVhOjotbXMtaW5wdXQtcGxhY2Vob2xkZXJ7Y29sb3I6IzNCNDA0Q30uaW5wdXQ6LW1zLWlucHV0LXBsYWNlaG9sZGVyLC50ZXh0YXJlYTotbXMtaW5wdXQtcGxhY2Vob2xkZXJ7Y29sb3I6IzNCNDA0Q30uaW5wdXQ6aG92ZXIsLnRleHRhcmVhOmhvdmVye2JvcmRlci1jb2xvcjojMTkxYzIxfS5pbnB1dDphY3RpdmUsLmlucHV0OmZvY3VzLC50ZXh0YXJlYTphY3RpdmUsLnRleHRhcmVhOmZvY3Vze291dGxpbmU6bm9uZTtib3JkZXItY29sb3I6IzI0MjgzMH0uaW5wdXRbZGlzYWJsZWRdLC50ZXh0YXJlYVtkaXNhYmxlZF17Y3Vyc29yOm5vdC1hbGxvd2VkO2JhY2tncm91bmQtY29sb3I6IzFEMjAyNjtib3JkZXItY29sb3I6IzFEMjAyNn0uaW5wdXR7LW1vei1hcHBlYXJhbmNlOm5vbmU7LXdlYmtpdC1hcHBlYXJhbmNlOm5vbmU7Zm9udC1zaXplOjE2cHg7bGV0dGVyLXNwYWNpbmc6LTAuMXB4O2xpbmUtaGVpZ2h0OjIwcHg7cGFkZGluZzoxM3B4IDE2cHg7aGVpZ2h0OjQ4cHg7Ym94LXNoYWRvdzpub25lfS5pbnB1dCAuaW5saW5lLWlucHV0e2Rpc3BsYXk6aW5saW5lO3dpZHRoOmF1dG99LnRleHRhcmVhe2Rpc3BsYXk6YmxvY2s7bWluLXdpZHRoOjEwMCU7cmVzaXplOnZlcnRpY2FsfS50ZXh0YXJlYSAuaW5saW5lLXRleHRhcmVhe2Rpc3BsYXk6aW5saW5lO3dpZHRoOmF1dG99LmZpZWxkLWdyb3VwZWQ+LmNvbnRyb2w6bm90KDpsYXN0LWNoaWxkKXttYXJnaW4tYm90dG9tOjhweH1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpey5maWVsZC1ncm91cGVke2Rpc3BsYXk6ZmxleH0uZmllbGQtZ3JvdXBlZD4uY29udHJvbHtmbGV4LXNocmluazowfS5maWVsZC1ncm91cGVkPi5jb250cm9sLmNvbnRyb2wtZXhwYW5kZWR7ZmxleC1ncm93OjE7ZmxleC1zaHJpbms6MX0uZmllbGQtZ3JvdXBlZD4uY29udHJvbDpub3QoOmxhc3QtY2hpbGQpe21hcmdpbi1ib3R0b206MDttYXJnaW4tcmlnaHQ6OHB4fX0uYnV0dG9ue2Rpc3BsYXk6aW5saW5lLWZsZXg7Zm9udC1zaXplOjE0cHg7bGV0dGVyLXNwYWNpbmc6MHB4O2ZvbnQtd2VpZ2h0OjYwMDtsaW5lLWhlaWdodDoxNnB4O3RleHQtZGVjb3JhdGlvbjpub25lICFpbXBvcnRhbnQ7dGV4dC10cmFuc2Zvcm06dXBwZXJjYXNlO2JhY2tncm91bmQtY29sb3I6IzI0MjgzMDtjb2xvcjojZmZmICFpbXBvcnRhbnQ7Ym9yZGVyOm5vbmU7Ym9yZGVyLXJhZGl1czoycHg7Y3Vyc29yOnBvaW50ZXI7anVzdGlmeS1jb250ZW50OmNlbnRlcjtwYWRkaW5nOjE2cHggMzJweDtoZWlnaHQ6NDhweDt0ZXh0LWFsaWduOmNlbnRlcjt3aGl0ZS1zcGFjZTpub3dyYXB9LmJ1dHRvbjpob3ZlcntiYWNrZ3JvdW5kOiMyNjJhMzN9LmJ1dHRvbjphY3RpdmV7b3V0bGluZTowfS5idXR0b246OmJlZm9yZXtib3JkZXItcmFkaXVzOjJweH0uYnV0dG9uLXNte3BhZGRpbmc6OHB4IDI0cHg7aGVpZ2h0OjMycHh9LmJ1dHRvbi1wcmltYXJ5e2JhY2tncm91bmQ6IzA5N2RlYTtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCg2NWRlZywgIzAyNzBENyAwLCAjMEY4QUZEIDEwMCUpfS5idXR0b24tcHJpbWFyeTpob3ZlcntiYWNrZ3JvdW5kOiMwOTgyZjQ7YmFja2dyb3VuZDpsaW5lYXItZ3JhZGllbnQoNjVkZWcsICMwMjc1ZTEgMCwgIzE5OGZmZCAxMDAlKX0uYnV0dG9uLWJsb2Nre2Rpc3BsYXk6ZmxleH0uYnV0dG9uLWJsb2Nre2Rpc3BsYXk6ZmxleDt3aWR0aDoxMDAlfUBtZWRpYSAobWF4LXdpZHRoOiA2NDBweCl7LmJ1dHRvbi13aWRlLW1vYmlsZXt3aWR0aDoxMDAlO21heC13aWR0aDoyODBweH19LnNpdGUtaGVhZGVye3BhZGRpbmc6MjRweCAwfS5zaXRlLWhlYWRlci1pbm5lcntwb3NpdGlvbjpyZWxhdGl2ZTtkaXNwbGF5OmZsZXg7anVzdGlmeS1jb250ZW50OnNwYWNlLWJldHdlZW47YWxpZ24taXRlbXM6Y2VudGVyfS5oZWFkZXItbGlua3N7ZGlzcGxheTppbmxpbmUtZmxleH0uaGVhZGVyLWxpbmtzIGxpe2Rpc3BsYXk6aW5saW5lLWZsZXh9LmhlYWRlci1saW5rcyBhOm5vdCguYnV0dG9uKXtmb250LXNpemU6MTZweDtsaW5lLWhlaWdodDoyNHB4O2xldHRlci1zcGFjaW5nOi0wLjFweDtmb250LXdlaWdodDo2MDA7Y29sb3I6IzhBOTRBNzt0ZXh0LXRyYW5zZm9ybTp1cHBlcmNhc2U7dGV4dC1kZWNvcmF0aW9uOm5vbmU7bGluZS1oZWlnaHQ6MTZweDtwYWRkaW5nOjhweCAyNHB4fUBtZWRpYSAobWluLXdpZHRoOiA2NDFweCl7LnNpdGUtaGVhZGVye3Bvc2l0aW9uOnJlbGF0aXZlfS5zaXRlLWhlYWRlcjo6YmVmb3Jle2NvbnRlbnQ6Jyc7cG9zaXRpb246YWJzb2x1dGU7dG9wOjA7bGVmdDowO3dpZHRoOjEwMCU7aGVpZ2h0OjcwMHB4O2JhY2tncm91bmQ6IzI0MjgzMDtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCg4MGRlZywgcmdiYSgzNiw0MCw0OCwwLjUpIDAlLCByZ2JhKDM2LDQwLDQ4LDApIDEwMCUpOy13ZWJraXQtdHJhbnNmb3JtLW9yaWdpbjowO3RyYW5zZm9ybS1vcmlnaW46MDstd2Via2l0LXRyYW5zZm9ybTpza2V3WSgtMTJkZWcpO3RyYW5zZm9ybTpza2V3WSgtMTJkZWcpfX0uaGVyb3t0ZXh0LWFsaWduOmNlbnRlcjtwYWRkaW5nLXRvcDo0OHB4O3BhZGRpbmctYm90dG9tOjg4cHh9Lmhlcm8tY29weXtwb3NpdGlvbjpyZWxhdGl2ZTt6LWluZGV4OjF9Lmhlcm8tY3Rhe21hcmdpbi1ib3R0b206NDBweH0uaGVyby1maWd1cmV7cG9zaXRpb246cmVsYXRpdmV9Lmhlcm8tZmlndXJlIHN2Z3t3aWR0aDoxMDAlO2hlaWdodDphdXRvfS5oZXJvLWZpZ3VyZTo6YmVmb3JlLC5oZXJvLWZpZ3VyZTo6YWZ0ZXJ7Y29udGVudDonJztwb3NpdGlvbjphYnNvbHV0ZTtiYWNrZ3JvdW5kLXJlcGVhdDpuby1yZXBlYXQ7YmFja2dyb3VuZC1zaXplOjEwMCV9Lmhhcy1hbmltYXRpb25zIC5oZXJvLWZpZ3VyZTo6YmVmb3JlLC5oYXMtYW5pbWF0aW9ucyAuaGVyby1maWd1cmU6OmFmdGVye29wYWNpdHk6MDt0cmFuc2l0aW9uOm9wYWNpdHkgMnMgZWFzZX0uYW5pbWUtcmVhZHkgLmhhcy1hbmltYXRpb25zIC5oZXJvLWZpZ3VyZTo6YmVmb3JlLC5hbmltZS1yZWFkeSAuaGFzLWFuaW1hdGlvbnMgLmhlcm8tZmlndXJlOjphZnRlcntvcGFjaXR5OjF9Lmhlcm8tZmlndXJlOjpiZWZvcmV7dG9wOi01Ny44JTtsZWZ0Oi0xLjMlO3dpZHRoOjE1Mi44NCU7aGVpZ2h0OjE3OC43OCU7YmFja2dyb3VuZC1pbWFnZTp1cmwoXCIuLi9pbWFnZXMvaGVyby1iYWNrLWlsbHVzdHJhdGlvbi5zdmdcIil9Lmhlcm8tZmlndXJlOjphZnRlcnt0b3A6LTM1LjYlO2xlZnQ6OTkuNiU7d2lkdGg6NTcuMiU7aGVpZ2h0Ojg3Ljg4JTtiYWNrZ3JvdW5kLWltYWdlOnVybChcIi4uL2ltYWdlcy9oZXJvLXRvcC1pbGx1c3RyYXRpb24uc3ZnXCIpfS5oZXJvLWZpZ3VyZS1ib3h7cG9zaXRpb246YWJzb2x1dGU7dG9wOjA7d2lsbC1jaGFuZ2U6dHJhbnNmb3JtfS5oZXJvLWZpZ3VyZS1ib3gtMDEsLmhlcm8tZmlndXJlLWJveC0wMiwuaGVyby1maWd1cmUtYm94LTAzLC5oZXJvLWZpZ3VyZS1ib3gtMDQsLmhlcm8tZmlndXJlLWJveC0wOCwuaGVyby1maWd1cmUtYm94LTA5e292ZXJmbG93OmhpZGRlbn0uaGVyby1maWd1cmUtYm94LTAxOjpiZWZvcmUsLmhlcm8tZmlndXJlLWJveC0wMjo6YmVmb3JlLC5oZXJvLWZpZ3VyZS1ib3gtMDM6OmJlZm9yZSwuaGVyby1maWd1cmUtYm94LTA0OjpiZWZvcmUsLmhlcm8tZmlndXJlLWJveC0wODo6YmVmb3JlLC5oZXJvLWZpZ3VyZS1ib3gtMDk6OmJlZm9yZXtjb250ZW50OicnO3Bvc2l0aW9uOmFic29sdXRlO3RvcDowO2JvdHRvbTowO2xlZnQ6MDtyaWdodDowO3RyYW5zZm9ybS1vcmlnaW46MTAwJSAxMDAlfS5oZXJvLWZpZ3VyZS1ib3gtMDF7bGVmdDoxMDMuMiU7dG9wOjQxLjklO3dpZHRoOjI4LjAzJTtoZWlnaHQ6MzcuMzclO2JhY2tncm91bmQ6bGluZWFyLWdyYWRpZW50KHRvIGxlZnQgdG9wLCAjMDBCRkZCLCByZ2JhKDAsMTkxLDI1MSwwKSk7dHJhbnNmb3JtOnJvdGF0ZVooNDVkZWcpfS5oZXJvLWZpZ3VyZS1ib3gtMDE6OmJlZm9yZXtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCh0byBsZWZ0LCAjMTUxODFEIDAlLCByZ2JhKDIxLDI0LDI5LDApIDYwJSk7dHJhbnNmb3JtOnJvdGF0ZVooNDVkZWcpIHNjYWxlKDEuNSl9Lmhlcm8tZmlndXJlLWJveC0wMntsZWZ0OjYxLjMlO3RvcDo2NC4xJTt3aWR0aDozNy44NyU7aGVpZ2h0OjUwLjUwJTtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCh0byBsZWZ0IHRvcCwgIzAyNzBENywgcmdiYSgyLDExMiwyMTUsMCkpO3RyYW5zZm9ybTpyb3RhdGVaKC00NWRlZyl9Lmhlcm8tZmlndXJlLWJveC0wMjo6YmVmb3Jle2JhY2tncm91bmQ6bGluZWFyLWdyYWRpZW50KHRvIHRvcCwgIzE1MTgxRCAwJSwgcmdiYSgyMSwyNCwyOSwwKSA2MCUpO3RyYW5zZm9ybTpyb3RhdGVaKC00NWRlZykgc2NhbGUoMS41KX0uaGVyby1maWd1cmUtYm94LTAze2xlZnQ6ODcuNyU7dG9wOi01Ni44JTt3aWR0aDo1Ni44MSU7aGVpZ2h0Ojc1Ljc1JTtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCh0byBsZWZ0IHRvcCwgIzAwQkZGQiwgcmdiYSgwLDE5MSwyNTEsMCkpfS5oZXJvLWZpZ3VyZS1ib3gtMDM6OmJlZm9yZXtiYWNrZ3JvdW5kOmxpbmVhci1ncmFkaWVudCh0byBsZWZ0LCAjMTUxODFEIDAlLCByZ2JhKDIxLDI0LDI5LDApIDYwJSk7dHJhbnNmb3JtOnJvdGF0ZVooNDVkZWcpIHNjYWxlKDEuNSl9Lmhlcm8tZmlndXJlLWJveC0wNHtsZWZ0OjU0LjklO3RvcDotOCU7d2lkdGg6NDUuNDUlO2hlaWdodDo2MC42MCU7YmFja2dyb3VuZDpsaW5lYXItZ3JhZGllbnQodG8gbGVmdCB0b3AsICMwMjcwRDcsIHJnYmEoMiwxMTIsMjE1LDApKTt0cmFuc2Zvcm06cm90YXRlWigtMTM1ZGVnKX0uaGVyby1maWd1cmUtYm94LTA0OjpiZWZvcmV7YmFja2dyb3VuZDpsaW5lYXItZ3JhZGllbnQodG8gdG9wLCByZ2JhKDI1NSwyNTUsMjU1LDAuMjQpIDAlLCByZ2JhKDI1NSwyNTUsMjU1LDApIDYwJSk7dHJhbnNmb3JtOnJvdGF0ZVooLTQ1ZGVnKSBzY2FsZSgxLjUpfS5oZXJvLWZpZ3VyZS1ib3gtMDUsLmhlcm8tZmlndXJlLWJveC0wNiwuaGVyby1maWd1cmUtYm94LTA3e2JhY2tncm91bmQtY29sb3I6IzI0MjgzMDtib3gtc2hhZG93Oi0yMHB4IDMycHggNjRweCByZ2JhKDAsMCwwLDAuMjUpfS5oZXJvLWZpZ3VyZS1ib3gtMDV7bGVmdDoxNy40JTt0b3A6MTMuMyU7d2lkdGg6NjQlO2hlaWdodDo3My43JTt0cmFuc2Zvcm06cGVyc3BlY3RpdmUoNTAwcHgpIHJvdGF0ZVkoLTE1ZGVnKSByb3RhdGVYKDhkZWcpIHJvdGF0ZVooLTFkZWcpfS5oZXJvLWZpZ3VyZS1ib3gtMDZ7bGVmdDo2NS41JTt0b3A6Ni4zJTt3aWR0aDozMC4zJTtoZWlnaHQ6NDAuNCU7dHJhbnNmb3JtOnJvdGF0ZVooMjBkZWcpfS5oZXJvLWZpZ3VyZS1ib3gtMDd7bGVmdDoxLjklO3RvcDo0Mi40JTt3aWR0aDoxMi4xMiU7aGVpZ2h0OjE2LjE2JTt0cmFuc2Zvcm06cm90YXRlWigyMGRlZyl9Lmhlcm8tZmlndXJlLWJveC0wOHtsZWZ0OjI3LjElO3RvcDo4MS42JTt3aWR0aDoxOS41MSU7aGVpZ2h0OjI2LjAxJTtiYWNrZ3JvdW5kOiMwMjcwRDc7dHJhbnNmb3JtOnJvdGF0ZVooLTIyZGVnKX0uaGVyby1maWd1cmUtYm94LTA4OjpiZWZvcmV7YmFja2dyb3VuZDpsaW5lYXItZ3JhZGllbnQodG8gbGVmdCwgcmdiYSgyNTUsMjU1LDI1NSwwKSAwJSwgcmdiYSgyNTUsMjU1LDI1NSwwLjQ4KSAxMDAlKTt0cmFuc2Zvcm06cm90YXRlWig0NWRlZykgc2NhbGUoMS41KX0uaGVyby1maWd1cmUtYm94LTA5e2xlZnQ6NDIuNiU7dG9wOi0xNy45JTt3aWR0aDo2LjYzJTtoZWlnaHQ6OC44MyU7YmFja2dyb3VuZDojMDBCRkZCO3RyYW5zZm9ybTpyb3RhdGVaKC01MmRlZyl9Lmhlcm8tZmlndXJlLWJveC0wOTo6YmVmb3Jle2JhY2tncm91bmQ6bGluZWFyLWdyYWRpZW50KHRvIGxlZnQsIHJnYmEoMjU1LDI1NSwyNTUsMCkgMCUsIHJnYmEoMjU1LDI1NSwyNTUsMC42NCkgMTAwJSk7dHJhbnNmb3JtOnJvdGF0ZVooNDVkZWcpIHNjYWxlKDEuNSl9Lmhlcm8tZmlndXJlLWJveC0xMHtsZWZ0Oi0zLjglO3RvcDo0LjMlO3dpZHRoOjMuMDMlO2hlaWdodDo0LjA0JTtiYWNrZ3JvdW5kOnJnYmEoMCwxOTEsMjUxLDAuMzIpO3RyYW5zZm9ybTpyb3RhdGVaKC01MGRlZyl9QG1lZGlhIChtYXgtd2lkdGg6IDY0MHB4KXsuaGVyby1jdGF7bWF4LXdpZHRoOjI4MHB4O21hcmdpbi1sZWZ0OmF1dG87bWFyZ2luLXJpZ2h0OmF1dG99Lmhlcm8tY3RhIC5idXR0b257ZGlzcGxheTpmbGV4fS5oZXJvLWN0YSAuYnV0dG9uKy5idXR0b257bWFyZ2luLXRvcDoxNnB4fS5oZXJvLWZpZ3VyZTo6YWZ0ZXIsLmhlcm8tZmlndXJlLWJveC0wMywuaGVyby1maWd1cmUtYm94LTA0LC5oZXJvLWZpZ3VyZS1ib3gtMDl7ZGlzcGxheTpub25lfX1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpey5oZXJve3RleHQtYWxpZ246bGVmdDtwYWRkaW5nLXRvcDo2NHB4O3BhZGRpbmctYm90dG9tOjg4cHh9Lmhlcm8taW5uZXJ7ZGlzcGxheTpmbGV4O2p1c3RpZnktY29udGVudDpzcGFjZS1iZXR3ZWVuO2FsaWduLWl0ZW1zOmNlbnRlcn0uaGVyby1jb3B5e3BhZGRpbmctcmlnaHQ6NjRweDttaW4td2lkdGg6NTUycHg7d2lkdGg6NTUycHh9Lmhlcm8tY3Rhe21hcmdpbjowfS5oZXJvLWN0YSAuYnV0dG9ue21pbi13aWR0aDoxNzBweH0uaGVyby1jdGEgLmJ1dHRvbjpmaXJzdC1jaGlsZHttYXJnaW4tcmlnaHQ6MTZweH0uaGVyby1maWd1cmUgc3Zne3dpZHRoOmF1dG99fS5mZWF0dXJlcy13cmFwe2Rpc3BsYXk6ZmxleDtmbGV4LXdyYXA6d3JhcDtqdXN0aWZ5LWNvbnRlbnQ6c3BhY2UtZXZlbmx5O21hcmdpbi1yaWdodDotMzJweDttYXJnaW4tbGVmdDotMzJweH0uZmVhdHVyZXMtd3JhcDpmaXJzdC1vZi10eXBle21hcmdpbi10b3A6LTE2cHh9LmZlYXR1cmVzLXdyYXA6bGFzdC1vZi10eXBle21hcmdpbi1ib3R0b206LTE2cHh9LmZlYXR1cmV7cGFkZGluZzoxNnB4IDMycHg7d2lkdGg6MzgwcHg7bWF4LXdpZHRoOjM4MHB4O2ZsZXgtZ3JvdzoxfS5mZWF0dXJlLWlubmVye2hlaWdodDoxMDAlfS5mZWF0dXJlLWljb257ZGlzcGxheTpmbGV4O2p1c3RpZnktY29udGVudDpjZW50ZXJ9QG1lZGlhIChtaW4td2lkdGg6IDY0MXB4KXsuZmVhdHVyZXMtd3JhcDpmaXJzdC1vZi10eXBle21hcmdpbi10b3A6LTI0cHh9LmZlYXR1cmVzLXdyYXA6bGFzdC1vZi10eXBle21hcmdpbi1ib3R0b206LTI0cHh9LmZlYXR1cmV7cGFkZGluZzozMnB4IDMycHh9fS5wcmljaW5nLWhlYWRlcnttYXJnaW4tYm90dG9tOjQ4cHh9LnByaWNpbmctdGFibGVzLXdyYXB7ZGlzcGxheTpmbGV4O2ZsZXgtd3JhcDp3cmFwO2p1c3RpZnktY29udGVudDpjZW50ZXI7bWFyZ2luLXJpZ2h0Oi0xMnB4O21hcmdpbi1sZWZ0Oi0xMnB4fS5wcmljaW5nLXRhYmxlcy13cmFwOmZpcnN0LWNoaWxke21hcmdpbi10b3A6LTEycHh9LnByaWNpbmctdGFibGVzLXdyYXA6bGFzdC1jaGlsZHttYXJnaW4tYm90dG9tOi0xMnB4fS5wcmljaW5nLXRhYmxle3Bvc2l0aW9uOnJlbGF0aXZlO3BhZGRpbmc6MTJweDt3aWR0aDozNjhweDttYXgtd2lkdGg6MzY4cHg7ZmxleC1ncm93OjF9LnByaWNpbmctdGFibGU6OmJlZm9yZXtjb250ZW50OicnO3Bvc2l0aW9uOmFic29sdXRlO2xlZnQ6NTAlO3dpZHRoOjIwMCU7bWF4LXdpZHRoOjIwMCU7aGVpZ2h0OjQzNXB4O2JhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdDtiYWNrZ3JvdW5kLXBvc2l0aW9uOmNlbnRlcjtiYWNrZ3JvdW5kLXNpemU6MTAwJTtib3R0b206MTguOCU7LXdlYmtpdC10cmFuc2Zvcm06dHJhbnNsYXRlWCgtNTAlKTt0cmFuc2Zvcm06dHJhbnNsYXRlWCgtNTAlKTtiYWNrZ3JvdW5kLWltYWdlOnVybChcIi4uL2ltYWdlcy9wcmljaW5nLWlsbHVzdHJhdGlvbi5zdmdcIil9LnByaWNpbmctdGFibGUtaGVhZGVyLC5wcmljaW5nLXRhYmxlLWZlYXR1cmVzLXRpdGxlLC5wcmljaW5nLXRhYmxlLWZlYXR1cmVzIGxpe2JvcmRlci1ib3R0b206MXB4IHNvbGlkIHJnYmEoMTM4LDE0OCwxNjcsMC4yNCl9LnByaWNpbmctdGFibGUtaW5uZXJ7cG9zaXRpb246cmVsYXRpdmU7ZGlzcGxheTpmbGV4O2ZsZXgtd3JhcDp3cmFwO2JhY2tncm91bmQ6IzJDMzAzOTtwYWRkaW5nOjI0cHg7aGVpZ2h0OjEwMCV9LnByaWNpbmctdGFibGUtaW5uZXI+Kntwb3NpdGlvbjpyZWxhdGl2ZTt3aWR0aDoxMDAlfS5wcmljaW5nLXRhYmxlLWlubmVyOjpiZWZvcmV7Y29udGVudDonJztwb3NpdGlvbjphYnNvbHV0ZTt0b3A6MDtyaWdodDowO2JvdHRvbTowO2xlZnQ6MDtib3gtc2hhZG93OjAgMjRweCA0OHB4IHJnYmEoMjEsMjQsMjksMC4yNCk7bWl4LWJsZW5kLW1vZGU6bXVsdGlwbHl9LnByaWNpbmctdGFibGUtcHJpY2UtY3VycmVuY3l7Y29sb3I6IzhBOTRBN30ucHJpY2luZy10YWJsZS1mZWF0dXJlcy10aXRsZXtjb2xvcjojZmZmO2ZvbnQtd2VpZ2h0OjcwMH0ucHJpY2luZy10YWJsZS1mZWF0dXJlcyBsaXtkaXNwbGF5OmZsZXg7YWxpZ24taXRlbXM6Y2VudGVyO3BhZGRpbmc6MTRweCAwfS5wcmljaW5nLXRhYmxlLWZlYXR1cmVzIGxpOjpiZWZvcmV7Y29udGVudDonJzt3aWR0aDoxNnB4O2hlaWdodDoxMnB4O21hcmdpbi1yaWdodDoxNnB4O2JhY2tncm91bmQtaW1hZ2U6dXJsKGRhdGE6aW1hZ2Uvc3ZnK3htbDtiYXNlNjQsUEhOMlp5QjNhV1IwYUQwaU1UWWlJR2hsYVdkb2REMGlNVElpSUhodGJHNXpQU0pvZEhSd09pOHZkM2QzTG5jekxtOXlaeTh5TURBd0wzTjJaeUkrUEhCaGRHZ2daRDBpVFRVdU5pQTJMalJNTVM0MklEUWdNQ0ExTGpZZ05TNDJJREV5SURFMklERXVOaUF4TkM0MElEQjZJaUJtYVd4c1BTSWpNREpEUWtJeElpQm1hV3hzTFhKMWJHVTlJbVYyWlc1dlpHUWlMejQ4TDNOMlp6ND0pO2JhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdH0ucHJpY2luZy10YWJsZS1jdGF7YWxpZ24tc2VsZjpmbGV4LWVuZH1AbWVkaWEgKG1pbi13aWR0aDogNjQxcHgpey5wcmljaW5nIC5zZWN0aW9uLXBhcmFncmFwaHtwYWRkaW5nLWxlZnQ6OTBweDtwYWRkaW5nLXJpZ2h0OjkwcHh9LnByaWNpbmctaGVhZGVye21hcmdpbi1ib3R0b206NTJweH19LmN0YXt0ZXh0LWFsaWduOmNlbnRlcn0uY3RhIC5zZWN0aW9uLWlubmVye3BhZGRpbmc6NDhweCAxNnB4fS5jdGEgLnNlY3Rpb24tdGl0bGV7bWFyZ2luLWJvdHRvbTo0MHB4fS5jdGEtaW5uZXJ7cG9zaXRpb246cmVsYXRpdmU7YmFja2dyb3VuZDojMTUxODFEO292ZXJmbG93OmhpZGRlbn0uY3RhLWlubmVyOjpiZWZvcmV7Y29udGVudDonJztwb3NpdGlvbjphYnNvbHV0ZTtyaWdodDo5OHB4O3RvcDotMTE3cHg7d2lkdGg6MTYwcHg7aGVpZ2h0OjE4N3B4O2JhY2tncm91bmQtaW1hZ2U6dXJsKFwiLi4vaW1hZ2VzL2N0YS1pbGx1c3RyYXRpb24uc3ZnXCIpO2JhY2tncm91bmQtcmVwZWF0Om5vLXJlcGVhdH0uY3RhLWlubmVyPip7cG9zaXRpb246cmVsYXRpdmV9QG1lZGlhIChtaW4td2lkdGg6IDY0MXB4KXsuY3Rhe3RleHQtYWxpZ246bGVmdH0uY3RhIC5zZWN0aW9uLWlubmVye3BhZGRpbmc6NjRweCAzMnB4fS5jdGEgLnNlY3Rpb24tdGl0bGV7bWFyZ2luLWJvdHRvbTowO3BhZGRpbmctcmlnaHQ6MjRweH0uY3RhLWlubmVye2Rpc3BsYXk6ZmxleDthbGlnbi1pdGVtczpjZW50ZXI7anVzdGlmeS1jb250ZW50OnNwYWNlLWJldHdlZW59fS5pcy1ib3hlZHtiYWNrZ3JvdW5kOiMyNDI4MzB9LmJvZHktd3JhcHtiYWNrZ3JvdW5kOiMxRDIwMjY7b3ZlcmZsb3c6aGlkZGVuO2Rpc3BsYXk6ZmxleDtmbGV4LWRpcmVjdGlvbjpjb2x1bW47bWluLWhlaWdodDoxMDB2aH0uYm94ZWQtY29udGFpbmVye21heC13aWR0aDoxNDQwcHg7bWFyZ2luOjAgYXV0bztib3gtc2hhZG93OjAgMjRweCA0OHB4IHJnYmEoMjEsMjQsMjksMC4yNCk7bWl4LWJsZW5kLW1vZGU6bXVsdGlwbHk7bWl4LWJsZW5kLW1vZGU6bm9ybWFsfW1haW57ZmxleDoxIDAgYXV0b30uc2VjdGlvbi1pbm5lcntwb3NpdGlvbjpyZWxhdGl2ZTtwYWRkaW5nLXRvcDo0OHB4O3BhZGRpbmctYm90dG9tOjQ4cHh9QG1lZGlhIChtaW4td2lkdGg6IDY0MXB4KXsuc2VjdGlvbi1pbm5lcntwYWRkaW5nLXRvcDo4OHB4O3BhZGRpbmctYm90dG9tOjg4cHh9fS5zaXRlLWZvb3Rlcntmb250LXNpemU6MTRweDtsaW5lLWhlaWdodDoyMnB4O2xldHRlci1zcGFjaW5nOjBweH0uc2l0ZS1mb290ZXIgYXtjb2xvcjojOEE5NEE3O3RleHQtZGVjb3JhdGlvbjpub25lfS5zaXRlLWZvb3RlciBhOmhvdmVyLC5zaXRlLWZvb3RlciBhOmFjdGl2ZXt0ZXh0LWRlY29yYXRpb246dW5kZXJsaW5lfS5zaXRlLWZvb3Rlci1pbm5lcntwb3NpdGlvbjpyZWxhdGl2ZTtkaXNwbGF5OmZsZXg7ZmxleC13cmFwOndyYXA7cGFkZGluZy10b3A6NDhweDtwYWRkaW5nLWJvdHRvbTo0OHB4fS5mb290ZXItYnJhbmQsLmZvb3Rlci1saW5rcywuZm9vdGVyLXNvY2lhbC1saW5rcywuZm9vdGVyLWNvcHlyaWdodHtmbGV4Om5vbmU7d2lkdGg6MTAwJTtkaXNwbGF5OmlubGluZS1mbGV4O2p1c3RpZnktY29udGVudDpjZW50ZXJ9LmZvb3Rlci1icmFuZCwuZm9vdGVyLWxpbmtzLC5mb290ZXItc29jaWFsLWxpbmtze21hcmdpbi1ib3R0b206MjRweH0uZm9vdGVyLXNvY2lhbC1saW5rcyBsaXtkaXNwbGF5OmlubGluZS1mbGV4fS5mb290ZXItc29jaWFsLWxpbmtzIGxpK2xpe21hcmdpbi1sZWZ0OjE2cHh9LmZvb3Rlci1zb2NpYWwtbGlua3MgbGkgYXtwYWRkaW5nOjhweH0uZm9vdGVyLWxpbmtzIGxpK2xpe21hcmdpbi1sZWZ0OjI0cHh9QG1lZGlhIChtaW4td2lkdGg6IDY0MXB4KXsuc2l0ZS1mb290ZXJ7bWFyZ2luLXRvcDoyMHB4fS5zaXRlLWZvb3Rlci1pbm5lcntqdXN0aWZ5LWNvbnRlbnQ6c3BhY2UtYmV0d2VlbjtwYWRkaW5nLXRvcDo2NHB4O3BhZGRpbmctYm90dG9tOjY0cHh9LmZvb3Rlci1icmFuZCwuZm9vdGVyLWxpbmtzLC5mb290ZXItc29jaWFsLWxpbmtzLC5mb290ZXItY29weXJpZ2h0e2ZsZXg6NTAlfS5mb290ZXItYnJhbmQsLmZvb3Rlci1jb3B5cmlnaHR7anVzdGlmeS1jb250ZW50OmZsZXgtc3RhcnR9LmZvb3Rlci1saW5rcywuZm9vdGVyLXNvY2lhbC1saW5rc3tqdXN0aWZ5LWNvbnRlbnQ6ZmxleC1lbmR9LmZvb3Rlci1saW5rc3tvcmRlcjoxO21hcmdpbi1ib3R0b206MH19XG4iXX0= */ \ No newline at end of file diff --git a/dist/images/cta-illustration.svg b/dist/images/cta-illustration.svg deleted file mode 100644 index c46d2f3..0000000 --- a/dist/images/cta-illustration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-01.svg b/dist/images/feature-icon-01.svg deleted file mode 100644 index 6054299..0000000 --- a/dist/images/feature-icon-01.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-02.svg b/dist/images/feature-icon-02.svg deleted file mode 100644 index 62b1193..0000000 --- a/dist/images/feature-icon-02.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-03.svg b/dist/images/feature-icon-03.svg deleted file mode 100644 index ab7bbaa..0000000 --- a/dist/images/feature-icon-03.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-04.svg b/dist/images/feature-icon-04.svg deleted file mode 100644 index 1ca34e7..0000000 --- a/dist/images/feature-icon-04.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-05.svg b/dist/images/feature-icon-05.svg deleted file mode 100644 index 43b4904..0000000 --- a/dist/images/feature-icon-05.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/feature-icon-06.svg b/dist/images/feature-icon-06.svg deleted file mode 100644 index 3a0c70d..0000000 --- a/dist/images/feature-icon-06.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/hero-back-illustration.svg b/dist/images/hero-back-illustration.svg deleted file mode 100644 index 8f0d151..0000000 --- a/dist/images/hero-back-illustration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/hero-top-illustration.svg b/dist/images/hero-top-illustration.svg deleted file mode 100644 index 3eec102..0000000 --- a/dist/images/hero-top-illustration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/logo.svg b/dist/images/logo.svg deleted file mode 100644 index e2e655c..0000000 --- a/dist/images/logo.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/images/pricing-illustration.svg b/dist/images/pricing-illustration.svg deleted file mode 100644 index 982f983..0000000 --- a/dist/images/pricing-illustration.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/dist/js/main.min.js b/dist/js/main.min.js deleted file mode 100644 index 71f079b..0000000 --- a/dist/js/main.min.js +++ /dev/null @@ -1 +0,0 @@ -!function(){window;const e=document.documentElement;if(e.classList.remove("no-js"),e.classList.add("js"),document.body.classList.contains("has-animations")){(window.sr=ScrollReveal()).reveal(".feature, .pricing-table-inner",{duration:600,distance:"20px",easing:"cubic-bezier(0.5, -0.01, 0, 1.005)",origin:"bottom",interval:100}),e.classList.add("anime-ready"),anime.timeline({targets:".hero-figure-box-05"}).add({duration:400,easing:"easeInOutExpo",scaleX:[.05,.05],scaleY:[0,1],perspective:"500px",delay:anime.random(0,400)}).add({duration:400,easing:"easeInOutExpo",scaleX:1}).add({duration:800,rotateY:"-15deg",rotateX:"8deg",rotateZ:"-1deg"}),anime.timeline({targets:".hero-figure-box-06, .hero-figure-box-07"}).add({duration:400,easing:"easeInOutExpo",scaleX:[.05,.05],scaleY:[0,1],perspective:"500px",delay:anime.random(0,400)}).add({duration:400,easing:"easeInOutExpo",scaleX:1}).add({duration:800,rotateZ:"20deg"}),anime({targets:".hero-figure-box-01, .hero-figure-box-02, .hero-figure-box-03, .hero-figure-box-04, .hero-figure-box-08, .hero-figure-box-09, .hero-figure-box-10",duration:anime.random(600,800),delay:anime.random(600,800),rotate:[anime.random(-360,360),function(e){return e.getAttribute("data-rotation")}],scale:[.7,1],opacity:[0,1],easing:"easeInOutExpo"})}}(); \ No newline at end of file diff --git a/exampleSite/.gitignore b/exampleSite/.gitignore new file mode 100644 index 0000000..390de36 --- /dev/null +++ b/exampleSite/.gitignore @@ -0,0 +1,28 @@ +# Compiled Object files, Static and Dynamic libs (Shared Objects) +*.o +*.a +*.so + +# Folders +_obj +_test + +# Architecture specific extensions/prefixes +*.[568vq] +[568vq].out + +*.cgo1.go +*.cgo2.c +_cgo_defun.c +_cgo_gotypes.go +_cgo_export.* + +_testmain.go + +*.exe +*.test + +/public +/themes +/resources +.DS_Store diff --git a/exampleSite/LICENSE b/exampleSite/LICENSE new file mode 100644 index 0000000..3b91427 --- /dev/null +++ b/exampleSite/LICENSE @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2024 raydak + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/exampleSite/README.md b/exampleSite/README.md new file mode 100644 index 0000000..0304aad --- /dev/null +++ b/exampleSite/README.md @@ -0,0 +1,29 @@ +# hugoBasicExample + +This repository offers an example site for [Hugo](https://gohugo.io/) and also it provides the default content for demos hosted on the [Hugo Themes Showcase](https://themes.gohugo.io/). + +# Using + +1. [Install Hugo](https://gohugo.io/installation/) +2. Clone this repository + +```bash +git clone https://github.com/gohugoio/hugoBasicExample.git +cd hugoBasicExample +``` + +3. Clone the repository you want to test. If you want to test all Hugo Themes then follow the instructions provided [here](https://github.com/gohugoio/hugoThemes#installing-all-themes) + +4. Run Hugo and select the theme of your choosing + +```bash +hugo server -t YOURTHEME +``` + +5. Under `/content/` this repository contains the following: + +- A section called `/post/` with sample markdown content +- A headless bundle called `homepage` that you may want to use for single page applications. You can find instructions about headless bundles over [here](https://gohugo.io/content-management/page-bundles/#headless-bundle) +- An `about.md` that is intended to provide the `/about/` page for a theme demo + +6. If you intend to build a theme that does not fit in the content structure provided in this repository, then you are still more than welcome to submit it for review at the [Hugo Themes](https://github.com/gohugoio/hugoThemes/issues) repository diff --git a/exampleSite/config/_default/hugo.toml b/exampleSite/config/_default/hugo.toml new file mode 100644 index 0000000..3f68e87 --- /dev/null +++ b/exampleSite/config/_default/hugo.toml @@ -0,0 +1,38 @@ +baseURL = "https://gohugo.io" +title = "Landing page for xVOWL" +copyright = "raydak" +paginate = 3 # for demonstration of pagination +languageCode = "en" +defaultContentLanguage = "en" +enableInlineShortcodes = true +# prevent build failures when using Hugo's Instagram shortcode due to deprecated Instagram API. +# See https://github.com/gohugoio/hugo/issues/7228#issuecomment-714490456 +ignoreErrors = ["error-remote-getjson"] +theme = "hugo-theme-tailwind" +enableGitInfo = true + +[markup] +_merge = "deep" + +[taxonomies] +category = "categories" +tag = "tags" +series = "series" + +[privacy] +[privacy.vimeo] +disabled = false +simple = true + +[privacy.twitter] +disabled = false +enableDNT = true +simple = true + +[privacy.instagram] +disabled = false +simple = true + +[privacy.youtube] +disabled = false +privacyEnhanced = true diff --git a/exampleSite/config/_default/languages.toml b/exampleSite/config/_default/languages.toml new file mode 100644 index 0000000..78ea09e --- /dev/null +++ b/exampleSite/config/_default/languages.toml @@ -0,0 +1,43 @@ +[en] +languageCode = 'en-US' +languageDirection = 'ltr' +languageName = 'English' +weight = 1 +[en.menu] + +[[en.menu.main]] +identifier = "home" +name = "Home" +pageRef = "/" +weight = 10 + +[[en.menu.main]] +identifier = "post" +name = "Post" +pageRef = "post" +weight = 20 + +[[en.menu.main]] +identifier = "about" +name = "About" +pageRef = "about" +weight = 30 + + +# [zh-cn] +# languageCode = 'zh-CN' +# languageDirection = 'ltr' +# languageName = '中文' +# weight = 2 +# [zh-cn.menu] +# [[zh-cn.menu.main]] +# identifier = "post" +# name = "文章" +# pageRef = "post" +# weight = 10 + +# [[zh-cn.menu.main]] +# identifier = "about" +# name = "关于" +# pageRef = "about" +# weight = 20 diff --git a/exampleSite/config/_default/params.toml b/exampleSite/config/_default/params.toml new file mode 100644 index 0000000..50828bd --- /dev/null +++ b/exampleSite/config/_default/params.toml @@ -0,0 +1,79 @@ +# SEO keywords and description for your site. +keywords = "xvowl, vowl, webvowl, visualization, ontology, raydak" +subtitle = "Landing page for xvowl, next generation for ontology visualization and more." + +# dir name of your blog content (default is `content/posts`). +# the list of set content will show up on your index page (baseurl). +#contentTypeName = "home" + +jsonLD = true + +showAuthor = true + +[author] +name = "raydak" +email = "avoid@sending.me" + +[header] +logo = "logo.svg" + +[footer] +since = 2024 +poweredby = true + +# giscus is comments system powered by GitHub Discussions +# generate configurations from https://giscus.app/ +[giscus] +enabled = true +repo = "tomowang/hugo-theme-tailwind" +repoID = "R_kgDOKjVJHA" +category = "Announcements" +categoryID = "DIC_kwDOKjVJHM4CafqS" +mapping = "pathname" +strict = "0" +reactionsEnabled = "1" +emitMetadata = "0" +inputPosition = "bottom" +lang = "en" + +[social_media] +[[social_media.items]] +enabled = false +title = 'Facebook' +icon = 'brand-facebook' +link = 'https://www.facebook.com/' + +[[social_media.items]] +enabled = false +title = 'Twitter' +icon = 'brand-x' +link = 'https://twitter.com/__PurPleFoX__' + +[[social_media.items]] +enabled = false +title = 'Instagram' +icon = 'brand-instagram' +link = 'https://www.instagram.com/' + +[[social_media.items]] +enabled = true +title = 'LinkedIn' +icon = 'brand-linkedin' +link = 'https://www.linkedin.com/company/raydak' + +[[social_media.items]] +enabled = true +title = 'Github' +icon = 'brand-github' +link = 'https://github.com/raydak-labs' + +[pwa] +enabled = true +icon = "logo.png" # should be in assets +icon_sizes = [192, 512] + +# will be used as the manifest.json file and merge the default one +# https://developer.mozilla.org/en-US/docs/Web/Manifest +# https://web.dev/add-manifest/ +[manifest] +description = "Landing page for xVOWL" diff --git a/exampleSite/config/_default/services.toml b/exampleSite/config/_default/services.toml new file mode 100644 index 0000000..0e6626e --- /dev/null +++ b/exampleSite/config/_default/services.toml @@ -0,0 +1,15 @@ +# GA Tracking ID +[googleAnalytics] +ID = "" + +[instagram] +disableInlineCSS = true + +[twitter] +disableInlineCSS = true + +# comments +[disqus] +# https://gohugo.io/templates/internal/#disqus +# disqusShortname = "your-disqus-shortname" +shortname = '' diff --git a/exampleSite/config/production/services.toml b/exampleSite/config/production/services.toml new file mode 100644 index 0000000..8c18768 --- /dev/null +++ b/exampleSite/config/production/services.toml @@ -0,0 +1,3 @@ +# GA Tracking ID +[googleAnalytics] + ID = "" diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md new file mode 100644 index 0000000..773fe85 --- /dev/null +++ b/exampleSite/content/_index.md @@ -0,0 +1,82 @@ ++++ +title = "xVOWL" +description = "Introducing xVOWL: The Next Generation of Ontology Visualization and Editing" +date = "2024-09-06" +author = "raydak" +toc = false +enableEmoji = true ++++ + +

+ +

+ +Welcome to xVOWL, the cutting-edge solution for ontology generation, visualization, and editing. Built on the foundations of established tools like WebVOWL and Protégé, xVOWL takes ontology management to the next level with advanced features and improved performance. + +We have the idea of improving the existing solutions in regards to visualizations, exploration and working with OWL. We have many ideas which include providing state of the art visualization, full-features editors, sharable workplaces, AI infused workflows and much more. + +Before we start tackling this we want to see if we have enough interest and even maybe some possible investors or funders (like universities or companies) who would like to support and provide their influence into the products. + +> ❕ This is a research and not a finished product. If you are interested get in touch. + +## Key Features + +### Optimized Visualization + +xVOWL offers a streamlined and intuitive visual representation of complex ontologies, making it easier than ever to understand and navigate your data structures. + +

+ +

+ +### Lightning-Fast Performance + +Experience unparalleled speed in rendering and manipulating even the largest ontologies, thanks to our advanced optimization techniques. + +### Feature-Rich Editor + +Our comprehensive editing tools give you full control over your ontologies, allowing for quick and easy modifications. + + +### Enterprise-Ready + +xVOWL comes with robust organization and sharing functionalities, making it the perfect choice for teams and large-scale projects. + +### AI-Powered Assistance + +Leverage the power of artificial intelligence to automate tedious tasks and gain new insights into your ontologies. + +## Why Choose xVOWL? + +xVOWL combines the best features of existing tools with innovative new capabilities: + +- **WebVOWL**: A web-based visualization of ontologies[1]. +- **ProtegeVOWL**: A powerful Protégé plugin for ontology visualization[2]. +- **OWL2VOWL**: Efficient conversion of ontologies for visualization[3]. +- **OntoBench**: A modular generator for OWL ontologies[4]. + +While these tools have paved the way, xVOWL takes ontology management to new heights by offering enhanced visualization, superior editing capabilities, and cutting-edge AI features all in one comprehensive package. + +## Stay Updated + +Don't miss out on the latest xVOWL developments! + +[Subscribe for project updates](https://docs.google.com/forms/d/e/1FAIpQLSe9lQJZHbm1mpbrRRG7HBo09t4Op-vJig_vEzVJmgUL3Hap4Q/viewform?usp=sf_link) + +## Support xVOWL + +Interested in being part of the xVOWL journey? + +[Contact us about investment opportunities](https://docs.google.com/forms/d/e/1FAIpQLSdxy7eNF4XBV8zntN4gTk4JQxXQdg73Q9nLxpWB65sbi5XpCg/viewform?usp=sf_link) + +## Reference Projects + +1. **WebVOWL**: A web application for the interactive visualization of ontologies. It implements the Visual Notation for OWL Ontologies (VOWL). [GitHub](https://github.com/VisualDataWeb/WebVOWL) + +2. **ProtegeVOWL**: A Protégé plugin that implements the VOWL specification for visualizing ontologies. [GitHub](https://github.com/VisualDataWeb/ProtegeVOWL) + +3. **OWL2VOWL**: A tool that converts ontologies into a JSON format used by WebVOWL for visualization. [GitHub](https://github.com/VisualDataWeb/OWL2VOWL) + +4. **OntoBench**: A modular generator for OWL ontologies, useful for testing and benchmarking ontology tools. [GitHub](https://github.com/VisualDataWeb/OntoBench) + +Stay tuned for more updates as we continue to develop xVOWL, the future of ontology visualization and editing! diff --git a/exampleSite/content/_sample_post/emoji-support/index.md b/exampleSite/content/_sample_post/emoji-support/index.md new file mode 100644 index 0000000..dc3589a --- /dev/null +++ b/exampleSite/content/_sample_post/emoji-support/index.md @@ -0,0 +1,46 @@ ++++ +author = "Hugo Authors" +title = "Emoji Support" +date = "2019-03-05" +description = "Guide to emoji usage in Hugo" +tags = [ + "emoji", +] ++++ + +Emoji can be enabled in a Hugo project in a number of ways. + +The [`emojify`](https://gohugo.io/functions/emojify/) function can be called directly in templates or [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes). + +To enable emoji globally, set `enableEmoji` to `true` in your site's [configuration](https://gohugo.io/getting-started/configuration/) and then you can type emoji shorthand codes directly in content files; e.g. + +

🙈 :see_no_evil: 🙉 :hear_no_evil: 🙊 :speak_no_evil:

+
+ +The [Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) is a useful reference for emoji shorthand codes. + +*** + +**N.B.** The above steps enable Unicode Standard emoji characters and sequences in Hugo, however the rendering of these glyphs depends on the browser and the platform. To style the emoji you can either use a third party emoji font or a font stack; e.g. + +{{< highlight html >}} +.emoji { + font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; +} +{{< /highlight >}} + +{{< css.inline >}} + +{{< /css.inline >}} diff --git a/exampleSite/content/_sample_post/emoji-support/index.zh-cn.md b/exampleSite/content/_sample_post/emoji-support/index.zh-cn.md new file mode 100644 index 0000000..0f83112 --- /dev/null +++ b/exampleSite/content/_sample_post/emoji-support/index.zh-cn.md @@ -0,0 +1,46 @@ ++++ +author = "Hugo Authors" +title = "Emoji 支持" +date = "2019-03-05" +description = "在Hugo中使用Emoji的指引" +tags = [ + "emoji", +] ++++ + +可以在一个 Hugo 项目中通过多种方式启用 Emoji。 + +[`emojify`](https://gohugo.io/functions/emojify/) 函数可以被直接在模板或 [Inline Shortcodes](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes) 中调用。 + +若要全局启用 emoji,在你的网站的 [配置](https://gohugo.io/getting-started/configuration/) 中将 `enableEmoji` 设置为 `true`,然后你就可以直接在内容文件中输入 emoji 的简写代码;例如: + +

🙈 :see_no_evil: 🙉 :hear_no_evil: 🙊 :speak_no_evil:

+
+ +[Emoji 速查表](http://www.emoji-cheat-sheet.com/) 是 emoji 简写代码的有用参考。 + +*** + +**注** 上述步骤可以在 Hugo 中启用 Unicode 标准的 emoji 字符和序列,但是这些字形的呈现取决于浏览器和平台。要给 emoji 设置样式,你可以使用第三方 emoji 字体或字体堆栈;例如: + +{{< highlight html >}} +.emoji { + font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; +} +{{< /highlight >}} + +{{< css.inline >}} + +{{< /css.inline >}} diff --git a/exampleSite/content/_sample_post/image-process/images/behnam-norouzi-_1ok63FFlM4-unsplash.jpg b/exampleSite/content/_sample_post/image-process/images/behnam-norouzi-_1ok63FFlM4-unsplash.jpg new file mode 100644 index 0000000..55b9d5d Binary files /dev/null and b/exampleSite/content/_sample_post/image-process/images/behnam-norouzi-_1ok63FFlM4-unsplash.jpg differ diff --git a/exampleSite/content/_sample_post/image-process/images/hugo-logo-wide.svg b/exampleSite/content/_sample_post/image-process/images/hugo-logo-wide.svg new file mode 100644 index 0000000..1f6a79e --- /dev/null +++ b/exampleSite/content/_sample_post/image-process/images/hugo-logo-wide.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/exampleSite/content/_sample_post/image-process/images/logo.png b/exampleSite/content/_sample_post/image-process/images/logo.png new file mode 100644 index 0000000..0af3898 Binary files /dev/null and b/exampleSite/content/_sample_post/image-process/images/logo.png differ diff --git a/exampleSite/content/_sample_post/image-process/index.md b/exampleSite/content/_sample_post/image-process/index.md new file mode 100644 index 0000000..97890dc --- /dev/null +++ b/exampleSite/content/_sample_post/image-process/index.md @@ -0,0 +1,20 @@ ++++ +# author = "Hugo Authors" +title = "Image Process" +date = "2023-12-01" +description = "Demo of Hugo's image processing" +tags = ["custom"] +toc = false +image = "images/hugo-logo-wide.svg" +categories = ["with-slug"] ++++ + +![Photo by Behnam Norouzi on Unsplash](./images/behnam-norouzi-_1ok63FFlM4-unsplash.jpg "Photo by Behnam Norouzi on Unsplash") + +![placeholder](https://placeholder.co/1024x768/png "Test for external image") + +![svg](./images/hugo-logo-wide.svg "Test for svg") + +

+ +

diff --git a/exampleSite/content/_sample_post/image-process/index.zh-cn.md b/exampleSite/content/_sample_post/image-process/index.zh-cn.md new file mode 100644 index 0000000..b879de2 --- /dev/null +++ b/exampleSite/content/_sample_post/image-process/index.zh-cn.md @@ -0,0 +1,20 @@ ++++ +# author = "Hugo Authors" +title = "图片处理" +date = "2023-12-01" +description = "关于Hugo中图片处理的示例" +tags = ["custom"] +toc = false +image = "images/hugo-logo-wide.svg" +categories = ["with-slug"] ++++ + +![Photo by Behnam Norouzi on Unsplash](./images/behnam-norouzi-_1ok63FFlM4-unsplash.jpg "Photo by Behnam Norouzi on Unsplash") + +![placeholder](https://placeholder.co/1024x768/png "Test for external image") + +![svg](./images/hugo-logo-wide.svg "Test for svg") + +

+ +

diff --git a/exampleSite/content/_sample_post/markdown-syntax/images/david-drucsko-eZ_hyar3qqc-unsplash.jpg b/exampleSite/content/_sample_post/markdown-syntax/images/david-drucsko-eZ_hyar3qqc-unsplash.jpg new file mode 100644 index 0000000..9b04476 Binary files /dev/null and b/exampleSite/content/_sample_post/markdown-syntax/images/david-drucsko-eZ_hyar3qqc-unsplash.jpg differ diff --git a/exampleSite/content/_sample_post/markdown-syntax/index.md b/exampleSite/content/_sample_post/markdown-syntax/index.md new file mode 100644 index 0000000..6dfa9c7 --- /dev/null +++ b/exampleSite/content/_sample_post/markdown-syntax/index.md @@ -0,0 +1,158 @@ ++++ +author = "Hugo Authors" +title = "Markdown Syntax Guide" +date = "2019-03-11" +description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements." +tags = [ + "markdown", + "css", + "html", + "tag1", + "tag2", +] +categories = [ + "themes", + "syntax", +] +series = ["Themes Guide"] +aliases = ["migrate-from-jekyl"] +# Photo by Dávid Drucskó on Unsplash +image = "images/david-drucsko-eZ_hyar3qqc-unsplash.jpg" ++++ + +This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme. + + +## Headings + +The following HTML `

`—`

` elements represent six levels of section headings. `

` is the highest section level while `

` is the lowest. + +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 + +## Paragraph + +Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. + +Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. + +## Blockquotes + +The blockquote element represents content that is quoted from another source, optionally with a citation which must be within a `footer` or `cite` element, and optionally with in-line changes such as annotations and abbreviations. + +### Blockquote without attribution + +> Tiam, ad mint andaepu dandae nostion secatur sequo quae. +> **Note** that you can use *Markdown syntax* within a blockquote. + +### Blockquote with attribution + +> Don't communicate by sharing memory, share memory by communicating.
+> — Rob Pike[^1] + +[^1]: The above quote is excerpted from Rob Pike's [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) during Gopherfest, November 18, 2015. + +## Tables + +Tables aren't part of the core Markdown spec, but Hugo supports them out-of-the-box. + + Name | Age +--------|------ + Bob | 27 + Alice | 23 + +### Inline Markdown within tables + +| Italics | Bold | Code | +| -------- | -------- | ------ | +| *italics* | **bold** | `code` | + +## Code Blocks + +### Code block with backticks + +```html {linenos=true} + + + + + Example HTML5 Document + + +

Test

+ + +``` + +### Code block indented with four spaces + + + + + + Example HTML5 Document + + +

Test

+ + + +### Code block with Hugo's internal highlight shortcode +{{< highlight html >}} + + + + + Example HTML5 Document + + +

Test

+ + +{{< /highlight >}} + +## List Types + +### Ordered List + +1. First item +2. Second item +3. Third item + +### Unordered List + +* List item +* Another item +* And another item + +### Nested list + +* Fruit + * Apple + * Orange + * Banana +* Dairy + * Milk + * Cheese + +### List with checkbox + +- [x] Create a Hugo site +- [x] Add content +- [ ] Add a style + +## Other Elements — abbr, sub, sup, kbd, mark + +GIF is a bitmap image format. + +H2O + +Xn + Yn = Zn + +Press CTRL+ALT+Delete to end the session. + +Most salamanders are nocturnal, and hunt for insects, worms, and other small creatures. diff --git a/exampleSite/content/_sample_post/markdown-syntax/index.zh-cn.md b/exampleSite/content/_sample_post/markdown-syntax/index.zh-cn.md new file mode 100644 index 0000000..00b5abf --- /dev/null +++ b/exampleSite/content/_sample_post/markdown-syntax/index.zh-cn.md @@ -0,0 +1,159 @@ ++++ +author = "Hugo Authors" +title = "Markdown语法指导" +date = "2019-03-11" +description = "Sample article showcasing basic Markdown syntax and formatting for HTML elements." +tags = [ + "markdown", + "css", + "html", + "tag1", + "tag2", +] +categories = [ + "themes", + "syntax", +] +series = ["Themes Guide"] +aliases = ["migrate-from-jekyl"] +# Photo by Dávid Drucskó on Unsplash +image = "images/david-drucsko-eZ_hyar3qqc-unsplash.jpg" ++++ + +本文档提供可用于 Hugo 内容文件的基本 Markdown 语法示例,并且还展示了 Hugo 主题中是否用 CSS 修饰了 HTML 基本元素。 + + +## 标题 + +以下 HTML `

`-`

` 元素表示六个级别的分节标题。 `

` 是最高级别分节标题,而 `

` 是最低级别分节标题。 + +# H1 +## H2 +### H3 +#### H4 +##### H5 +###### H6 + +## 段落 + +Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. + +Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. + +## 块引用 + +blockquote 元素表示从另一个资源引用的内容,可能带有一个在 `footer` 或 `cite` 元素内的引用,或者带有诸如注释和缩写之类的行内更改。 + +### 没有归属的块引用 + +> Tiam, ad mint andaepu dandae nostion secatur sequo quae. +> **请注意**在代码块中可以使用 *Markdown 语法*。 + +### 带有归属的块引用 + +> 不要通过共享内存进行通信,而是通过通信共享内存。
+> - Rob Pike[^1] + +[^1] 上述引用摘自 Rob Pike 于 2015 年 11 月 18 日在 Gopherfest 期间进行的 [演讲](https://www.youtube.com/watch?v=PAAkCSZUG1c)。 + +## 表格 + +表格不是核心 Markdown 规范的一部分,但 Hugo 开箱即用地支持表格。 + +| Name | Age +| ------ | ------ | +| Bob | 27 +| Alice | 23 + +### 表格中的行内 Markdown + +| 斜体 | 粗体 | 代码 | +| ------ | ------ | ------ | +| *斜体* | **粗体** | `代码` | + +## 代码块 + +### 带反引号的代码块 + +```html {linenos=true} + + + + + Example HTML5 Document + + +

Test

+ + +``` + +### 用四个空格缩进的代码块 + + + + + + Example HTML5 Document + + +

Test

+ + + +### 带有 Hugo 内部高亮短代码的代码块 + +{{< highlight html >}} + + + + + Example HTML5 Document + + +

Test

+ + +{{< /highlight >}} + +## 列表类型 + +### 有序列表 + +1. 第一个项目 +2. 第二个项目 +3. 第三个项目 + +### 无序列表 + +* 项目一 +* 项目二 +* 项目三 + +### 嵌套列表 + +* 水果 + * 苹果 + * 橙子 + * 香蕉 +* 乳制品 + * 牛奶 + * 奶酪 + +### 带有复选框的列表 + +- [x] 创建 Hugo 网站 +- [x] 添加内容 +- [ ] 添加样式 + +## 其他元素 - abbr、sub、sup、kbd、mark + +GIF 是一种位图图像格式。 + +H2O + +Xn + Yn = Zn + +按 CTRL+ALT+Delete 结束会话。 + +大多数 火蜥蜴 在夜间活动,并捕食昆虫、蠕虫和其他小型生物。 diff --git a/exampleSite/content/_sample_post/math-typesetting/index.md b/exampleSite/content/_sample_post/math-typesetting/index.md new file mode 100644 index 0000000..92143e1 --- /dev/null +++ b/exampleSite/content/_sample_post/math-typesetting/index.md @@ -0,0 +1,51 @@ +--- +author: Hugo Authors +title: Math Typesetting +date: 2019-03-08 +description: A brief guide to setup KaTeX +math: true +# Photo by Antoine Dautry on Unsplash +image: "/images/antoine-dautry-05A-kdOH6Hw-unsplash.jpg" +--- + +Mathematical notation in a Hugo project can be enabled by using third party JavaScript libraries. + + +In this example we will be using [KaTeX](https://katex.org/) + +- Create a partial under `/layouts/partials/math.html` +- Within this partial reference the [Auto-render Extension](https://katex.org/docs/autorender.html) or host these scripts locally. +- Include the partial in your templates like so: + +```bash +{{ if or .Params.math .Site.Params.math }} +{{ partial "math.html" . }} +{{ end }} +``` + +- To enable KaTeX globally set the parameter `math` to `true` in a project's configuration +- To enable KaTeX on a per page basis include the parameter `math: true` in content files + +**Note:** Use the online reference of [Supported TeX Functions](https://katex.org/docs/supported.html) + +{{< math.inline >}} +{{ if or .Page.Params.math .Site.Params.math }} + + + + +{{ end }} +{{}} + +## Examples + +{{< math.inline >}} +

+Inline math: \(\varphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\) +

+{{}} + +Block math: +$$ + \varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } +$$ diff --git a/exampleSite/content/_sample_post/math-typesetting/index.zh-cn.md b/exampleSite/content/_sample_post/math-typesetting/index.zh-cn.md new file mode 100644 index 0000000..e6606f2 --- /dev/null +++ b/exampleSite/content/_sample_post/math-typesetting/index.zh-cn.md @@ -0,0 +1,51 @@ +--- +author: Hugo Authors +title: 数学符号 +date: 2019-03-08 +description: KaTeX 设置简要指南 +math: true +# Photo by Antoine Dautry on Unsplash +image: "/images/antoine-dautry-05A-kdOH6Hw-unsplash.jpg" +--- + +在 Hugo 项目中,可以通过使用第三方 JavaScript 库来启用数学符号。 + + +在本示例中,我们将使用 [KaTeX](https://katex.org/) + +- 在 `/layouts/partials/math.html` 下创建一个局部文件 +- 在此局部文件中引用 [自动渲染扩展名](https://katex.org/docs/autorender.html) 或在本地托管这些脚本。 +- 以以下方式在模板中包含局部文件: + +```bash +{{ if or .Params.math .Site.Params.math }} +{{ partial "math.html" . }} +{{ end }} +``` + +- 要在全局启用 KaTeX,请在项目的配置中将参数 `math` 设置为 `true` +- 要逐页启用 KaTeX,请在内容文件中包含参数 `math: true` + +**注意:**使用 [Supported TeX Functions](https://katex.org/docs/supported.html) 的在线参考 + +{{< math.inline >}} +{{ if or .Page.Params.math .Site.Params.math }} + + + + +{{ end }} +{{}} + +## 示例 + +{{< math.inline >}} +

+行内数学:\( arphi = \dfrac{1+\sqrt5}{2}= 1.6180339887…\) +

+{{}} + +块级数学: +$$ + arphi = 1+ rac{1} {1+ rac{1} {1+ rac{1} {1+\cdots} } } +$$ diff --git a/exampleSite/content/_sample_post/placeholder-text/index.md b/exampleSite/content/_sample_post/placeholder-text/index.md new file mode 100644 index 0000000..9ed5f69 --- /dev/null +++ b/exampleSite/content/_sample_post/placeholder-text/index.md @@ -0,0 +1,45 @@ ++++ +author = "Hugo Authors" +title = "Placeholder Text" +date = "2019-03-09" +description = "Lorem Ipsum Dolor Si Amet" +tags = [ + "markdown", + "text", +] ++++ + +Lorem est tota propiore conpellat pectoribus de pectora summo. Redit teque digerit hominumque toris verebor lumina non cervice subde tollit usus habet Arctonque, furores quas nec ferunt. Quoque montibus nunc caluere tempus inhospita parcite confusaque translucet patri vestro qui optatis lumine cognoscere flos nubis! Fronde ipsamque patulos Dryopen deorum. + +1. Exierant elisi ambit vivere dedere +2. Duce pollice +3. Eris modo +4. Spargitque ferrea quos palude + +Rursus nulli murmur; hastile inridet ut ab gravi sententia! Nomine potitus silentia flumen, sustinet placuit petis in dilapsa erat sunt. Atria tractus malis. + +1. Comas hunc haec pietate fetum procerum dixit +2. Post torum vates letum Tiresia +3. Flumen querellas +4. Arcanaque montibus omnes +5. Quidem et + +# Vagus elidunt + + + +[The Van de Graaf Canon](https://en.wikipedia.org/wiki/Canons_of_page_construction#Van_de_Graaf_canon) + +## Mane refeci capiebant unda mulcebat + +Victa caducifer, malo vulnere contra dicere aurato, ludit regale, voca! Retorsit colit est profanae esse virescere furit nec; iaculi matertera et visa est, viribus. Divesque creatis, tecta novat collumque vulnus est, parvas. **Faces illo pepulere** tempus adest. Tendit flamma, ab opes virum sustinet, sidus sequendo urbis. + +Iubar proles corpore raptos vero auctor imperium; sed et huic: manus caeli Lelegas tu lux. Verbis obstitit intus oblectamina fixis linguisque ausus sperare Echionides cornuaque tenent clausit possit. Omnia putatur. Praeteritae refert ausus; ferebant e primus lora nutat, vici quae mea ipse. Et iter nil spectatae vulnus haerentia iuste et exercebat, sui et. + +Eurytus Hector, materna ipsumque ut Politen, nec, nate, ignari, vernum cohaesit sequitur. Vel **mitis temploque** vocatus, inque alis, *oculos nomen* non silvis corpore coniunx ne displicet illa. Crescunt non unus, vidit visa quantum inmiti flumina mortis facto sic: undique a alios vincula sunt iactata abdita! Suspenderat ego fuit tendit: luna, ante urbem Propoetides **parte**. + +{{< css.inline >}} + +{{< /css.inline >}} diff --git a/exampleSite/content/_sample_post/rich-content/239367.cast b/exampleSite/content/_sample_post/rich-content/239367.cast new file mode 100644 index 0000000..f57e2b9 --- /dev/null +++ b/exampleSite/content/_sample_post/rich-content/239367.cast @@ -0,0 +1,132 @@ +{"version": 2, "width": 84, "height": 29, "timestamp": 1554637140, "env": {"SHELL": "/bin/bash", "TERM": "screen-256color"}} +[0.09028, "o", "\u001b]0;fish /Users/sickill\u0007\u001b[30m\u001b[m\u000f"] +[0.102603, "o", "\u001b[?2004h"] +[0.121765, "o", "\u001b]0;fish /Users/sickill\u0007\u001b[30m\u001b[m\u000f"] +[0.121923, "o", "\u001b[38;5;237m⏎\u001b[m\u000f \r⏎ \r\u001b[K"] +[0.12214, "o", "\u001b[32m~\u001b[30m\u001b[m\u000f \u001b[30m\u001b[m\u000f\u001b[K"] +[1.966641, "o", "curl parrot.live"] +[1.973978, "o", "\u001b]0;fish /Users/sickill\u0007\u001b[30m\u001b[m\u000f\r"] +[1.974296, "o", "\u001b[32m~\u001b[30m\u001b[m\u000f \u001b[30m\u001b[m\u000fcurl parrot.live\u001b[K"] +[1.974511, "o", "\u001b[16D\u001b[1mcurl\u001b[m\u000f \u001b[36mparrot.live\u001b[30m\u001b[m\u000f"] +[4.096275, "o", "\r\n\u001b[30m\u001b[m"] +[4.096545, "o", "\u000f\u001b[?2004l"] +[4.096935, "o", "\u001b]0;curl /Users/sickill\u0007"] +[4.097091, "o", "\u001b[30m\u001b[m\u000f\r"] +[5.328188, "o", "\u001b[2J\u001b[H\u001b[34m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n"] +[5.328628, "o", " .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[5.398311, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[5.470065, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[5.543963, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[5.61658, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[5.677096, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[5.755831, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[5.825383, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n"] +[5.825764, "o", " ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[5.882428, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[5.951771, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[6.027102, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[6.09631, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[6.163954, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[6.233955, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[6.308217, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\n"] +[6.308384, "o", "o..........................................;' \r\n"] +[6.373039, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[6.443241, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[6.514035, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[6.583848, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\n"] +[6.584025, "o", "Ol;......................................;l' \r\n"] +[6.654456, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[6.725009, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[6.795009, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[6.864941, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n"] +[6.865422, "o", " cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[6.935, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n"] +[6.935475, "o", " ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[7.005451, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[7.075333, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[7.145387, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[7.216986, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[7.286992, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[7.357292, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[7.427361, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n"] +[7.427682, "o", " .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[7.497303, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[7.567307, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[7.637248, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[7.70735, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[7.778325, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[7.848826, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n"] +[7.849, "o", ",dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[7.918515, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[7.989174, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[8.058852, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[8.12893, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[8.199227, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[8.269897, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[8.339491, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[8.409768, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[8.48005, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\n"] +[8.48031, "o", "cNo.....................................oc \r\n"] +[8.55039, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[8.620683, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[8.690616, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\n"] +[8.691067, "o", "Ol;......................................;l' \r\n"] +[8.760882, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[8.830927, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[8.901198, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[8.971625, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n"] +[8.971974, "o", " co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[9.042841, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[9.112637, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[9.182773, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[9.253295, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[9.322884, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[9.39252, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[9.463146, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[9.532606, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[9.602382, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ckx;'........':c. \r\n"] +[9.602613, "o", " .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[9.672752, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[9.742476, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[9.812892, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\n"] +[9.813205, "o", "o...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[9.882793, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[9.953225, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[10.023205, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[10.093162, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[10.163296, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[10.233802, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[10.303999, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[10.374435, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[10.444122, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[10.51374, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[10.583615, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[10.65362, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[10.723725, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[10.794024, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[10.863411, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[10.934324, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[11.005975, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[11.076258, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[11.147917, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[31m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[11.218079, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[37m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[11.287851, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[36m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[11.358145, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[11.427792, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\ncNo.....................................oc \r\n"] +[11.498139, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[11.56807, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n ,ddoodd, \r\n .cc' ,ooccoo,'cc. \r\n .ccldo;...',,...;oxdc. \r\n .,,:cc;.,'..;lol;;,'..lkl. \r\n .dOc';:ccl;..;dl,.''.....oc \r\n .,lc',cdddddlccld;.,;c::'..,cc:. \r\n cNo..:ddddddddddd;':clll;,c,';xc \r\n .lo;,clddddddddddd;':clll;:kc..;' \r\n .,c;..:ddddddddddddd:';clll,;ll,.. \r\n ;Oc..';:ldddddddddddl,.,c:;';dd;.. \r\n .''',:c:,'cdddddddddddo:,''..'cdd;.. \r\n .cdc';lddd:';lddddddddddddd;.';lddl,.. \r\n .,;::;,cdddddol;;lllllodddddddlcldddd:.'l; \r\n .dOc..,lddddddddlcc:;'';cclddddddddddd;;ll. \r\n .coc,;::ldddddddddddddlcccc:ldddddddddl:,cO; \r\n,xl::,..,cccccccccccccccccccccccccccccccc:;':xx, \r\ncNd.........................................;lOc \r\n"] +[11.638579, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .cccc;;cc;';c. \r\n .,:dkdc:;;:c:,:d:. \r\n .loc'.,cc::c:::,..;:. \r\n .cl;....;dkdccc::,...c; \r\n .c:,';:'..ckc',;::;....;c. \r\n .c:'.,dkkoc:ok:;llllc,,c,';:. \r\n .;c,';okkkkkkkk:;lllll,:kd;.;:,. \r\n co..:kkkkkkkkkk:;llllc':kkc..oNc \r\n .cl;.,oxkkkkkkkkkc,:cll;,okkc'.cO; \r\n ;k:..ckkkkkkkkkkkl..,;,.;xkko:',l' \r\n .,...';dkkkkkkkkkkd;.....ckkkl'.cO; \r\n .,,:,.;oo:ckkkkkkkkkkkdoc;;cdkkkc..cd, \r\n .cclo;,ccdkkl;llccdkkkkkkkkkkkkkkkd,.c; \r\n .lol:;;okkkkkxooc::coodkkkkkkkkkkkko'.oc \r\n .c:'..lkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.oc \r\n .lo;,:cdkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkd,.c; \r\n,dx:..;lllllllllllllllllllllllllllllllllc'... \r\ncNO;........................................ \r\n"] +[11.710053, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ckx;'........':c. \r\n .,:c:::::oxxocoo::::,',. \r\n .odc'..:lkkoolllllo;..;d, \r\n ;c..:o:..;:..',;'.......;. \r\n ,c..:0Xx::o:.,cllc:,'::,.,c. \r\n ;c;lkXKXXXXl.;lllll;lKXOo;':c. \r\n ,dc.oXXXXXXXXl.,lllll;lXXXXx,c0: \r\n ;Oc.oXXXXXXXXo.':ll:;'oXXXXO;,l' \r\n 'l;;kXXXXXXXXd'.'::'..dXXXXO;,l' \r\n 'l;:0XXXXXXXX0x:...,:o0XXXXx,:x, \r\n 'l;;kXXXXXXXXXKkol;oXXXXXXXO;oNc \r\n ,c'..ckk0XXXXXXXXXX00XXXXXXX0:;o:. \r\n .':;..:do::ooookXXXXXXXXXXXXXXXo..c; \r\n .',',:co0XX0kkkxxOXXXXXXXXXXXXXXXOc..;l. \r\n .:;'..oXXXXXXXXXXXXXXXXXXXXXXXXXXXXXko;';:. \r\n.ldc..:oOXKXXXXXXKXXKXXXXXXXXXXXXXXXXXXXo..oc \r\n:0o...:dxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxo,.:, \r\ncNo........................................;' \r\n"] +[11.779449, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m .cc;. ... .;c. \r\n .,,cc:cc:lxxxl:ccc:;,. \r\n .lo;...lKKklllookl..cO; \r\n .cl;.,:'.okl;..''.;,..';:. \r\n .:o;;dkd,.ll..,cc::,..,'.;:,. \r\n co..lKKKkokl.':lloo;''ol..;dl. \r\n .,c;.,xKKKKKKo.':llll;.'oOxl,.cl,. \r\n cNo..lKKKKKKKo'';llll;;okKKKl..oNc \r\n cNo..lKKKKKKKko;':c:,'lKKKKKo'.oNc \r\n cNo..lKKKKKKKKKl.....'dKKKKKxc,l0: \r\n .c:'.lKKKKKKKKKk;....lKKKKKKo'.oNc \r\n ,:.'oxOKKKKKKKOxxxxOKKKKKKxc,;ol:. \r\n ;c..'':oookKKKKKKKKKKKKKKKKKk:.'clc. \r\n ,xl'.,oxo;'';oxOKKKKKKKKKKKKKKKOxxl:::;,. \r\n .dOc..lKKKkoooookKKKKKKKKKKKKKKKKKKKxl,;ol. \r\n cx,';okKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKl..;lc. \r\n co..:dddddddddddddddddddddddddddddddddl::',::. \r\n co........................................... \r\n"] +[11.850047, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m .ccccccc. \r\n .,,,;cooolccoo;;,,. \r\n .dOx;..;lllll;..;xOd. \r\n .cdo;',loOXXXXXkll;';odc. \r\n ,ol:;c,':oko:cccccc,...ckl. \r\n ;c.;kXo..::..;c::'.......oc \r\n,dc..oXX0kk0o.':lll;..cxxc.,ld, \r\nkNo.'oXXXXXXo',:lll;..oXXOo;cOd. \r\nKOc;oOXXXXXXo.':lol;..dXXXXl';xc \r\nOl,:k0XXXXXX0c.,clc'.:0XXXXx,.oc \r\nKOc;dOXXXXXXXl..';'..lXXXXXo..oc \r\ndNo..oXXXXXXXOx:..'lxOXXXXXk,.:; .. \r\ncNo..lXXXXXXXXXOolkXXXXXXXXXkl,..;:';. \r\n.,;'.,dkkkkk0XXXXXXXXXXXXXXXXXOxxl;,;,;l:. \r\n ;c.;:''''':doOXXXXXXXXXXXXXXXXXXOdo;';clc. \r\n ;c.lOdood:'''oXXXXXXXXXXXXXXXXXXXXXk,..;ol. \r\n ';.:xxxxxocccoxxxxxxxxxxxxxxxxxxxxxxl::'.';;. \r\n ';........................................;l' \r\n"] +[11.920523, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n .;:;;,.,;;::,. \r\n .;':;........'co:. \r\n .clc;'':cllllc::,.':c. \r\n .lo;;o:coxdllllllc;''::,,. \r\n.c:'.,cl,.'l:',,;;'......cO; \r\ndo;';oxoc;:l;;llllc'.';;'.,;. \r\nc..ckkkkkkkd,;llllc'.:kkd;.':c. \r\n'.,okkkkkkkkc;lllll,.:kkkdl,cO; \r\n..;xkkkkkkkkc,ccll:,;okkkkk:,co, \r\n..,dkkkkkkkkc..,;,'ckkkkkkkc;ll. \r\n..'okkkkkkkko,....'okkkkkkkc,:c. \r\nc..ckkkkkkkkkdl;,:okkkkkkkkd,.',';. \r\nd..':lxkkkkkkkkxxkkkkkkkkkkkdoc;,;'..'.,. \r\no...'';llllldkkkkkkkkkkkkkkkkkkdll;..'cdo. \r\no..,l;'''''';dkkkkkkkkkkkkkkkkkkkkdlc,..;lc. \r\no..;lc;;;;;;,,;clllllllllllllllllllllc'..,:c. \r\no..........................................;' \r\n"] +[11.99046, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[32m \r\n .,,,,,,,,,. \r\n .ckKxodooxOOdcc. \r\n .cclooc'....';;cool. \r\n .loc;;;;clllllc;;;;;:;,. \r\n .c:'.,okd;;cdo:::::cl,..oc \r\n .:o;';okkx;';;,';::;'....,:,. \r\n co..ckkkkkddkc,cclll;.,c:,:o:. \r\n co..ckkkkkkkk:,cllll;.:kkd,.':c. \r\n.,:;.,okkkkkkkk:,cclll;.ckkkdl;;o:. \r\ncNo..ckkkkkkkkko,.;loc,.ckkkkkc..oc \r\n,dd;.:kkkkkkkkkx;..;:,.'lkkkkko,.:, \r\n ;:.ckkkkkkkkkkc.....;ldkkkkkk:.,' \r\n,dc..'okkkkkkkkkxoc;;cxkkkkkkkkc..,;,. \r\nkNo..':lllllldkkkkkkkkkkkkkkkkkdcc,.;l. \r\nKOc,c;''''''';lldkkkkkkkkkkkkkkkkkc..;lc. \r\nxx:':;;;;,.,,...,;;cllllllllllllllc;'.;od, \r\ncNo.....................................oc \r\n"] +[12.060499, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[35m \r\n \r\n .ccccccc. \r\n .ccckNKOOOOkdcc. \r\n .;;cc:ccccccc:,:c::,,. \r\n .c;:;.,cccllxOOOxlllc,;ol. \r\n .lkc,coxo:;oOOxooooooo;..:, \r\n .cdc.,dOOOc..cOd,.',,;'....':l. \r\n cNx'.lOOOOxlldOc..;lll;.....cO; \r\n ,do;,:dOOOOOOOOOl'':lll;..:d:''c, \r\n co..lOOOOOOOOOOOl'':lll;.'lOd,.cd. \r\n co.'dOOOOOOOOOOOo,.;llc,.,dOOc..dc \r\n co..lOOOOOOOOOOOOc.';:,..cOOOl..oc \r\n .,:;.'::lxOOOOOOOOOo:'...,:oOOOc.'dc \r\n ;Oc..cl'':lldOOOOOOOOdcclxOOOOx,.cd. \r\n .:;';lxl''''':lldOOOOOOOOOOOOOOc..oc \r\n,dl,.'cooc:::,....,::coooooooooooc'.c: \r\ncNo.................................oc \r\n"] +[12.131793, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[33m \r\n \r\n \r\n .cccccccc. \r\n .,,,;;cc:cccccc:;;,. \r\n .cdxo;..,::cccc::,..;l. \r\n ,do:,,:c:coxxdllll:;,';:,. \r\n .cl;.,oxxc'.,cc,.';;;'...oNc \r\n ;Oc..cxxxc'.,c;..;lll;...cO; \r\n .;;',:ldxxxdoldxc..;lll:'...'c, \r\n ;c..cxxxxkxxkxxxc'.;lll:'','.cdc. \r\n .c;.;odxxxxxxxxxxxd;.,cll;.,l:.'dNc \r\n .:,''ccoxkxxkxxxxxxx:..,:;'.:xc..oNc \r\n .lc,.'lc':dxxxkxxxxxxxol,...',lx:..dNc \r\n .:,',coxoc;;ccccoxxxxxxxxo:::oxxo,.cdc. \r\n .;':;.'oxxxxxc''''';cccoxxxxxxxxxxxc..oc \r\n,do:'..,:llllll:;;;;;;,..,;:lllllllll;..oc \r\n"] +[12.132169, "o", "cNo.....................................oc \r\n"] +[12.201623, "o", "\u001b[39m\u001b[2J\u001b[H\u001b[34m \r\n \r\n .ccccc. \r\n .cc;'coooxkl;. \r\n .:c:::c:,,,,,;c;;,.'. \r\n .clc,',:,..:xxocc;'..c; \r\n .c:,';:ox:..:c,,,,,,...cd, \r\n .c:'.,oxxxxl::l:.,loll;..;ol. \r\n ;Oc..:xxxxxxxxx:.,llll,....oc \r\n .,;,',:loxxxxxxxxx:.,llll;.,,.'ld, \r\n .lo;..:xxxxxxxxxxxx:.'cllc,.:l:'cO; \r\n .:;...'cxxxxxxxxxxxxoc;,::,..cdl;;l' \r\n .cl;':,'';oxxxxxxdxxxxxx:....,cooc,cO; \r\n .,,,::;,lxoc:,,:lxxxxxxxxxxxo:,,;lxxl;'oNc \r\n .cdxo;':lxxxxxxc'';cccccoxxxxxxxxxxxxo,.;lc. \r\n .loc'.'lxxxxxxxxocc;''''';ccoxxxxxxxxx:..oc \r\nolc,..',:cccccccccccc:;;;;;;;;:ccccccccc,.'c, \r\nOl;......................................;l' \r\n"] +[12.270371, "o", "^C"] +[12.29124, "o", "\u001b]0;fish /Users/sickill\u0007\u001b[30m\u001b[m\u000f"] +[12.29149, "o", "\u001b[38;5;237m⏎\u001b[m\u000f \r⏎ \r\u001b[K\u001b[32m~\u001b[30m\u001b[m\u000f \u001b[30m\u001b[m\u000f\u001b[K"] +[13.863472, "o", "\r\n\u001b[30m\u001b[m\u000f\u001b[30m\u001b[m\u000f"] +[13.863651, "o", "\u001b[?2004l"] diff --git a/exampleSite/content/_sample_post/rich-content/index.md b/exampleSite/content/_sample_post/rich-content/index.md new file mode 100644 index 0000000..ed37732 --- /dev/null +++ b/exampleSite/content/_sample_post/rich-content/index.md @@ -0,0 +1,61 @@ ++++ +author = "Hugo Authors" +title = "Rich Content" +date = "2019-03-10" +description = "A brief description of Hugo Shortcodes" +tags = [ + "shortcodes", + "privacy", +] +asciinema = true ++++ + +Hugo ships with several [Built-in Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes) for rich content, along with a [Privacy Config](https://gohugo.io/about/hugo-and-gdpr/) and a set of Simple Shortcodes that enable static and no-JS versions of various social media embeds. + +--- + +## Github gist Shortcode + +{{< gist tomowang c29ef5bfc7eac018edc6307a43ffbf3d >}} + +## YouTube Privacy Enhanced Shortcode + +{{< youtube ms32oqonz04 >}} + +
+ +--- + +## Twitter Simple Shortcode + +{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}} + +
+ +--- + +## Vimeo Simple Shortcode + +{{< vimeo_simple 48912912 >}} + +
+ +--- + +## BiliBili Simple Shortcode + +{{< bilibili BV1kE41147oo >}} + +
+ +--- + +## Asciinema + +### Embed Shortcode + +{{< asciinema 239367 >}} + +### Local Shortcode + +{{< asciinema_local "239367.cast" >}} diff --git a/exampleSite/content/_sample_post/rich-content/index.zh-cn.md b/exampleSite/content/_sample_post/rich-content/index.zh-cn.md new file mode 100644 index 0000000..ee4fcfb --- /dev/null +++ b/exampleSite/content/_sample_post/rich-content/index.zh-cn.md @@ -0,0 +1,61 @@ ++++ +author = "Hugo Authors" +title = "富文本内容" +date = "2019-03-10" +description = "Hugo Shortcodes的简单说明" +tags = [ + "shortcodes", + "privacy", +] +asciinema = true ++++ + +Hugo 附带了几个用于丰富内容的[Shortcodes](https://gohugo.io/content-management/shortcodes/#use-hugos-built-in-shortcodes),以及一个[隐私配置](https: //gohugo.io/about/hugo-and-gdpr/)和一组简单的短代码,可实现各种社交媒体嵌入的静态和非 JS 版本。 + +--- + +## Github gist Shortcode + +{{< gist tomowang c29ef5bfc7eac018edc6307a43ffbf3d >}} + +## YouTube Privacy Enhanced Shortcode + +{{< youtube ms32oqonz04 >}} + +
+ +--- + +## Twitter Simple Shortcode + +{{< tweet user="SanDiegoZoo" id="1453110110599868418" >}} + +
+ +--- + +## Vimeo Simple Shortcode + +{{< vimeo_simple 48912912 >}} + +
+ +--- + +## BiliBili Simple Shortcode + +{{< bilibili BV1kE41147oo >}} + +
+ +--- + +## Asciinema + +### Embed Shortcode + +{{< asciinema 239367 >}} + +### Local Shortcode + +{{< asciinema_local "239367.cast" >}} diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md new file mode 100644 index 0000000..42828b2 --- /dev/null +++ b/exampleSite/content/about.md @@ -0,0 +1,25 @@ ++++ +title = "About xvowl" +date = "2024-09-06" +aliases = ["about"] +author = "raydak" +toc = false ++++ + +xvowl is an innovative visualization tool designed specifically for research purposes. Built with Hugo and Tailwind CSS, xvowl offers a powerful and flexible platform for researchers to visualize complex data and concepts. + +## Technology Stack + +xvowl leverages modern web technologies to provide a robust and efficient visualization experience: + +- **Hugo**: The world's fastest framework for building websites, providing a solid foundation for xvowl. +- **Tailwind CSS**: A utility-first CSS framework that allows for rapid UI development and customization. + +## Acknowledgements + +We extend our sincere gratitude to [tomowang](https://github.com/tomowang) for their excellent Hugo theme, which served as the basis for xvowl's design. The theme can be found at: + +[https://github.com/tomowang/hugo-theme-tailwind](https://github.com/tomowang/hugo-theme-tailwind) + + +Join us in advancing research visualization with xvowl! diff --git a/exampleSite/content/about.zh-cn.md b/exampleSite/content/about.zh-cn.md new file mode 100644 index 0000000..25c13c0 --- /dev/null +++ b/exampleSite/content/about.zh-cn.md @@ -0,0 +1,9 @@ ++++ +title = "关于" +description = "Hugo, 世上最快的站点构建框架" +date = "2019-02-28" +aliases = ["about-us", "about-hugo", "contact"] +author = "Hugo Authors" ++++ + +multilingual中文测试页面 diff --git a/exampleSite/content/categories/with-slug/_index.md b/exampleSite/content/categories/with-slug/_index.md new file mode 100644 index 0000000..13cdcfa --- /dev/null +++ b/exampleSite/content/categories/with-slug/_index.md @@ -0,0 +1,4 @@ +--- +title: A Category with Slug +slug: with-slug +--- diff --git a/exampleSite/content/categories/with-slug/_index.zh-cn.md b/exampleSite/content/categories/with-slug/_index.zh-cn.md new file mode 100644 index 0000000..0a6b32d --- /dev/null +++ b/exampleSite/content/categories/with-slug/_index.zh-cn.md @@ -0,0 +1,4 @@ +--- +title: 自定义 Slug 的分类 +slug: with-slug +--- diff --git a/exampleSite/content/homepage/about.md b/exampleSite/content/homepage/about.md new file mode 100644 index 0000000..b5d6981 --- /dev/null +++ b/exampleSite/content/homepage/about.md @@ -0,0 +1,7 @@ +--- +title: 'Our Difference' +button: 'About us' +weight: 2 +--- + +Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Ipsum dolor sit amet, et essent mediocritatem quo. diff --git a/exampleSite/content/homepage/index.md b/exampleSite/content/homepage/index.md new file mode 100644 index 0000000..ca03031 --- /dev/null +++ b/exampleSite/content/homepage/index.md @@ -0,0 +1,3 @@ +--- +headless: true +--- diff --git a/exampleSite/content/homepage/work.md b/exampleSite/content/homepage/work.md new file mode 100644 index 0000000..f99bc99 --- /dev/null +++ b/exampleSite/content/homepage/work.md @@ -0,0 +1,7 @@ +--- +title: 'We Help Business Grow' +button: 'Our Work' +weight: 1 +--- + +Lorem ipsum dolor sit amet, et essent mediocritatem quo, choro volumus oporteat an mei. Numquam dolores mel eu, mea docendi omittantur et, mea ea duis erat. Elit melius cu ius. Per ex novum tantas putant, ei his nullam aliquam apeirian. Aeterno quaestio constituto sea an, no eum intellegat assueverit. diff --git a/exampleSite/content/post/ldvowl/index.md b/exampleSite/content/post/ldvowl/index.md new file mode 100644 index 0000000..8df809d --- /dev/null +++ b/exampleSite/content/post/ldvowl/index.md @@ -0,0 +1,63 @@ ++++ +author = "raydak" +title = "LDVowl: Visualizing Linked Data Ontologies (Unmaintained)" +date = "2024-09-06" +description = "An overview of LDVOwl, a powerful tool for visualizing and exploring ontologies from Linked Data endpoints." +tags = [ + "semantic web", + "ontology", + "visualization", + "linked data", + "LDVOwl", +] +categories = [ + "tools", + "data visualization", +] +series = ["Semantic Web Tools"] ++++ + +In the world of Linked Data and the Semantic Web, understanding the structure and relationships within ontologies is crucial. LDVOwl (Linked Data Visual Notation for OWL Ontologies) emerges as a powerful tool to address this need, offering an intuitive and interactive way to visualize ontologies extracted from SPARQL endpoints. + +## What is LDVOwl? + +LDVOwl is an open-source tool that extracts and visualizes schema information from Linked Data endpoints[1]. It uses a slightly adapted version of the Visual Notation for OWL Ontologies (VOWL) to represent ontological elements graphically[4]. This approach makes it easier for users to grasp complex ontological structures at a glance. + +## Key Features + +1. **SPARQL Endpoint Integration**: LDVOwl can connect directly to SPARQL endpoints, allowing users to visualize live data sources[1]. + +2. **Interactive Visualization**: The tool provides an interactive graph-based visualization where users can explore classes, properties, and their relationships[4]. + +3. **Filtering and Customization**: Users can filter the visualization to focus on specific aspects of the ontology and customize the display to suit their needs[7]. + +4. **Performance Optimized**: LDVOwl is designed to be more time and memory efficient compared to some other ontology visualization tools[3]. + +5. **Web-Based Interface**: As a web application, LDVOwl is easily accessible without the need for local installation[5]. + +## How It Works + +LDVOwl uses a series of SPARQL queries to extract schema information from the endpoint. It then processes this information to create a visual representation using the VOWL notation. The visualization is rendered as an interactive graph where: + +- Classes are represented as circles +- Properties are shown as labeled edges connecting the circles +- Datatypes appear as yellow rectangles +- Individuals (instances) can be indicated by the size of class circles[4] + +## Use Cases + +LDVOwl is particularly useful for: + +1. **Ontology Exploration**: Quickly understand the structure of unfamiliar ontologies. +2. **Data Integration**: Identify common concepts and relationships across different datasets. +3. **Quality Assurance**: Visually inspect ontologies for inconsistencies or unexpected structures. +4. **Education**: Teach ontology concepts through interactive visualization. + +## Getting Started + +To use LDVOwl, simply visit the [online demo](http://vowl.visualdataweb.org/ldvowl/)[5]. Enter the URL of a SPARQL endpoint, and LDVOwl will generate a visualization of the ontology structure. You can then interact with the graph, zooming, panning, and clicking on elements to get more details. + +## Conclusion + +LDVOwl represents a significant step forward in making Linked Data ontologies more accessible and understandable. By providing an intuitive visual interface to complex data structures, it empowers both experts and newcomers to explore and analyze ontologies with ease. As the Semantic Web continues to grow, tools like LDVOwl will play an crucial role in helping us navigate and utilize the wealth of structured data available. + diff --git a/exampleSite/content/post/ontobench/index.md b/exampleSite/content/post/ontobench/index.md new file mode 100644 index 0000000..e3a9d26 --- /dev/null +++ b/exampleSite/content/post/ontobench/index.md @@ -0,0 +1,85 @@ ++++ +author = "raydak" +title = "OntoBench (Deprecated)" +date = "2024-09-06" +description = "Explore OntoBench, a cutting-edge tool for ontology visualization that enhances understanding and analysis of complex knowledge structures." +tags = [ + "ontology", + "visualization", + "knowledge representation", + "semantic web", + "data analysis", +] +categories = [ + "tools", + "data science", +] +series = ["Data Visualization Tools"] ++++ + +In the ever-evolving landscape of data science and knowledge representation, OntoBench emerges as a game-changing tool for ontology visualization. This powerful software is designed to transform complex ontological structures into intuitive, interactive visual representations, making it easier for researchers, data scientists, and domain experts to explore, analyze, and communicate intricate knowledge networks. + +## What is OntoBench? + +OntoBench is a state-of-the-art ontology visualization tool that offers a comprehensive suite of features for rendering ontologies in visually appealing and informative ways. It supports various ontology formats, including OWL, RDF, and SKOS, making it versatile for different domains and applications. + +## Key Features + +### Interactive Visualization + +OntoBench's standout feature is its interactive visualization capabilities. Users can zoom, pan, and click on nodes to explore relationships and hierarchies dynamically. This interactivity allows for a more intuitive understanding of complex ontological structures. + +### Customizable Layouts + +The tool offers multiple layout options, including force-directed, hierarchical, and circular layouts. Users can customize these layouts to best represent their specific ontology, enhancing clarity and insight. + +### Filtering and Search + +To manage large ontologies, OntoBench provides robust filtering and search functionalities. Users can focus on specific classes, properties, or relationships, making it easier to navigate and analyze extensive knowledge structures. + +### Collaboration and Sharing + +OntoBench facilitates collaboration by allowing users to share visualizations easily. It supports exporting visualizations in various formats, including SVG and PNG, enabling seamless integration into presentations and publications. + +## Applications of OntoBench + +OntoBench finds applications across various fields where ontologies play a crucial role: + +1. **Biomedical Research**: Visualizing complex biological pathways and relationships between genes, proteins, and diseases. +2. **Semantic Web**: Exploring and analyzing linked data structures and knowledge graphs. +3. **Natural Language Processing**: Representing linguistic ontologies and semantic networks. +4. **Business Intelligence**: Visualizing organizational knowledge and business process ontologies. + +## Benefits of Using OntoBench + +### Enhanced Understanding + +By transforming abstract ontological structures into visual representations, OntoBench significantly enhances understanding and interpretation of complex knowledge domains. + +### Improved Analysis + +The interactive nature of OntoBench's visualizations enables more effective analysis of ontological relationships, hierarchies, and patterns. + +### Efficient Communication + +Visual representations created with OntoBench make it easier to communicate complex ontological concepts to both technical and non-technical audiences. + +### Time-Saving + +OntoBench's intuitive interface and powerful features streamline the process of exploring and analyzing ontologies, saving valuable time for researchers and data scientists. + +## Getting Started with OntoBench + +To begin using OntoBench, follow these steps: + +1. Download the software from the official website. +2. Install OntoBench on your system (compatible with Windows, macOS, and Linux). +3. Import your ontology file (OWL, RDF, or SKOS format). +4. Explore the various visualization options and customize as needed. +5. Use the interactive features to analyze and gain insights from your ontology. + +## Conclusion + +OntoBench represents a significant advancement in ontology visualization technology. By providing powerful, user-friendly tools for exploring and analyzing complex knowledge structures, it empowers researchers, data scientists, and domain experts to gain deeper insights and communicate their findings more effectively. As the field of knowledge representation continues to grow, tools like OntoBench will play an increasingly crucial role in unlocking the potential of ontological data across various domains. + +Whether you're working in biomedical research, developing semantic web applications, or analyzing business intelligence, OntoBench offers a versatile and powerful solution for visualizing and understanding complex ontologies. By bridging the gap between abstract knowledge structures and intuitive visual representations, OntoBench is set to revolutionize how we interact with and derive value from ontological data. diff --git a/exampleSite/content/post/webvowl/index.md b/exampleSite/content/post/webvowl/index.md new file mode 100644 index 0000000..ddc85b4 --- /dev/null +++ b/exampleSite/content/post/webvowl/index.md @@ -0,0 +1,92 @@ ++++ +author = "raydak" +title = "WebVOWL: Visualizing Ontologies with Ease (Unmaintained)" +date = "2024-09-06" +description = "An in-depth look at WebVOWL, a powerful web-based tool for visualizing ontologies and making semantic web concepts more accessible." +tags = [ + "ontology", + "visualization", + "semantic web", + "WebVOWL", + "knowledge representation" +] +categories = [ + "tools", + "semantic web", +] +series = ["Semantic Web Tools"] +image = "https://www.researchgate.net/publication/349284378/figure/fig1/AS:990742415699970@1613222807643/Overview-of-SILKNOWs-ontology-Image-generated-with-the-WebVOWL-Web-based-Visualization.png" ++++ + +In the realm of semantic web technologies, visualizing complex ontologies can be a challenging task. Enter WebVOWL (Web-based Visualization of Ontologies), a powerful tool that transforms abstract ontological structures into intuitive, interactive visual representations. This article explores the features, benefits, and applications of WebVOWL in making ontologies more accessible and understandable. + + + +## What is WebVOWL? + +WebVOWL is an open-source, web-based application designed to visualize ontologies using the Visual Notation for OWL Ontologies (VOWL)[1]. It provides a user-friendly interface for exploring and understanding the structure and relationships within ontologies, making it an invaluable tool for both ontology developers and users. + +## Key Features of WebVOWL + +### Interactive Visualization + +WebVOWL offers a dynamic, force-directed graph layout that allows users to interact with ontology elements in real-time[2]. Users can: + +- Zoom in and out of the visualization +- Drag and reposition nodes +- Filter elements based on various criteria +- Highlight specific classes or properties + +### Standardized Visual Language + +The tool uses a standardized visual language based on VOWL, which provides consistent representations for different ontological elements: + +- **Classes**: Represented by blue circles +- **Datatypes**: Shown as yellow rectangles +- **Properties**: Depicted as labeled edges connecting nodes + +This standardization helps users quickly understand the structure of different ontologies. + +### Support for Multiple Ontology Formats + +WebVOWL supports various ontology formats, including: + +- OWL (Web Ontology Language) +- RDF (Resource Description Framework) +- JSON-LD (JSON for Linking Data) + +This flexibility allows users to work with a wide range of ontologies from different sources. + +## Benefits of Using WebVOWL + +1. **Improved Understanding**: By providing visual representations, WebVOWL makes it easier to grasp complex ontological structures and relationships[3]. + +2. **Accessibility**: Its web-based nature means users can access and use WebVOWL without installing additional software. + +3. **Collaboration**: The visual format facilitates better communication between ontology developers and domain experts. + +4. **Debugging and Refinement**: Visualizations can help identify inconsistencies or areas for improvement in ontology design. + +## Applications of WebVOWL + +WebVOWL finds applications in various domains where ontologies play a crucial role: + +- **Biomedical Research**: Visualizing complex biological ontologies +- **E-commerce**: Representing product categorizations and relationships +- **Knowledge Management**: Illustrating organizational knowledge structures +- **Semantic Web Development**: Aiding in the design and refinement of linked data vocabularies + +## Getting Started with WebVOWL + +To start using WebVOWL, follow these steps: + +1. Visit the [WebVOWL Demo](http://vowl.visualdataweb.org/webvowl.html) page. +2. Upload your ontology file or choose from the provided examples. +3. Explore the visualization using the interactive features. +4. Use the sidebar options to customize the display and filter elements. + +## Conclusion + +WebVOWL stands out as a powerful tool in the semantic web ecosystem, bridging the gap between complex ontological structures and human understanding. By providing intuitive visualizations, it empowers users to explore, develop, and refine ontologies more effectively. Whether you're a seasoned ontology engineer or a domain expert new to semantic technologies, WebVOWL offers a valuable perspective on the intricate world of knowledge representation. + +As the semantic web continues to evolve, tools like WebVOWL play a crucial role in making these technologies more accessible and practical for a wider audience. By visualizing the invisible structures that underpin our digital knowledge, WebVOWL is helping to shape a more interconnected and semantically rich web. diff --git a/exampleSite/content/tags/custom/_index.md b/exampleSite/content/tags/custom/_index.md new file mode 100644 index 0000000..8a1d891 --- /dev/null +++ b/exampleSite/content/tags/custom/_index.md @@ -0,0 +1,4 @@ +--- +title: CustomTag +slug: custom +--- diff --git a/exampleSite/content/tags/custom/_index.zh-cn.md b/exampleSite/content/tags/custom/_index.zh-cn.md new file mode 100644 index 0000000..1830a75 --- /dev/null +++ b/exampleSite/content/tags/custom/_index.zh-cn.md @@ -0,0 +1,4 @@ +--- +title: 随便一个标签 +slug: custom +--- diff --git a/exampleSite/layouts/.gitkeep b/exampleSite/layouts/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/exampleSite/static/favicon.ico b/exampleSite/static/favicon.ico new file mode 100644 index 0000000..71532e5 Binary files /dev/null and b/exampleSite/static/favicon.ico differ diff --git a/exampleSite/static/images/antoine-dautry-05A-kdOH6Hw-unsplash.jpg b/exampleSite/static/images/antoine-dautry-05A-kdOH6Hw-unsplash.jpg new file mode 100644 index 0000000..602358c Binary files /dev/null and b/exampleSite/static/images/antoine-dautry-05A-kdOH6Hw-unsplash.jpg differ diff --git a/exampleSite/static/logo.svg b/exampleSite/static/logo.svg new file mode 100644 index 0000000..db7fd26 --- /dev/null +++ b/exampleSite/static/logo.svg @@ -0,0 +1,118 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..90e949e --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/tomowang/hugo-theme-tailwind + +go 1.21.4 diff --git a/i18n/de.toml b/i18n/de.toml new file mode 100644 index 0000000..e36138a --- /dev/null +++ b/i18n/de.toml @@ -0,0 +1,33 @@ +table_of_contents = "Inhaltsverzeichnis" +open_main_menu = "Hauptmenü öffnen" +open_lang_switcher = "Sprache wechseln öffnen" +[reading_time] + one = "Lesezeit eine Minute" + other = "Lesezeit {{ .Count }} Minuten" + +[search] +title = "Suche" +empty_result = "Kein Ergebnis gefunden." +placeholder = "Suche..." + +[header] +darkmode_toggle = "Dark Mode umschalten" + +[404] +go_back_home = "Zurück zur Startseite" +sorry = "Leider konnten wir die von Ihnen gesuchte Seite nicht finden." +page_not_found = "Seite nicht gefunden" + +[footer] +powered_by = "Powered by {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "Neuere Beiträge" +older_posts = "Ältere Beiträge" + +[taxonomies] +categories = "Kategorien" +tags = "Tags" +series = "Serie" diff --git a/i18n/en.toml b/i18n/en.toml new file mode 100644 index 0000000..41fc14f --- /dev/null +++ b/i18n/en.toml @@ -0,0 +1,33 @@ +table_of_contents = "Table of Contents" +open_main_menu = "Open main menu" +open_lang_switcher = "Open language switcher" +[reading_time] + one = "One minute to read" + other = "{{ .Count }} minutes to read" + +[search] +title = "Search" +empty_result = "No result found." +placeholder = "Search..." + +[header] +darkmode_toggle = "Toggle dark mode" + +[404] +go_back_home = "Go back home" +sorry = "Sorry, we couldn't find the page you're looking for." +page_not_found = "Page not found" + +[footer] +powered_by = "Powered by {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "Newer posts" +older_posts = "Older posts" + +[taxonomies] +categories = "Categories" +tags = "Tags" +series = "Series" diff --git a/i18n/es.toml b/i18n/es.toml new file mode 100644 index 0000000..0b596c5 --- /dev/null +++ b/i18n/es.toml @@ -0,0 +1,33 @@ +table_of_contents = "Tabla de contenido" +open_main_menu = "Abrir menú principal" +open_lang_switcher = "Abrir cambiador de idioma" +[reading_time] + one = "Un minuto de lectura" + other = "{{ .Count }} minutos de lectura" + +[search] +title = "Buscar" +empty_result = "No se encontró ningún resultado." +placeholder = "Buscar..." + +[header] +darkmode_toggle = "Cambiar a modo oscuro" + +[404] +go_back_home = "Volver al inicio" +sorry = "Lo siento, no pudimos encontrar la página que estás buscando." +page_not_found = "Página no encontrada" + +[footer] +powered_by = "Con tecnología de {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear }} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear }} {{ .Copyright }}" + +[paginator] +newer_posts = "Entradas más recientes" +older_posts = "Entradas anteriores" + +[taxonomies] +categories = "Categorías" +tags = "Etiquetas" +series = "Series" diff --git a/i18n/fr.toml b/i18n/fr.toml new file mode 100644 index 0000000..71216c8 --- /dev/null +++ b/i18n/fr.toml @@ -0,0 +1,33 @@ +table_of_contents = "Table des matières" +open_main_menu = "Ouvrir le menu principal" +open_lang_switcher = "Ouvrir le sélecteur de langue" +[reading_time] + one = "Une minute de lecture" + other = "{{ .Count }} minutes de lecture" + +[search] +title = "Rechercher" +empty_result = "Aucun résultat trouvé." +placeholder = "Rechercher..." + +[header] +darkmode_toggle = "Activer le mode sombre" + +[404] +go_back_home = "Revenir à l'accueil" +sorry = "Désolé, nous n'avons pas pu trouver la page que vous recherchez." +page_not_found = "Page non trouvée" + +[footer] +powered_by = "Propulsé par {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear }} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear }} {{ .Copyright }}" + +[paginator] +newer_posts = "Articles plus récents" +older_posts = "Articles plus anciens" + +[taxonomies] +categories = "Catégories" +tags = "Mots-clés" +series = "Séries" diff --git a/i18n/hi.toml b/i18n/hi.toml new file mode 100644 index 0000000..c72da88 --- /dev/null +++ b/i18n/hi.toml @@ -0,0 +1,33 @@ +table_of_contents = "विषय-सूची" +open_main_menu = "मुख्य मेनू खोलें" +open_lang_switcher = "भाषा स्विचर खोलें" +[reading_time] + one = "पढ़ने में एक मिनट का समय लगेगा।" + other = "पढ़ने में {{ .Count }} मिनट का समय लगेगा।" + +[search] +title = "खोजें" +empty_result = "कोई परिणाम नहीं मिला।" +placeholder = "खोजें..." + +[header] +darkmode_toggle = "डार्क मोड टॉगल करें" + +[404] +go_back_home = "होम पर वापस जाएं" +sorry = "क्षमा करें, हम आपके द्वारा खोजे गए पेज को नहीं ढूँढ पाए।" +page_not_found = "पेज नहीं मिला" + +[footer] +powered_by = "{{ .Generator }} {{ .Heart }} {{ .Theme }} द्वारा संचालित" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "नई पोस्ट्स" +older_posts = "पुरानी पोस्ट्स" + +[taxonomies] +categories = "श्रेणियाँ" +tags = "टैग्स" +series = "श्रृंखला" diff --git a/i18n/jp.toml b/i18n/jp.toml new file mode 100644 index 0000000..61d8ca2 --- /dev/null +++ b/i18n/jp.toml @@ -0,0 +1,33 @@ +table_of_contents = "目次" +open_main_menu = "メインメニューを開く" +open_lang_switcher = "言語スイッチャーを開く" +[reading_time] + one = "1分読む" + other = "{{ .Count }}分読む" + +[search] +title = "検索" +empty_result = "結果なし" +placeholder = "検索..." + +[header] +darkmode_toggle = "ダークモードを切り替える" + +[404] +go_back_home = "ホームに戻る" +sorry = "申し訳ありませんが、ご希望のページが見つかりませんでした。" +page_not_found = "ページが見つかりません" + +[footer] +powered_by = "Powered by {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear }} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear }} {{ .Copyright }}" + +[paginator] +newer_posts = "新しい投稿" +older_posts = "古い投稿" + +[taxonomies] +categories = "カテゴリー" +tags = "タグ" +series = "シリーズ" diff --git a/i18n/nl.toml b/i18n/nl.toml new file mode 100644 index 0000000..cda6d79 --- /dev/null +++ b/i18n/nl.toml @@ -0,0 +1,33 @@ +table_of_contents = "Inhoudsopgave" +open_main_menu = "Hoofdmenu openen" +open_lang_switcher = "Taalwisseler openen" +[reading_time] + one = "Eén minuut lezen" + other = "{{ .Count }} minuten om te lezen" + +[search] +title = "Zoek" +empty_result = "Geen resultaat gevonden." +placeholder = "Zoek..." + +[header] +darkmode_toggle = "Schakel de donkere modus in" + +[404] +go_back_home = "Ga terug naar de hoofdpaginasta" +sorry = "Sorry, De pagina kan helaas niet worden gevonden" +page_not_found = "Pagina niet gevonden" + +[footer] +powered_by = "Aangedreven door {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "Nieuwer post" +older_posts = "Oudere posts" + +[taxonomies] +categories = "Categorieën" +tags = "Labels" +series = "Serie" diff --git a/i18n/pl.toml b/i18n/pl.toml new file mode 100644 index 0000000..146d7ea --- /dev/null +++ b/i18n/pl.toml @@ -0,0 +1,34 @@ +table_of_contents = "Spis treści" +open_main_menu = "Otwórz menu główne" +open_lang_switcher = "Zmień język" +[reading_time] + one = "Jedna minuta czytania" + many = "{{ .Count }} minut czytania" + other = "{{ .Count }} minuty czytania" + +[search] +title = "Szukaj" +empty_result = "Nie znaleziono wyników." +placeholder = "Szukaj..." + +[header] +darkmode_toggle = "Przełącz ciemny motyw" + +[404] +go_back_home = "Powrót do strony głównej" +sorry = "Przepraszamy, nie znaleźliśmy strony, której szukasz." +page_not_found = "Strona nie odnaleziona" + +[footer] +powered_by = "Powered by {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "Nowsze posty" +older_posts = "Starsze posty" + +[taxonomies] +categories = "Kategorie" +tags = "Tagi" +series = "Serie" diff --git a/i18n/ru.toml b/i18n/ru.toml new file mode 100644 index 0000000..b546aa0 --- /dev/null +++ b/i18n/ru.toml @@ -0,0 +1,33 @@ +table_of_contents = "Содержание" +open_main_menu = "Открыть главное меню" +open_lang_switcher = "Открыть переключатель языка" +[reading_time] + one = "Одну минуту для чтения" + other = "{{ .Count }} минут для чтения" + +[search] +title = "Поиск" +empty_result = "Ничего не найдено." +placeholder = "Поиск..." + +[header] +darkmode_toggle = "Включить темный режим" + +[404] +go_back_home = "Вернуться на главную" +sorry = "Извините, мы не смогли найти страницу, которую вы ищете." +page_not_found = "Страница не найдена" + +[footer] +powered_by = "Работает на {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear }} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear }} {{ .Copyright }}" + +[paginator] +newer_posts = "Более новые сообщения" +older_posts = "Более старые сообщения" + +[taxonomies] +categories = "Категории" +tags = "Теги" +series = "Серии" diff --git a/i18n/zh-CN.toml b/i18n/zh-CN.toml new file mode 100644 index 0000000..13517d2 --- /dev/null +++ b/i18n/zh-CN.toml @@ -0,0 +1,33 @@ +table_of_contents = "目录" +open_main_menu = "打开菜单" +open_lang_switcher = "打开语言切换" +[reading_time] + one = "阅读时长{{ .Count }}分钟" + other = "阅读时长{{ .Count }}分钟" + +[search] +title = "搜索" +empty_result = "无结果。" +placeholder = "搜索..." + +[header] +darkmode_toggle = "切换夜间模式" + +[404] +go_back_home = "回到首页" +sorry = "对不起,暂未找到您请求的页面" +page_not_found = "页面未找到" + +[footer] +powered_by = "Powered by {{ .Generator }} {{ .Heart }} {{ .Theme }}" +copyright_with_since ="{{ .CopyrightSign }} {{ .SinceYear }} - {{ .CurrentYear}} {{ .Copyright }}" +copyright_wo_since ="{{ .CopyrightSign }} {{ .CurrentYear}} {{ .Copyright }}" + +[paginator] +newer_posts = "新文章" +older_posts = "旧文章" + +[taxonomies] +categories = "分类" +tags = "标签" +series = "系列" diff --git a/images/hugo-theme-layout-structure.png b/images/hugo-theme-layout-structure.png new file mode 100644 index 0000000..5acb43e Binary files /dev/null and b/images/hugo-theme-layout-structure.png differ diff --git a/images/prototype.png b/images/prototype.png new file mode 100644 index 0000000..60d3df7 Binary files /dev/null and b/images/prototype.png differ diff --git a/images/screenshot.png b/images/screenshot.png new file mode 100644 index 0000000..7a2a8c9 Binary files /dev/null and b/images/screenshot.png differ diff --git a/images/tn.png b/images/tn.png new file mode 100644 index 0000000..a9e7e0a Binary files /dev/null and b/images/tn.png differ diff --git a/index.html b/index.html deleted file mode 100644 index 7529b20..0000000 --- a/index.html +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - xVOWL - - - - - - -
- - -
-
-
-
-
-

- xVOWL - The new generation -

-

- We have the idea of improving the existing - solutions in regards to visualizations, - exploration and working with OWL. We have - many ideas which include providing state of - the art visualization, full-features - editors, sharable workplaces, AI infused - workflows and much more. -

-

- Before we start tackling this we want to see - if we have enough interest and even maybe - some possible investors or funders (like - universities or companies) who would like to - support and provide their influence into the - products. -

-
-
- - - -
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
-
-
-
-
-
- Feature 01 -
-

- Visualization -

-

- Make existing visualizations even - better. -

-
-
-
-
-
- Feature 02 -
-

- Feature-rich editors -

-

- Provide an editor with which you can - easily edit and modify your - ontologies as you require. -

-
-
-
-
-
- Feature 03 -
-

- Transformers -

-

- Easily transform your ontology - document into different - representations. -

-
-
-
-
-
- Feature 04 -
-

- AI features -

-

- Include support from LLMs and AI to - support with ontology generation and - creation. -

-
-
-
-
-
- Feature 05 -
-

- Enterprise scopes -

-

- The idea of buildings organizations - and teams and provide security and - sharability between is common - required feature of enterprise. Also - self-hosting and other things could - be provided. -

-
-
-
-
-
- Feature 06 -
-

- Learn from existing solutions -

-

- There are already existing solutions - which should bne credited and - learned from. To name some WebVOWL, - ProtegeVOWL, OWL2VOWL, Ontobench, - LD-VOWL. -

-
-
-
-
-
-
- -
-
-
-

- Want to notified on release? -

-
- Subscribe -
-
-
-

- Interested to be investor or funder? -

- -
-
-
-
- -
-
- -
-
-
- - - - diff --git a/layouts/404.html b/layouts/404.html new file mode 100644 index 0000000..520839f --- /dev/null +++ b/layouts/404.html @@ -0,0 +1,14 @@ +{{ define "main" }} +
+
+

404

+

{{ T "404.page_not_found" }}

+

{{ T "404.sorry" }}

+ +
+
+{{ end }} diff --git a/layouts/_default/_markup/render-image.html b/layouts/_default/_markup/render-image.html new file mode 100644 index 0000000..a4db6a3 --- /dev/null +++ b/layouts/_default/_markup/render-image.html @@ -0,0 +1,49 @@ +{{/* code from https://www.brycewray.com/posts/2023/05/better-code-image-processing-hugo-render-hook-edition/ */}} +{{- $alt := .Text -}} +{{- $caption := .Title -}} + +{{- $respSizes := slice "320" "640" "960" "1280" "1600" "1920" -}} +{{- $hint := "photo" -}} +{{- $filter := "box" -}} + +{{- $dest := ( .Destination | safeURL ) -}} + +{{- $dest = path.Join (path.Dir $dest) (path.Base $dest) -}} + +
+ +{{- if and (.Page.Resources.Get $dest) (ne (.Page.Resources.Get $dest).MediaType.SubType "svg") -}} +{{- $src := .Page.Resources.Get $dest -}} +{{- $dataSzes := "(min-width: 1024px) 100vw, 50vw" -}} +{{- $actualImg := $src.Resize (print "640x jpg " $filter) -}} + + + + {{ $alt }} + + {{- with $caption -}}

{{ $caption | $.Page.RenderString }}

{{- end }} + +{{- else -}} +
+ {{ .Text }} + {{- with $caption -}}
{{ $caption | $.Page.RenderString }}
{{- end }} +
+{{- end -}} +
diff --git a/layouts/_default/_markup/render-link.html b/layouts/_default/_markup/render-link.html new file mode 100644 index 0000000..bd906b9 --- /dev/null +++ b/layouts/_default/_markup/render-link.html @@ -0,0 +1 @@ +{{ .Text | safeHTML }} diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..d164705 --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,38 @@ + + + + {{ block "title" . }} + {{- $title := "" -}} + {{- $siteTitle := $.Site.Title -}} + {{- $subtitle := $.Site.Params.Subtitle -}} + {{- $mainTitle := $siteTitle -}} + {{- if $subtitle -}} + {{- $mainTitle = printf "%s - %s" $siteTitle $subtitle -}} + {{- end -}} + + {{- if .IsHome -}} + {{- $title = $mainTitle -}} + {{- else -}} + {{- $title = printf "%s :: %s" .Title $mainTitle -}} + {{- end -}} + {{- $title -}} + {{ end }} + {{ partial "head.html" . }} + {{ block "head" . }}{{ end }} + + + {{- if hugo.IsDevelopment }} + {{ partial "tailwind-size-indicator.html" }} + {{ end -}} +
+ {{ partial "header.html" . }} +
+
+ {{ block "main" . }}{{ end }} +
+
+ {{ partial "footer.html" . }} +
+ {{ partial "extended_footer.html" . }} + + diff --git a/layouts/_default/home.html b/layouts/_default/home.html new file mode 100644 index 0000000..dbc4f15 --- /dev/null +++ b/layouts/_default/home.html @@ -0,0 +1,46 @@ +{{ define "head" }} + {{ partial "jsonld.html" . }} +{{ end }} + +{{ define "main" }} +
+
+ +
+

+ {{ .Title | .RenderString }} +

+ + {{ with .Description }} +

+ {{ . | $.Page.RenderString }} +

+ {{ end }} + {{ partial "block/taxonomies.html" .}} + + {{ partial "block/time.html" . }} + {{ partial "block/author.html" . }} + + {{ if or .Params.Toc $.Site.Params.Toc }} + {{ if ne .Params.Toc false }} +
+

{{ T "table_of_contents" }}

+ +
+ {{ end }} + {{ end }} + +
+ {{ .Content | safeHTML }} +
+ + {{ partial "comments.html" . }} + +
+
+
+{{ end }} diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..7e0e10d --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,47 @@ +{{ define "main" }} + + {{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }} + {{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }} + + {{ $PageContext := . }} + {{/* Once either .Paginator or .Paginate is called while generating a page, + its result is cached, and any subsequent similar call will reuse the cached result. + So we define $pages instead of $paginator (using .Paginate) to avoid confusion. */}} + {{ $pages := $PageContext.RegularPages }} + {{ if .IsHome }} + {{ $PageContext = .Site }} + {{ $pages = where $PageContext.RegularPages "Type" $contentTypeName }} + {{ end }} + +
+
+
+ {{ range (.Paginate $pages).Pages }} + + {{ end }} +
+ +
+ + {{ partial "pagination.html" . }} +
+{{ end }} diff --git a/layouts/_default/manifest.json b/layouts/_default/manifest.json new file mode 100644 index 0000000..7854cb3 --- /dev/null +++ b/layouts/_default/manifest.json @@ -0,0 +1,26 @@ +{{- $baseURL := absURL site.BaseURL }} +{{- $iconPath := site.Params.pwa.icon }} +{{- $icon := resources.Get $iconPath }} +{{- $icons := slice }} +{{- with $icon }} + {{- range site.Params.pwa.icon_sizes }} + {{- $sizes := printf "%dx%d" . . }} + {{- $icons = $icons | append (dict + "src" ($icon.Resize $sizes).Permalink + "sizes" $sizes + "type" $icon.MediaType.Type + ) + }} + {{- end }} +{{- else }} + {{- warnf "[pwa] the icon image doesn't exist: assets/%s." $iconPath }} +{{- end }} +{{- $default := dict + "name" site.Title + "display" "standalone" + "scope" $baseURL + "start_url" $baseURL + "icons" $icons +}} +{{- $params := site.Params.pwa.manifest }} +{{- merge $default $params | jsonify -}} diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..dbc4f15 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,46 @@ +{{ define "head" }} + {{ partial "jsonld.html" . }} +{{ end }} + +{{ define "main" }} +
+
+ +
+

+ {{ .Title | .RenderString }} +

+ + {{ with .Description }} +

+ {{ . | $.Page.RenderString }} +

+ {{ end }} + {{ partial "block/taxonomies.html" .}} + + {{ partial "block/time.html" . }} + {{ partial "block/author.html" . }} + + {{ if or .Params.Toc $.Site.Params.Toc }} + {{ if ne .Params.Toc false }} +
+

{{ T "table_of_contents" }}

+ +
+ {{ end }} + {{ end }} + +
+ {{ .Content | safeHTML }} +
+ + {{ partial "comments.html" . }} + +
+
+
+{{ end }} diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html new file mode 100644 index 0000000..1fe12b7 --- /dev/null +++ b/layouts/_default/terms.html @@ -0,0 +1,23 @@ +{{ define "main" }} + {{ $type := .Type }} +
+

+ {{ T (printf "taxonomies.%s" $type) | safeHTML }} +

+
    + {{ range $key, $value := .Data.Terms.ByCount }} + {{ $term := .Term }} + {{ $count := .Count }} + {{ with $.Site.GetPage (printf "/%s/%s" $type $term) }} +
  • + + {{ $term }} + {{ $count }} + +
  • + {{ end }} + {{ end }} +
+
+{{ end }} diff --git a/layouts/dindex.html b/layouts/dindex.html new file mode 100644 index 0000000..c63f0d6 --- /dev/null +++ b/layouts/dindex.html @@ -0,0 +1,10 @@ +{{ define "main" }} {{ $isntDefault := not (or (eq (trim +$.Site.Params.contentTypeName " ") "posts") (eq (trim +$.Site.Params.contentTypeName " ") "")) }} {{ $contentTypeName := cond +$isntDefault (string $.Site.Params.contentTypeName) "posts" }} {{ $PageContext +:= . }} {{/* Once either .Paginator or .Paginate is called while generating a +page, its result is cached, and any subsequent similar call will reuse the +cached result. So we define $pages instead of $paginator (using .Paginate) to +avoid confusion. */}} {{ $pages := $PageContext.RegularPages }} {{ if .IsHome }} +{{ $PageContext = .Site }} {{ $pages = where $PageContext.RegularPages "Type" +$contentTypeName }} {{ end }} {{ end }} diff --git a/layouts/partials/asciinema.html b/layouts/partials/asciinema.html new file mode 100644 index 0000000..ab22ca7 --- /dev/null +++ b/layouts/partials/asciinema.html @@ -0,0 +1,15 @@ + + + diff --git a/layouts/partials/block/author.html b/layouts/partials/block/author.html new file mode 100644 index 0000000..ad8b8d4 --- /dev/null +++ b/layouts/partials/block/author.html @@ -0,0 +1,21 @@ +{{- if .Site.Params.showAuthor -}} +{{- $author := "" -}} + +{{- if .Params.author -}} + {{- $author = .Params.author -}} +{{- else if and .Site.Params.Author .Site.Params.Author.name -}} + {{- $author = .Site.Params.Author.name -}} +{{- end -}} + +{{- if $author -}} +
+
+ + {{ partial "icon.html" "user" }} + + {{ $author }} +
+
+{{- end -}} + +{{- end -}} diff --git a/layouts/partials/block/desc.html b/layouts/partials/block/desc.html new file mode 100644 index 0000000..7e91231 --- /dev/null +++ b/layouts/partials/block/desc.html @@ -0,0 +1,11 @@ +{{ with .Description }} +
+ {{ . | $.Page.RenderString }} +
+{{ else }} + {{ with .Summary }} +
+ {{ . | $.Page.RenderString }} +
+ {{ end }} +{{ end }} diff --git a/layouts/partials/block/image.html b/layouts/partials/block/image.html new file mode 100644 index 0000000..216964a --- /dev/null +++ b/layouts/partials/block/image.html @@ -0,0 +1,51 @@ +{{- $alt := .Title -}} + +{{- $respSizes := slice "960" "1600" -}} +{{- $hint := "photo" -}} +{{- $filter := "box" -}} +{{- if .Params.image -}} + {{- $dest := .Params.image | safeURL -}} + {{- $dest = path.Join (path.Dir $dest) (path.Base $dest) -}} + + {{- with .Resources.Get $dest -}} + {{- if eq .MediaType.SubType "svg" -}} +
+ {{ $alt }} +
+ {{- else -}} + {{- $src := . -}} + {{- $dataSzes := "(min-width: 1024px) 100vw, 50vw" -}} + {{- $actualImg := $src.Resize (print "640x jpg " $filter) -}} + + + + {{ $alt }} + + {{- end -}} + + {{- else -}} +
+ {{ $alt }} +
+ {{- end -}} +{{- end -}} diff --git a/layouts/partials/block/sidebar_section.html b/layouts/partials/block/sidebar_section.html new file mode 100644 index 0000000..1315a59 --- /dev/null +++ b/layouts/partials/block/sidebar_section.html @@ -0,0 +1,28 @@ +{{- $taxonomy := .Taxonomy -}} +{{- $context := .Context -}} +{{- $limit := .Limit -}} +{{ $icon := (index site.Params.taxonomies.icons $taxonomy) | default "tags" }} + +
+ + + +
diff --git a/layouts/partials/block/taxonomies.html b/layouts/partials/block/taxonomies.html new file mode 100644 index 0000000..1adc405 --- /dev/null +++ b/layouts/partials/block/taxonomies.html @@ -0,0 +1,27 @@ +{{ if (or .Params.categories .Params.tags) }} + +{{ end }} diff --git a/layouts/partials/block/time.html b/layouts/partials/block/time.html new file mode 100644 index 0000000..6180372 --- /dev/null +++ b/layouts/partials/block/time.html @@ -0,0 +1,24 @@ +
+{{- if .Date }} + {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }} + {{ $dateHuman := .Date.Format ($.Site.Params.DateFormatList | default "2006-01-02") }} +
+ + {{ partial "icon.html" "calendar" }} + + +
+{{ end -}} +{{- if $.Site.Params.showReadingTime }} +
+ + {{ partial "icon.html" "hourglass-high" }} + + + {{ T "reading_time" .ReadingTime }} + +
+{{ end -}} +
diff --git a/layouts/partials/comments.html b/layouts/partials/comments.html new file mode 100644 index 0000000..44226d6 --- /dev/null +++ b/layouts/partials/comments.html @@ -0,0 +1,66 @@ + + +{{ if .Site.Config.Services.Disqus.Shortname }} + {{ template "_internal/disqus.html" . }} +{{ else if .Site.Params.giscus.enabled }} + {{ with .Site.Params.giscus }} + + {{ end}} +{{ end }} diff --git a/layouts/partials/css.html b/layouts/partials/css.html new file mode 100644 index 0000000..f8c2caf --- /dev/null +++ b/layouts/partials/css.html @@ -0,0 +1,7 @@ +{{- $styles := resources.Get "css/index.css" -}} +{{- if hugo.IsDevelopment }} + {{- $styles = $styles | fingerprint -}} +{{ else }} + {{- $styles = $styles | minify | fingerprint -}} +{{ end -}} + diff --git a/layouts/partials/custom_footer.html b/layouts/partials/custom_footer.html new file mode 100644 index 0000000..356d5c2 --- /dev/null +++ b/layouts/partials/custom_footer.html @@ -0,0 +1,4 @@ +{{/* Do not directly modify this file! */}} +{{/* Instead, create a `layouts/partials/custom_footer.html` file in your site and add your code to it. */}} + +{{/* This partial is included in `themes/tailwind/layouts/partials/extended_footer.html`. */}} diff --git a/layouts/partials/custom_head.html b/layouts/partials/custom_head.html new file mode 100644 index 0000000..e5a6d84 --- /dev/null +++ b/layouts/partials/custom_head.html @@ -0,0 +1,4 @@ +{{/* Do not directly modify this file! */}} +{{/* Instead, create a `layouts/partials/custom_head.html` file in your site and add your code to it. */}} + +{{/* This partial is included in `themes/tailwind/layouts/partials/head.html`. */}} diff --git a/layouts/partials/extended_footer.html b/layouts/partials/extended_footer.html new file mode 100644 index 0000000..721a4da --- /dev/null +++ b/layouts/partials/extended_footer.html @@ -0,0 +1,28 @@ +{{- $built := resources.Get "js/main.js" | js.Build "main.js" -}} +{{- if not hugo.IsDevelopment }} + {{- $built = $built | minify | fingerprint -}} +{{ end -}} + + +{{- if (findRE "